/* ============================================================================
   Created: February 2026
  
   Modern, Clean, and Professional E-commerce Design
   ============================================================================ */

/* ============================================================================
   TABLE OF CONTENTS
   1. CSS VARIABLES & RESET
   2. TYPOGRAPHY
   3. ANNOUNCEMENT BANNER
   4. HEADER & MEGA MENU NAVIGATION
   5. MOBILE NAVIGATION
   6. HERO SECTION
   7. PRODUCTS SECTION & CATEGORY PAGES
   8. PRODUCT CARDS
   9. FILTERS & SORTING
   10. CART PAGE
   11. NEWSLETTER
   12. FOOTER
   13. POLICY & CONTACT PAGES
   14. COOKIE CONSENT SYSTEM
   15. WISHLIST FEATURE
   16. UTILITY CLASSES
   ============================================================================ */

/* ============================================================================
   1. CSS VARIABLES & RESET
   ============================================================================ */
:root {
    --primary-gold: #d4af37;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --text-light: #999999;
    --border-color: #e5e5e5;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --hover-bg: #f5f5f5;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --transition: all 0.25s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* ============================================================================
   2. TYPOGRAPHY
   ============================================================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 1.75rem;
    letter-spacing: -0.25px;
}

h3 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

/* ============================================================================
   3. ANNOUNCEMENT BANNER
   ============================================================================ */
.announcement-banner {
    background: var(--text-dark);
    color: var(--bg-white);
    overflow: hidden;
    position: relative;
    z-index: 999;
    height: 2.5em;
    display: flex;
    align-items: center;
    padding: 0 0;
}

.announcement-banner p {
    margin: 0;
    font-weight: 400;
    display: inline-block;
    white-space: nowrap;
    will-change: transform;
    animation: announcement-slide 45s linear infinite;
    padding-left: 100%;
}

@keyframes announcement-slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* ============================================================================
   4. HEADER & MEGA MENU NAVIGATION
   ============================================================================ */
header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 998;
    transition: var(--transition);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Top header with logo */
.logo-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    text-align: center;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.logo-img {
    height: 45px;
    width: auto;
    margin: 0 auto;
    display: block;
}

.nav-top {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
    position: relative;
}

@media (min-width: 992px) {
    .nav-top {
        justify-content: center;
    }
    .nav-top .mobile-menu-btn {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    .nav-top .header-icons {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    .nav-top .logo {
        margin: 0 auto;
    }
}

.logo {
    flex: 0 0 auto;
}

/* Header icons */
.header-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart-icon, .wishlist-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    line-height: 1;
    vertical-align: middle;
    color: var(--text-dark);
    transition: var(--transition);
}

.cart-icon:hover, .wishlist-icon:hover {
    color: var(--primary-gold);
}

.cart-icon svg, .wishlist-icon svg {
    width: 24px;
    height: 24px;
}

.cart-count, .wishlist-count {
    position: absolute;
    top: -7px;
    right: -7px;
    background: #000;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    line-height: 1;
    pointer-events: none;
}

/* Main Navigation */
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
}

.nav-links li {
    position: relative;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    padding: 0.5rem 0;
    display: block;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-gold);
}

/* Desktop default: hide mobile-only header icons */
.header-mobile-icons {
    display: none;
}

