/* ==========================================================================
   Shared Global Navigation Layout Elements (Restores Nav Design)
   ========================================================================== */
.navbar {
    background: var(--matte-black);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 40px;
    height: 120px;
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid rgba(156, 175, 136, 0.2); 
}

.nav-links {
    display: flex;
    gap: 30px; 
    list-style: none;
}

.nav-links.left {
    justify-content: flex-end;
    margin-right: 40px;
}

.nav-links.right {
    justify-content: flex-start;
    margin-left: 40px;
}

.nav-links a {
    color: var(--primary-green);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.nav-links a:hover {
    color: var(--pure-white);
}

.logo-container {
    width: 180px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ==========================================================================
   Shop Page Top Utilities & Interactive Filter Row
   ========================================================================== */
.shop-utility-container {
    background-color: var(--matte-black);
    padding: 40px 8% 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 20px;
}

.shop-filter-group {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.shop-select-filter {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--body-text);
    padding: 10px 18px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    outline: none;
    cursor: pointer;
    border-radius: 2px;
    transition: border-color 0.3s ease;
}

.shop-select-filter:focus, 
.shop-select-filter:hover {
    border-color: var(--primary-green);
}

select.shop-select-filter option {
    background-color: var(--matte-black);
    color: var(--pure-white);
}

.product-count-label {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* ==========================================================================
   RESTORED: E-Commerce Product Grid Framework Setup
   ========================================================================== */
.shop-grid-section {
    background-color: var(--matte-black);
    padding: 40px 8% 100px 8%;
}

.products-catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Cards side-by-side on computers */
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-showcase-card {
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-showcase-card:hover {
    transform: translateY(-6px);
    border-color: rgba(156, 175, 136, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.product-card-thumbnail {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
    background-color: #151515;
}

.product-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-showcase-card:hover .product-card-thumbnail img {
    transform: scale(1.05);
}

.product-card-details {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
    align-items: center;
}

.product-card-category {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.product-card-title {
    font-family: var(--font-heading);
    color: var(--pure-white);
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 400;
}

.product-card-price {
    font-family: 'Apple Chancery', 'Lucida Calligraphy', cursive;
    color: var(--primary-green);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.product-card-price-original {
    font-family: 'Apple Chancery', 'Lucida Calligraphy', cursive;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.95rem;
    text-decoration: line-through;
    margin-bottom: 4px;
}

/* Honest placeholder for products with no real image on file yet —
   matches the "pending" treatment used on Gallery/Posts. */
.product-card-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.25);
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.products-empty-message {
    grid-column: 1 / -1;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 60px 20px;
}

/* ==========================================================================
   Mobile Responsive Framework Overrides
   ========================================================================== */
@media (max-width: 1100px) {
    .products-catalog-grid {
        grid-template-columns: repeat(3, 1fr); 
    }
}

@media (max-width: 900px) {
    .navbar {
        grid-template-columns: 1fr;
        height: auto;
        padding: 30px 20px;
        justify-items: center;
    }
    .nav-links.left, .nav-links.right {
        margin: 15px 0 0 0;
        justify-content: center;
        gap: 20px;
    }
    .logo-container {
        height: 70px;
        width: 140px;
        order: -1;
    }
    .shop-utility-container {
        margin-top: 100px;                      /* ADD THIS SINGLE LINE RIGHT HERE */
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 20px 10px 20px;
    }
    .shop-filter-group {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .shop-grid-section {
        padding: 20px 20px 60px 20px;
    }
    .products-catalog-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Cards wide on phones */
        gap: 20px;
    }
    .product-card-thumbnail {
        height: 240px;
    }
}

@media (max-width: 480px) {
    .products-catalog-grid {
        grid-template-columns: 1fr; /* Stacks 1 card wide on tiny screens */
    }
}

/* ==========================================================================
   Product Detail Single Page Elements
   ========================================================================== */
.product-detail-container {
    background-color: var(--matte-black);
    padding: 40px 8% 100px 8%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Breadcrumb Navigation Map Trail */
.breadcrumb-trail {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.breadcrumb-trail a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-trail a:hover {
    color: var(--primary-green);
}

.prev-next-links a {
    color: var(--body-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.prev-next-links a:hover {
    color: var(--primary-green);
}

/* Master Columns Layout Split Track */
.detail-columns-split {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Image left side, info column right side */
    gap: 60px;
    align-items: flex-start;
}

/* Bright focus image container card framing */
.detail-large-media-box {
    background-color: var(--pure-white); /* Pure white backdrop highlights white product containers sharply */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.detail-large-media-box img {
    max-width: 100%;
    max-height: 480px;
    object-fit: contain;
}

/* Overrides the light-on-dark .product-card-no-image treatment for this
   box's white backdrop, so the placeholder text stays legible here. */
.detail-large-media-box .product-card-no-image {
    color: rgba(0, 0, 0, 0.3);
}

.prev-next-links a.link-disabled {
    color: rgba(255, 255, 255, 0.15);
    pointer-events: none;
    cursor: default;
}

/* Honest fallback shown instead of the product columns when a product-detail
   link's id doesn't match anything real (removed product, stale/bad link). */
.detail-not-found {
    text-align: center;
    padding: 80px 30px;
}

.detail-not-found h2 {
    font-family: var(--font-heading);
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 16px;
}

.detail-not-found-text {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

/* Content description textual information box assembly rules */
.detail-info-sheet {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.detail-product-title {
    font-family: var(--font-heading);
    color: var(--pure-white);
    font-size: 2.8rem;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 15px;
}

.detail-product-price {
    font-family: 'Apple Chancery', 'Lucida Calligraphy', cursive;
    color: var(--primary-green);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 25px;
}

/* Category Tag Label Above Product Title */
.detail-category-label {
    font-family: var(--font-body);
    color: var(--primary-green);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

/* Long-form Product Description Paragraph */
.detail-product-description {
    font-family: var(--font-body);
    color: var(--body-text);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* Quantity Row Frame Alignment Matrix */
.detail-quantity-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    font-family: var(--font-body);
}

.detail-quantity-label {
    color: var(--pure-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.detail-quantity-select {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--pure-white);
    padding: 8px 16px;
    border-radius: 4px;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.detail-quantity-select:hover,
.detail-quantity-select:focus {
    border-color: var(--primary-green);
}

.detail-quantity-select option {
    background-color: var(--matte-black);
    color: var(--pure-white);
}

/* Mechanical plus/minus row control counter cluster */
.quantity-counter-cluster {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

.btn-counter-math {
    background: transparent;
    border: none;
    color: var(--pure-white);
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-family: sans-serif;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-counter-math:hover {
    background-color: rgba(156, 175, 136, 0.1);
    color: var(--primary-green);
}

.counter-numerical-input {
    width: 50px;
    height: 40px;
    background: transparent;
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--pure-white);
    text-align: center;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    outline: none;
    -moz-appearance: textfield; /* Strips browser spin styling dials natively */
}

.counter-numerical-input::-webkit-outer-spin-button,
.counter-numerical-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Add to Bag / Back to Shop Button Row */
.detail-action-buttons-row {
    display: flex;
    gap: 20px;
    width: 100%;
    flex-wrap: wrap;
}

.detail-action-buttons-row .btn-green {
    margin-top: 0;
    flex-grow: 1;
    text-align: center;
    padding: 14px 34px;
}

.btn-outline-light {
    display: inline-block;
    padding: 14px 34px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    color: var(--body-text);
    font-family: var(--font-body);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-decoration: none;
    text-align: center;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

/* Checkout link is disabled (not just inert-looking) while the cart is empty */
.btn-disabled-link {
    opacity: 0.4;
    pointer-events: none;
    cursor: not-allowed;
}

/* Social Network Quick Share Link Layout anchor rules */
.product-share-links-row {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    width: 100%;
    max-width: 400px;
}

.share-anchor-svg {
    transition: transform 0.2s ease, filter 0.2s ease;
    display: inline-block;
}

.share-anchor-svg svg {
    width: 18px;
    height: 18px;
    fill: rgba(255, 255, 255, 0.4); /* Subtly dim vector icons match your image layout */
    transition: fill 0.3s ease;
}

.share-anchor-svg:hover {
    transform: scale(1.1);
}

/* Color codes vector layers on explicit hover maps */
.share-anchor-svg.fb:hover svg { fill: #1877f2; }
.share-anchor-svg.pin:hover svg { fill: #bd081c; }
.share-anchor-svg.wa:hover svg { fill: #25d366; }
.share-anchor-svg.x:hover svg { fill: var(--pure-white); }

/* ==========================================================================
   Mobile Responsive Adjustments
   ========================================================================== */
@media (max-width: 900px) {
    .product-detail-container {
        padding: 30px 20px;
    }
    .detail-columns-split {
        grid-template-columns: 1fr; /* Stacks image top, descriptions bottom cleanly */
        gap: 40px;
    }
    .detail-large-media-box {
        min-height: 380px;
        padding: 20px;
    }
    .detail-large-media-box img {
        max-height: 320px;
    }
    .detail-product-title {
        font-size: 2.2rem;
    }
    .detail-action-buttons-row {
        flex-direction: column;
    }
    .product-share-links-row {
        max-width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   E-Commerce Sliding Mini-Cart Drawer Component Layout
   ========================================================================== */
/* The dark overlay background shroud that shadows the website when cart is active */
.cart-drawer-shroud-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 3000; /* Stacks layout elements securely above standard structural elements */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.cart-drawer-shroud-backdrop.drawer-open {
    opacity: 1;
    pointer-events: auto;
}

/* The actual physical slide-out sheet panel drawer housing */
.mini-cart-drawer-panel {
    position: fixed;
    top: 0;
    right: -450px; /* Hidden off-screen right baseline layout default edge */
    width: 100%;
    max-width: 440px;
    height: 100%;
    background-color: var(--matte-black);
    border-left: 1px solid rgba(156, 175, 136, 0.15); /* Delicate brand green inner lining divider */
    z-index: 3100;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.cart-drawer-shroud-backdrop.drawer-open .mini-cart-drawer-panel {
    right: 0; /* Smoothly slides out into view when class state is appended */
}

/* Drawer Structural Functional Header Area */
.drawer-header-frame {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.drawer-header-title {
    font-family: var(--font-heading);
    color: var(--pure-white);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.drawer-exit-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drawer-exit-btn:hover {
    color: var(--primary-green);
}

/* Reusable Content List Scrolling Main Container Box */
.drawer-items-scroll-track {
    flex-grow: 1;
    overflow-y: auto;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Individual Item Product Row Summary Container */
.cart-summary-item-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
}

.cart-item-thumbnail-box {
    width: 75px;
    height: 90px;
    background-color: var(--pure-white); /* Highlights white bottles clearly within drawer matrix */
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

/* Overrides the light-on-dark .product-card-no-image treatment for this
   box's small white backdrop, so the placeholder text stays legible here. */
.cart-item-thumbnail-box .product-card-no-image {
    color: rgba(0, 0, 0, 0.3);
    font-size: 0.55rem;
    letter-spacing: 0;
    text-align: center;
    line-height: 1.2;
}

.cart-item-thumbnail-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cart-item-info-column {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: flex-start;
}

.cart-item-title-text {
    font-family: var(--font-body);
    color: var(--pure-white);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 6px;
    text-align: left;
}

.cart-item-unit-cost {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin-bottom: 14px;
}

/* Row Action Interaction Control Wrapper */
.cart-item-actions-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: auto;
}

/* Tiny custom counter specifically scaled for tight drawer menus spacing */
.cart-item-actions-row .quantity-counter-cluster {
    border-color: rgba(255, 255, 255, 0.1);
}

.cart-item-actions-row .btn-counter-math {
    width: 32px;
    height: 32px;
    font-size: 1rem;
}

.cart-item-actions-row .counter-numerical-input {
    width: 40px;
    height: 32px;
    font-size: 0.9rem;
    border-left-color: rgba(255, 255, 255, 0.1);
    border-right-color: rgba(255, 255, 255, 0.1);
}

.cart-item-row-total-value {
    font-family: 'Apple Chancery', 'Lucida Calligraphy', cursive;
    color: var(--primary-green);
    font-size: 1.05rem;
    font-weight: 600;
}

/* Destructive Trash Clean Delete Layout Anchor Component Button */
.btn-remove-cart-item {
    background: transparent;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 2px;
    right: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-remove-cart-item svg {
    width: 14px;
    height: 14px;
    fill: rgba(255, 255, 255, 0.25);
    transition: fill 0.2s ease;
}

.btn-remove-cart-item:hover svg {
    fill: #ff4d4d; /* High visibility red alerts delete destructive warning clearly */
}

/* Lower Checkout Calculations Summary Panel Footer Area */
.drawer-checkout-summary-footer {
    background-color: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    display: flex;
    flex-direction: column;
}

/* Promo link alignment code row */
.promo-code-trigger-line {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    color: var(--primary-green);
    font-size: 0.9rem;
    text-decoration: none;
    margin-bottom: 25px;
    align-self: flex-start;
    transition: opacity 0.2s ease;
}

.promo-code-trigger-line:hover {
    opacity: 0.8;
}

.promo-code-trigger-line svg {
    width: 14px;
    height: 14px;
    fill: var(--primary-green);
}

.subtotal-calculation-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 8px;
}

.subtotal-label-text {
    font-family: var(--font-body);
    color: var(--pure-white);
    font-size: 1.1rem;
    font-weight: 500;
}

.subtotal-calculated-metric {
    font-family: var(--font-heading);
    color: var(--pure-white);
    font-size: 1.35rem;
    font-weight: 600;
}

.checkout-disclaimer-text {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    text-align: left;
    margin-bottom: 25px;
    line-height: 1.4;
}

/* Checkout Button Layout parameters */
.drawer-checkout-summary-footer .btn-green {
    margin-top: 0;
    width: 100%;
    padding: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
}

/* Structural Navigation Shopping Bag Header Count Badge Overlay indicator circles */
.nav-shopping-bag-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav-shopping-bag-icon-wrapper svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-green);
    transition: fill 0.3s ease;
}

.nav-shopping-bag-icon-wrapper:hover svg {
    fill: var(--pure-white);
}

.shopping-bag-numerical-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background-color: var(--primary-green);
    color: var(--matte-black);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Mobile responsive scaling drawer bounds overrides */
@media (max-width: 480px) {
    .mini-cart-drawer-panel {
        max-width: 100%;
        right: -100%;
    }
    .drawer-header-frame, .drawer-items-scroll-track, .drawer-checkout-summary-footer {
        padding: 20px;
    }
    .drawer-header-title { font-size: 1.2rem; }
    .subtotal-calculated-metric { font-size: 1.2rem; }
}

/* ==========================================================================
   Utility Bar Shopping Bag Icon Integration
   ========================================================================== */
.utility-cart-trigger-box {
    display: flex;
    align-items: center;
    gap: 15px; /* Adds clear separation spacing between text and icon */
}

/* Reusable utility line trigger button wrapper dimensions */
.utility-bag-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 12px;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

.utility-bag-icon-wrapper svg {
    width: 18px;
    height: 18px;
    fill: var(--primary-green);
    transition: fill 0.3s ease;
}

.utility-bag-icon-wrapper:hover {
    border-color: var(--primary-green);
    background-color: rgba(156, 175, 136, 0.05);
}

.utility-bag-icon-wrapper:hover svg {
    fill: var(--pure-white);
}

/* Floating quantity counter badge specific to the utility bar trigger */
.utility-bag-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background-color: var(--primary-green);
    color: var(--matte-black);
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ==========================================================================
   Reused Standardized Branding Editorial Footer Structure
   ========================================================================== */
.main-footer {
  background-color: #000000;
  padding: 60px 20px 40px 20px;
  text-align: center;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-heading {
  font-family: 'Playfair Display', Georgia, serif;
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 35px;
}

.social-links-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-bottom: 45px;
}

.social-circle-icon {
  width: 46px;
  height: 46px;
  border: 1px solid #9caf88;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #9caf88;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: transparent;
}

.social-circle-icon svg { width: 20px; height: 20px; }

.social-circle-icon:hover {
  background-color: #9caf88;
  color: #000000;
  box-shadow: 0 0 15px rgba(156, 175, 136, 0.6);
  transform: translateY(-3px);
}

.main-footer .footer-divider {
  width: 180px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 0 auto 30px auto;
}

.footer-copyright {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #444444;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}

.footer-copyright .white-text { color: #666666; transition: color 0.3s ease; }
.footer-copyright .white-text:hover { color: #9caf88; }

@media (max-width: 900px) {
    .footer-heading {
        font-size: 1.6rem;
        letter-spacing: 2px;
        margin-bottom: 25px;
    }
    .social-links-grid { gap: 15px; }
    .social-circle-icon { width: 40px; height: 40px; }
    .social-circle-icon svg { width: 18px; height: 18px; }
}

/* A platform turned off in System Settings — dimmed, click shows a message instead of navigating */
.social-link-disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.social-link-disabled:hover {
    background-color: transparent;
    color: #9caf88;
    box-shadow: none;
    transform: none;
}