.nav-search-cart {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ============================================================================
   5. MOBILE NAVIGATION
   ============================================================================ */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
    z-index: 1101;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 768px) {
    .announcement-banner {
        font-size: 0.75rem;
        padding: 0;
    }

    .nav-top {
        padding: 0.75rem 0;
        justify-content: center;
    }

    .nav-top .mobile-menu-btn {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-top .header-mobile-icons {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .logo-img {
        height: 35px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-top {
        justify-content: center;
        position: relative;
        padding: 0.75rem 1rem;
    }

    .header-top .mobile-menu-btn {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .header-top .header-mobile-icons {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }

    .header-icons {
        gap: 1rem;
    }

    .cart-icon {
        font-size: 1.3rem;
    }

    .nav-search-cart {
        display: none;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 0;
        border: none;
        transition: left 0.3s ease;
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
        left: 0;
        z-index: 1100;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links a {
        padding: 1.25rem 0;
        font-size: 1rem;
    }
}

/* Mobile Menu Overlay */
.nav-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1099;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.menu-open .header-mobile-icons {
    display: none !important;
}

/* ============================================================================
   6. HERO SECTION
   ============================================================================ */
.hero {
    background: var(--bg-light);
    padding: 3rem 0 2rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-tagline {
    color: var(--primary-gold);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.hero-cta {
    display: inline-block;
    background: var(--text-dark);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 2px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.hero-cta:hover {
    background: var(--primary-gold);
}

@media (max-width: 768px) {
    .hero {
        padding: 2rem 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

/* ============================================================================
   7. PRODUCTS SECTION & CATEGORY PAGES
   ============================================================================ */
.products {
    padding: var(--spacing-xl) 0;
}

/* Category Intro Section - Centered, Full Width */
.category-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 1rem 1rem 0;
}

.category-description {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

/* Products Header (for pages with titles like "Featured") */
.products-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.products-title {
    font-size: 1.75rem;
    font-weight: 300;
    letter-spacing: -0.5px;
}

/* Hide empty products-header */
.products-header:empty {
    display: none;
    margin: 0;
    padding: 0;
    border: none;
}

/* Products Controls Wrapper - Above Grid */
.products-controls-wrapper {
    margin-bottom: 1rem;
}

.products-controls {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
    align-items: center;
}

/* ============================================================================
   8. PRODUCT CARDS
   ============================================================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 3rem 2rem;
}

.product-card {
    background: white;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-2px);
}

/* Product Image Container */
.product-image {
    position: relative;
    overflow: hidden;
    background: #fafafa;
    aspect-ratio: 1;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.product-image img {
    border: 1px solid #e5e5e5;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Product Info Container */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0;
}

/* Product Name */
.product-name {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.0;
    margin: 0;
    min-height: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    align-self: center;
    overflow: hidden;
}

/* Product Price */
.product-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0.25rem 0 0.25rem 0;
    align-self: center;
}

/* Add to Cart Button */
.add-to-cart-btn {
    display: none;
    width: 100%;
    background: white;
    color: var(--text-dark);
    border: 1.5px solid var(--text-dark);
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 3px;
    transition: all 0.25s ease;
    cursor: pointer;
    margin-top: auto;
}

.add-to-cart-btn:hover {
    background: var(--text-dark);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

.sold-out {
    color: var(--text-light);
    font-style: italic;
    font-size: 0.875rem;
    font-weight: 400;
}

/* Quick View Button - Hidden globally */
.product-card .quick-view {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Quick View Overlay & Popup */
.quick-view-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.quick-view-overlay.show {
    opacity: 1;
}

.quick-view-popup {
    background: var(--bg-white);
    width: 90%;
    max-width: 900px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    transform: translateY(8px);
    transition: transform 0.25s ease, opacity 0.25s ease;
    padding: 1rem;
    position: relative; /* ensure absolutely-positioned children are positioned relative to the popup */
}

.quick-view-popup .close-popup {
    background: transparent;
    border: none;
    font-size: 1.25rem;
    position: absolute;
    right: 1rem;
    top: 1rem;
    cursor: pointer;
    z-index: 10; /* ensure close button sits above popup content */
}

.quick-view-content {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.quick-view-image {
    flex: 0 0 48%;
    background: #fafafa;
    border-radius: 6px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-view-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border: 1px solid var(--border-color);
}

.quick-view-details {
    flex: 1 1 52%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quick-view-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.quick-view-description {
    color: var(--text-gray);
    margin-top: 0.25rem;
}

.colour-swatches {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin: 0.75rem 0 0.25rem;
}
.colour-label {
    font-size: 0.82rem;
    color: var(--text-gray);
}
.colour-swatch-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.colour-swatch {
    padding: 0.28rem 0.85rem;
    border: 1.5px solid #ddd;
    border-radius: 20px;
    background: white;
    font-size: 0.82rem;
    cursor: pointer;
    color: #333;
    transition: border-color 0.2s, background 0.2s;
}
.colour-swatch:hover { border-color: #d4af37; }
.colour-swatch.active {
    border-color: #d4af37;
    background: #fffbf0;
    font-weight: 600;
    color: #1a1a1a;
}

.quick-view-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.quick-view-wishlist-btn {
    width: 100%;
    background: white;
    color: var(--text-dark);
    border: 1.5px solid var(--border-color);
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.quick-view-wishlist-btn:hover {
    border-color: var(--text-dark);
    background: var(--bg-light);
}

.quick-view-wishlist-btn.active {
    border-color: #e74c3c;
    color: #e74c3c;
}

.quick-view-wishlist-btn.active .wishlist-heart-path {
    stroke: #e74c3c;
    fill: #e74c3c;
}

.quick-view-popup .add-to-cart-btn {
    display: inline-block;
    width: 100%;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 2.5rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .products {
        padding: var(--spacing-lg) 0;
    }

    .category-intro {
        padding: 1.5rem 1rem 0;
        margin-bottom: 2rem;
    }
    
    .category-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1rem;
    }

    .product-name {
        font-size: 0.8rem;
        min-height: 2.2rem;
    }

    .product-price {
        font-size: 0.875rem;
    }

    .add-to-cart-btn {
        padding: 0.55rem 0.75rem;
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }

    .quick-view-content {
        flex-direction: column;
    }

    .quick-view-image-col {
        flex: 0 0 auto;
        width: 100%;
    }

    .quick-view-image {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .category-intro {
        padding: 1rem 0.5rem 0;
        margin-bottom: 1.5rem;
    }
    
    .category-description {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 0.75rem;
    }

    .product-image {
        margin-bottom: 0.75rem;
        border: 1px solid #e5e5e5;
    }

    .product-info {
        gap: 0.35rem;
    }

    .product-name {
        font-size: 0.75rem;
        min-height: 2rem;
    }

    .product-price {
        font-size: 0.8rem;
        margin: 0.15rem 0 0.5rem 0;
    }

    .add-to-cart-btn {
        padding: 0.5rem 0.5rem;
        font-size: 0.65rem;
    }
}

/* ============================================================================
   9. FILTERS & SORTING
   ============================================================================ */
.filter-dropdown,
.sort-dropdown {
    position: relative;
}

.filter-btn,
.sort-btn {
    background: white;
    border: 1px solid var(--border-color);
    padding: 0.65rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    cursor: pointer;
}

.filter-btn:hover,
.sort-btn:hover {
    border-color: var(--text-dark);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 1rem;
    min-width: 200px;
    z-index: 100;
    margin-top: 0.5rem;
    border-radius: 2px;
}

.dropdown-content label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
}

.dropdown-content label:hover {
    color: var(--primary-gold);
}

.dropdown-content input[type="checkbox"],
.dropdown-content input[type="radio"] {
    cursor: pointer;
}

.filter-section-title {
    font-weight: 600;
    font-size: 0.875rem;
    margin: 0.75rem 0 0.5rem;
    color: var(--text-dark);
}

.filter-section:first-child .filter-section-title {
    margin-top: 0;
}

@media (max-width: 768px) {
    .products-controls-wrapper {
        margin-bottom: 1.5rem;
    }
    
    .products-controls {
        width: 100%;
        /* original: distribute controls to edges on mobile */
        /* justify-content: space-between; */
        /* new: keep controls together on the right */
        justify-content: flex-end;
        gap: 0.75rem;
    }
    
    .filter-btn,
    .sort-btn {
        /* original: stretch buttons to full width on mobile */
        /* flex: 1; */
        flex: 0 0 auto;
        justify-content: center;
    }
    
    .dropdown-content {
        right: auto;
        left: 0;
        min-width: auto;
        width: 100%;
    }
    
    .sort-dropdown .dropdown-content {
        right: 0;
        left: auto;
    }
}

@media (max-width: 480px) {
    .products-controls {
        gap: 0.75rem;
    }
    
    .filter-btn,
    .sort-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

/* ============================================================================
   10. CART PAGE
   ============================================================================ */
#cartContainer {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.cart-items {
    flex: 2;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.cart-item {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    gap: 0;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s ease;
    padding: 0;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item:hover {
    background: var(--bg-light);
}

.cart-item-image {
    width: 110px;
    height: 110px;
    flex-shrink: 0;
    overflow: hidden;
    background: #fafafa;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.cart-item:hover .cart-item-image img {
    transform: scale(1.04);
}

.cart-item-details {
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.5rem;
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.cart-item-details h3 {
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
    color: var(--text-dark);
}

.cart-item-category {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.75px;
    color: var(--text-light);
    font-weight: 500;
}

.cart-item-footer {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: auto;
}

.cart-item-qty-row {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid var(--text-dark);
    border-radius: 2px;
    overflow: hidden;
    height: 34px;
}

.qty-btn {
    background: white;
    border: none;
    width: 34px;
    height: 34px;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: -1px;
}

.qty-btn:hover {
    background: var(--text-dark);
    color: white;
}

.qty-value {
    width: 38px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-left: 1.5px solid var(--text-dark);
    border-right: 1.5px solid var(--text-dark);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--text-dark);
}

.cart-item-remove-btn {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0;
    transition: color 0.2s ease;
}

.cart-item-remove-btn:hover {
    color: #e74c3c;
}

.cart-item-total {
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    min-width: 90px;
    text-align: right;
}

.cart-item-price-mobile {
    display: none;
}

.cart-summary {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    position: sticky;
    top: 100px;
    background: white;
}

.cart-summary h2 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    margin: 0;
    background: var(--bg-light);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.9rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.total-row {
    font-size: 1rem;
    border-bottom: none;
    padding: 1.25rem 1.5rem;
}

.shipping-options {
    padding: 0 1.5rem 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.shipping-options p {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.75px;
    color: var(--text-gray);
    margin: 0.75rem 0 0.5rem;
}

.shipping-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.875rem;
    cursor: pointer;
    border: none;
    margin: 0;
}

.shipping-option:hover {
    background: none;
    border: none;
}

.checkout-btn {
    display: block;
    width: calc(100% - 3rem);
    margin: 1.25rem 1.5rem;
    background: var(--text-dark);
    color: white;
    border: none;
    padding: 0.9rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.25s ease;
}

.checkout-btn:hover {
    background: var(--primary-gold);
}

.continue-shopping-link {
    display: block;
    text-align: center;
    padding: 0 1.5rem 1.25rem;
    font-size: 0.8rem;
    color: var(--text-gray);
    text-decoration: underline;
}

.continue-shopping-link:hover {
    color: var(--text-dark);
}

.international-disclaimer {
    margin: 0 1.5rem 1rem;
    padding: 12px 14px;
    background: #fff8e6;
    border: 1px solid #e6c85a;
    border-radius: 6px;
    font-size: 0.82rem;
    color: #5a4a00;
    line-height: 1.55;
}
.international-disclaimer a {
    color: #5a4a00;
    text-decoration: underline;
}

@media (max-width: 768px) {
    #cartContainer {
        flex-direction: column;
        gap: 2rem;
    }

    .cart-summary {
        max-width: 100%;
        min-width: 0;
        width: 100%;
        position: static;
    }

    .cart-item {
        grid-template-columns: 90px 1fr;
    }

    .cart-item-image {
        width: 90px;
        height: 90px;
    }

    .cart-item-price-desktop {
        display: none;
    }

    .cart-item-price-mobile {
        display: block;
    }

    .cart-item-details {
        padding: 1rem;
    }

    .cart-item-footer {
        gap: 1rem;
    }
}

/* ============================================================================
   11. NEWSLETTER
   ============================================================================ */
.newsletter {
    background: var(--bg-light);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.newsletter h2 {
    font-size: 1.75rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.newsletter p {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

#subscribe-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 0.5rem;
}

#subscribe-form input[type="email"] {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    font-size: 0.95rem;
}

#subscribe-form input[type="email"]:focus {
    outline: none;
    border-color: var(--text-dark);
}

#subscribe-form button {
    background: var(--text-dark);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    border-radius: 2px;
    transition: var(--transition);
}

#subscribe-form button:hover {
    background: var(--primary-gold);
}

@media (max-width: 768px) {
    .newsletter {
        padding: var(--spacing-lg) 1rem;
    }

    #subscribe-form {
        flex-direction: column;
    }

    #subscribe-form button {
        width: 100%;
    }
}

/* ============================================================================
   12. FOOTER
   ============================================================================ */
footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 1rem 0 0.5rem;
    margin-top: auto;
}

.footer-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.3rem 0;
}

.social-links a {
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-gold);
}

.copyright {
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    padding: 0.3rem 0;
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* ============================================================================
   13. POLICY & CONTACT PAGES
   ============================================================================ */
.policy-section, .contact-section {
    padding: var(--spacing-xl) 0;
}

.policy-hero, .contact-hero {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
}

.policy-hero h1, .contact-hero h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.policy-hero p, .contact-hero p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin: 0;
}

.policy-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: var(--spacing-xl);
}

.policy-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    background: white;
}

.policy-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.policy-card.featured {
    border-color: var(--primary-gold);
    background: #fdf9ee;
}

.policy-card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.policy-card h3 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.policy-card-price {
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--primary-gold);
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.policy-card p {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.policy-blocks {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.policy-block {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    align-items: flex-start;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s ease;
}

.policy-block:last-child {
    border-bottom: none;
}

.policy-block:hover {
    background: var(--bg-light);
}

.policy-block-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.policy-block-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.policy-block-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.policy-block-content p:last-child {
    margin-bottom: 0;
}

.policy-link {
    color: var(--primary-gold);
    text-decoration: underline;
    font-weight: 500;
}

.policy-link:hover {
    color: var(--text-dark);
}

/* ── Privacy policy page extras ────────────────────────── */
.policy-date {
    font-size: 0.8rem;
    color: #aaa;
    margin-top: 0.5rem;
}

.policy-tldr {
    max-width: 700px;
    margin: 0 auto 2rem;
    background: #fff8e6;
    border: 1px solid #e6c85a;
    border-radius: 8px;
    padding: 1.25rem 1.5rem 1rem;
}
.policy-tldr h4 {
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #7a5900;
    margin-bottom: 0.7rem;
}
.policy-tldr ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.policy-tldr li {
    font-size: 0.88rem;
    color: #5a4500;
    line-height: 1.5;
    padding-left: 1.4rem;
    position: relative;
}
.policy-tldr li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c8960a;
    font-weight: 700;
}

.policy-toc {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    background: #f9f9f9;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem 1.5rem;
}
.policy-toc p {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #aaa;
    margin: 0 0 0.6rem;
}
.policy-toc ol {
    padding-left: 1.2rem;
    margin: 0;
    columns: 2;
    column-gap: 2rem;
}
.policy-toc li { font-size: 0.84rem; margin-bottom: 0.3rem; }
.policy-toc a { color: var(--text-dark); text-decoration: none; }
.policy-toc a:hover { color: var(--primary-gold); text-decoration: underline; }

.policy-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    margin-bottom: 0.35rem;
}
.policy-badge--contract   { background: #e3f0fc; color: #1565C0; }
.policy-badge--legitimate { background: #f3e8fc; color: #6a1b9a; }
.policy-badge--consent    { background: #e8f5e9; color: #2d7a2d; }

.policy-use-row {
    padding: 0.75rem 0;
    border-top: 1px solid var(--border-color);
}
.policy-use-row:first-of-type { margin-top: 0.5rem; }
.policy-use-row p { margin: 0.3rem 0 0; }

.policy-rights-list,
.policy-share-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0.5rem;
}
.policy-rights-list li,
.policy-share-list li {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    padding: 0.35rem 0 0.35rem 1.3rem;
    position: relative;
    border-bottom: 1px solid #f5f5f5;
}
.policy-rights-list li:last-child,
.policy-share-list li:last-child { border-bottom: none; }
.policy-rights-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-size: 0.85rem;
}
.policy-share-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
}

.policy-cta-block {
    margin: 2.5rem auto 1rem;
    max-width: 480px;
    text-align: center;
    background: var(--text-dark);
    color: white;
    border-radius: 10px;
    padding: 2rem 2rem 1.75rem;
}
.policy-cta-block h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.4rem; }
.policy-cta-block p  { font-size: 0.88rem; color: #bbb; margin-bottom: 1.25rem; }
.policy-cta-btn {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--text-dark);
    padding: 0.7rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: background 0.2s;
}
.policy-cta-btn:hover { background: #c8960a; }

.policy-backtop { text-align: center; padding: 1.5rem 0 0.5rem; }
.policy-backtop a { font-size: 0.82rem; color: #aaa; text-decoration: none; transition: color 0.2s; }
.policy-backtop a:hover { color: var(--text-dark); }

@media (max-width: 640px) {
    .policy-toc ol { columns: 1; }
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.contact-info-block {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s ease;
}

.contact-info-block:last-child {
    border-bottom: none;
}

.contact-info-block:hover {
    background: var(--bg-light);
}

.contact-info-icon {
    font-size: 1.25rem;
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-block h3 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
    color: var(--text-gray);
}

.contact-info-block p,
.contact-info-block a {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
}

.contact-link {
    color: var(--primary-gold);
    text-decoration: underline;
}

.contact-link:hover {
    color: var(--text-dark);
}

.contact-form-wrapper {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
}

.required {
    color: var(--primary-gold);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: var(--font-primary);
    background: white;
    color: var(--text-dark);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    background: var(--text-dark);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: var(--transition);
    margin-top: 0.5rem;
}

.submit-btn:hover {
    background: var(--primary-gold);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .policy-hero h1, .contact-hero h1 {
        font-size: 1.75rem;
    }

    .policy-cards {
        grid-template-columns: 1fr;
    }

    .policy-block {
        padding: 1.5rem;
        gap: 1rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

/* ============================================================================
   14. COOKIE CONSENT SYSTEM
   ============================================================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    padding: 1.5rem 0;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-banner-text h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cookie-banner-text p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.cookie-btn-primary {
    background: var(--text-dark);
    color: white;
    border: none;
}

.cookie-btn-primary:hover {
    background: var(--primary-gold);
}

.cookie-btn-secondary {
    background: white;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.cookie-btn-secondary:hover {
    border-color: var(--text-dark);
}

.cookie-btn-text {
    background: transparent;
    color: var(--text-gray);
    border: none;
    padding: 0.75rem 1rem;
}

.cookie-btn-text:hover {
    color: var(--text-dark);
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.cookie-modal-content {
    position: relative;
    background: white;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
}

.cookie-modal-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-gray);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.cookie-modal-close:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

.cookie-modal-body {
    padding: 2rem;
}

.cookie-modal-intro {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.cookie-category-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cookie-category h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.cookie-category-header p {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin: 0;
}

.cookie-category-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.cookie-category-details p {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.cookie-category-details strong {
    color: var(--text-dark);
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: var(--primary-gold);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    background-color: #999;
    cursor: not-allowed;
}

.cookie-modal-footer {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-color);
    justify-content: flex-end;
}

.cookie-toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--text-dark);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10001;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
}

.cookie-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-toast span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary-gold);
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 600;
}

.cookie-toast p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-links a[href="#cookie-preferences"] {
    cursor: pointer;
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .cookie-banner-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
    
    .cookie-modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: 1.25rem;
    }
    
    .cookie-category {
        padding: 1.25rem;
    }
    
    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
    
    .cookie-toast {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }
}

/* ============================================================================
   15. WISHLIST FEATURE
   ============================================================================ */
.wishlist-btn {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: white;
    border: 1px solid var(--border-color);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.wishlist-btn:hover {
    background: var(--bg-light);
    border-color: var(--text-dark);
    transform: scale(1.1);
}

.heart-icon {
    font-size: 1.25rem;
    color: var(--text-dark);
    transition: all 0.25s ease;
    line-height: 1;
}

.heart-icon.filled {
    color: #e74c3c;
}

.wishlist-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: white;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    padding: 1.5rem;
    border-radius: 4px;
    max-width: 350px;
    z-index: 3000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
}

.wishlist-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.wishlist-notification p {
    margin-bottom: 0.75rem;
}

.wishlist-notification button {
    width: 100%;
    background: var(--text-dark);
    color: white;
    border: none;
    padding: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    border-radius: 2px;
    transition: var(--transition);
}

.wishlist-notification button:hover {
    background: var(--primary-gold);
}

.wishlist-section {
    padding: var(--spacing-xl) 0;
    min-height: 60vh;
}

.wishlist-section h1 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 3rem 2rem;
}

.wishlist-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.wishlist-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.wishlist-card-image {
    position: relative;
    overflow: hidden;
    background: #fafafa;
    aspect-ratio: 1;
}

.wishlist-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.wishlist-card:hover .wishlist-card-image img {
    transform: scale(1.05);
}

.wishlist-card-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.wishlist-product-name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.wishlist-product-price {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.wishlist-card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
}

.add-to-cart-from-wishlist-btn {
    width: 100%;
    background: var(--text-dark);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
    transition: all 0.25s ease;
    cursor: pointer;
}

.add-to-cart-from-wishlist-btn:hover {
    background: var(--primary-gold);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.remove-from-wishlist-btn {
    width: 100%;
    background: white;
    color: var(--text-gray);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
    transition: var(--transition);
    cursor: pointer;
}

.remove-from-wishlist-btn:hover {
    border-color: var(--text-dark);
    color: var(--text-dark);
}

.continue-shopping-btn {
    display: inline-block;
    background: var(--text-dark);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 2px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    text-decoration: none;
}

.continue-shopping-btn:hover {
    background: var(--primary-gold);
}

@media (max-width: 768px) {
    .wishlist-btn {
        opacity: 1;
        width: 32px;
        height: 32px;
    }
    
    .heart-icon {
        font-size: 1.1rem;
    }

    .wishlist-notification {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }

    .wishlist-section {
        padding: var(--spacing-lg) 0;
    }
    
    .wishlist-section h1 {
        font-size: 1.75rem;
    }
    
    .wishlist-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1rem;
    }
    
    .wishlist-card-info {
        padding: 1rem;
    }
    
    .wishlist-product-name {
        font-size: 0.875rem;
    }
    
    .wishlist-product-price {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .wishlist-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 0.75rem;
    }
    
    .wishlist-card-info {
        padding: 0.75rem;
        gap: 0.5rem;
    }
    
    .wishlist-product-name {
        font-size: 0.8rem;
    }
    
    .wishlist-product-price {
        font-size: 0.95rem;
    }
    
    .add-to-cart-from-wishlist-btn,
    .remove-from-wishlist-btn {
        padding: 0.65rem 0.75rem;
        font-size: 0.75rem;
    }
}

/* ============================================================================
   16. SUBSCRIPTION POPUP MODAL
   ============================================================================ */
#subscribe-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.45);
    z-index: 2000;
}

#subscribe-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2100;
    min-width: 380px;
    width: 90vw;
    max-width: 520px;
    background: rgba(255,255,255,0.98);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    padding: 2.5rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.subscribe-modal-content h2 {
    margin-top: 0;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark, #222);
    text-align: center;
}

.subscribe-modal-content p {
    margin: 0 0 1.5rem 0;
    color: #444;
    text-align: center;
}

#popup-subscribe-form {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
    margin-bottom: 1.2rem;
}

#popup-subscribe-email {
    flex: 1 1 220px;
    padding: 0.7rem 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

#popup-subscribe-form button {
    padding: 0.7rem 1.5rem;
    background: var(--text-dark, #222);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

#popup-subscribe-form button:hover {
    background: #d4af37;
    color: #222;
}

#close-subscribe-modal.no-thanks-btn {
    margin-top: 0.5rem;
    background: none;
    border: none;
    color: #888;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.2s;
    position: static;
    top: auto;
    right: auto;
    font-weight: 500;
}

#close-subscribe-modal.no-thanks-btn:hover {
    color: #222;
}

.subscribe-disclaimer {
    font-size: 0.85rem;
    color: #666;
    margin-top: 1rem;
    text-align: center;
}

/* ============================================================================
   17. UTILITY CLASSES
   ============================================================================ */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ============================================================================
   IMAGE DOTS ON PRODUCT CARDS (Multi-image indicator)
   Add to end of style.css
   ============================================================================ */

.image-dots {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.25rem;
    z-index: 5;
}

.image-dots .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* ============================================================================
   QUICK VIEW CAROUSEL (Image navigation in modal)
   ============================================================================ */

.quick-view-image-col {
    flex: 0 0 48%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quick-view-image-container {
    position: relative;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e5e5e5;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: 300;
    color: #1a1a1a;
    transition: all 0.25s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.carousel-prev {
    left: 0.75rem;
}

.carousel-next {
    right: 0.75rem;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-50%) scale(1.05);
}

.carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.25s ease;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

/* ============================================================================
   WHATSAPP FLOATING BUTTON
   z-index 9000: above all regular UI, below cookie banner (9999) and toast (10001)
   ============================================================================ */
.whatsapp-btn {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    z-index: 9000;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.whatsapp-btn svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.whatsapp-btn::after {
    content: 'Chat with us';
    position: absolute;
    right: calc(100% + 0.75rem);
    background: rgba(0, 0, 0, 0.75);
    color: white;
    font-size: 0.8rem;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.whatsapp-btn:hover::after {
    opacity: 1;
}

.carousel-dot.active {
    background: white;
    box-shadow: 0 0 0 2px #d4af37;
}

/* Mobile adjustments for carousel */
@media (max-width: 768px) {
    .carousel-prev,
    .carousel-next {
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
    }
    
    .carousel-prev {
        left: 0.5rem;
    }
    
    .carousel-next {
        right: 0.5rem;
    }
    
    .carousel-dots {
        bottom: 0.75rem;
    }
    
    .carousel-dot {
        width: 7px;
        height: 7px;
    }
}

/* ── PRODUCT TRUST BADGES (quick view popup) ─────────────── */
.product-badges {
    display: flex;
    flex-wrap: wrap;
    border-top: 0.5px solid #e0e0e0;
    border-bottom: 0.5px solid #e0e0e0;
    padding: 10px 0;
    margin: 8px 0;
}

.product-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 50%;
    padding: 4px 0;
    box-sizing: border-box;
}

.product-badge__icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 0.5px solid #e0e0e0;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #666;
    line-height: 0;
}

.product-badge__label {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    white-space: nowrap;
}

/* ── TRUST STRIP (category pages) ───────────────────────── */
.trust-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    margin: 2rem 0 0;
    background: var(--bg-light);
}

.trust-strip__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 2rem;
    border-right: 1px solid var(--border-color);
}

.trust-strip__item:last-child {
    border-right: none;
}

.trust-strip__icon {
    font-size: 1.1rem;
    line-height: 1;
}

.trust-strip__label {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .trust-strip {
        gap: 0;
    }

    .trust-strip__item {
        flex: 0 0 50%;
        justify-content: center;
        padding: 0.75rem 1rem;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }

    .trust-strip__item:nth-child(odd) {
        border-right: 1px solid var(--border-color);
    }

    .trust-strip__item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .trust-strip__label {
        font-size: 0.72rem;
        letter-spacing: 0.3px;
    }
}

/* ============================================================
   BREADCRUMB NAVIGATION
   ============================================================ */
.breadcrumb {
    padding: 0.55rem 2rem;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.78rem;
}
.breadcrumb ol {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}
.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.breadcrumb li + li::before {
    content: '›';
    color: var(--text-light);
}
.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
}
.breadcrumb a:hover {
    color: var(--primary-gold);
    text-decoration: underline;
}
.breadcrumb [aria-current="page"] {
    color: var(--text-dark);
    font-weight: 500;
}
@media (max-width: 768px) {
    .breadcrumb {
        padding: 0.5rem 1rem;
    }
}