/* shop.css - Shop Layout, Checkout, Wishlist, Categories Sidebar */

/* ══════════════════════════════════════
           SHOP LAYOUT — Concept 2
        ══════════════════════════════════════ */
        .shop-layout {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 2.5rem;
            margin-top: 2.5rem;
            align-items: start;
        }

        /* ── SIDEBAR ── */
        .shop-sidebar {
            background: var(--silk-white);
            border-radius: 20px;
            border: 1px solid var(--silk-shadow);
            box-shadow: 0 4px 24px var(--silk-shadow);
            overflow: hidden;
            position: sticky;
            top: 84px;
        }
        /* dark header */
        .sidebar-top {
            background: linear-gradient(135deg, #8B6914, var(--silk-gold));
            padding: 1.5rem 1.6rem 1.3rem;
            position: relative;
        }
        .sidebar-top::after {
            content: '';
            position: absolute;
            bottom: 0; left: 1.6rem; right: 1.6rem;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--silk-gold), #e8ca5a, var(--silk-gold), transparent);
        }
        .sidebar-top h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.45rem; font-weight: 300;
            color: var(--silk-champagne); letter-spacing: 2px;
        }
        .sidebar-top p { font-size: 0.72rem; color: rgba(247,231,206,0.5); letter-spacing: 1px; margin-top: 3px; }

        /* section head */
        .sidebar-section-head {
            padding: 14px 20px 6px;
            font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase;
            color: var(--silk-gold); font-weight: 700;
            display: flex; align-items: center; gap: 8px;
        }
        .sidebar-section-head::after { content: ''; flex: 1; height: 1px; background: rgba(212,175,55,.2); }

        /* category items */
        .sidebar-cat-list { list-style: none; padding: 4px 10px 10px; display: flex; flex-direction: column; gap: 3px; }
        .sidebar-cat-btn {
            width: 100%; text-align: left; background: transparent; border: 1.5px solid transparent;
            padding: 9px 12px; border-radius: 14px;
            font-family: 'Lato', sans-serif; font-size: 0.82rem; color: var(--silk-taupe);
            cursor: pointer; transition: all .22s;
            display: flex; align-items: center; gap: 12px;
            font-weight: 400; line-height: 1.3;
        }
        .sidebar-cat-btn:hover { background: var(--silk-cream); color: var(--silk-deep); border-color: transparent; }
        .sidebar-cat-btn.active {
            background: linear-gradient(135deg, rgba(212,175,55,.12), rgba(232,196,184,.1));
            border-color: rgba(212,175,55,.4);
            color: var(--silk-deep);
        }

        /* icon box */
        .sidebar-cat-icon {
            width: 40px; height: 40px; border-radius: 10px;
            background: var(--silk-cream);
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0; transition: background .22s;
        }
        .sidebar-cat-btn.active .sidebar-cat-icon {
            background: linear-gradient(135deg, var(--silk-gold), #e8ca5a);
        }
        .sidebar-cat-icon img { width: 22px; height: 22px; object-fit: contain; display: block; }

        .sidebar-cat-label { flex: 1; font-size: 0.8rem; line-height: 1.35; }
        .sidebar-cat-count {
            flex-shrink: 0; font-size: 0.68rem; font-weight: 700;
            background: rgba(212,175,55,.12); color: var(--silk-gold);
            padding: 2px 8px; border-radius: 10px;
        }
        .sidebar-cat-btn.active .sidebar-cat-count { background: rgba(212,175,55,.2); color: var(--silk-deep); }

        /* sort block */
        .sidebar-sort-block { padding: 0 20px 20px; border-top: 1px solid var(--silk-shadow); margin-top: 2px; }
        .sidebar-sort-label {
            font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase;
            color: var(--silk-gold); font-weight: 700;
            display: flex; align-items: center; gap: 8px;
            padding-top: 14px; margin-bottom: 0;
        }
        .sidebar-sort-label::after { content: ''; flex: 1; height: 1px; background: rgba(212,175,55,.2); }
        .sidebar-sort-select {
            width: 100%; padding: 9px 12px;
            background: var(--silk-cream); border: 1px solid var(--silk-shadow);
            border-radius: 10px; font-family: 'Lato'; font-size: 0.8rem; color: var(--silk-deep);
            outline: none; cursor: pointer; margin-top: 10px; transition: border-color .2s;
        }
        .sidebar-sort-select:focus { border-color: var(--silk-gold); }

        /* ── PRODUCTS AREA ── */
        .shop-products-area { min-width: 0; scroll-margin-top: 84px; }
        .cat-content-header {
            display: flex; align-items: center; justify-content: space-between;
            margin-bottom: 1.5rem; padding-bottom: 1rem;
            border-bottom: 1px solid var(--silk-shadow);
        }
        .cat-content-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.7rem; font-weight: 500; color: var(--silk-deep); line-height: 1.2;
            display: flex; align-items: center; gap: .5rem;
        }
        .cat-content-title img { width: 28px; height: 28px; object-fit: contain; }
        .cat-content-right { display: flex; align-items: center; gap: .75rem; }
        .cat-content-count { font-size: 0.85rem; color: var(--silk-taupe); }
        /* view toggle buttons */
        .view-toggle-btns { display: flex; gap: .3rem; }
        .view-toggle-btn {
            width: 34px; height: 34px; border-radius: 8px;
            border: 1px solid var(--silk-shadow); background: var(--silk-white);
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; font-size: .9rem; transition: all .2s; color: var(--silk-taupe);
        }
        .view-toggle-btn.active { background: var(--silk-gold); border-color: var(--silk-gold); color: white; }
        .view-toggle-btn:hover:not(.active) { border-color: var(--silk-gold); color: var(--silk-gold); }
        .cat-empty { text-align: center; padding: 4rem 2rem; color: var(--silk-taupe); }
        .products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.6rem; }
        .product-card { background: white; border-radius: 16px; overflow: hidden; cursor: pointer; position: relative; display: flex; flex-direction: column; transition: all 0.38s cubic-bezier(0.25,0.46,0.45,0.94); border: 1px solid #EDE5DA; box-shadow: 0 2px 10px rgba(139,126,116,0.08); }
        .product-card::before { content: ''; position: absolute; top: 0; bottom: 0; left: 0; width: 4px; background: linear-gradient(to bottom, var(--silk-gold), var(--silk-rose)); transform: scaleY(0); transform-origin: top; transition: transform 0.4s ease; z-index: 10; }
        .product-card:hover::before { transform: scaleY(1); }
        .product-card::after { display: none; }
        .product-card:hover { transform: translateX(4px) translateY(-5px); box-shadow: 0 16px 42px rgba(139,126,116,0.18), -4px 0 0 var(--silk-gold); border-color: rgba(212,175,55,0.3); }
        .product-image { width: 100%; height: 280px; aspect-ratio: 1 / 1; object-fit: contain; background: var(--silk-white); display: block; transition: transform 0.55s ease; flex-shrink: 0; }
        .product-card:hover .product-image { transform: scale(1.05); }
        .product-info { padding: 1.1rem 1.3rem 1.3rem; display: flex; flex-direction: column; flex: 1; }
        .product-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: var(--silk-deep); line-height: 1.35; margin-bottom: 0.4rem; }
        .product-description { font-size: 0.88rem; color: var(--silk-taupe); line-height: 1.6; margin-bottom: 0.8rem; }
        .product-footer { display: flex; align-items: center; gap: 0.9rem; margin-top: auto; padding-top: 1rem; }
        /* ── V3 Montserrat Minimalist Price ── */
        .product-price-box { display: flex; align-items: center; justify-content: space-between; background: transparent; border: none; border-top: 1px solid rgba(212,175,55,0.22); border-radius: 0; padding: 0.75rem 0 0 0; flex: 1; min-width: 0; }
        .product-price-box.sale { border-top-color: rgba(192,57,43,0.30); }
        .product-price-left { display: flex; flex-direction: column; gap: 0.1rem; }
        .product-price-lbl { font-family: 'Montserrat', sans-serif; font-size: 0.58rem; letter-spacing: 3.5px; text-transform: uppercase; color: var(--silk-taupe); font-weight: 600; }
        .product-price-lbl.sale { color: #c0392b; }
        .product-price-original-row { display: flex; align-items: center; gap: 0.35rem; }
        .product-price-original { font-family: 'Montserrat', sans-serif; font-size: 0.78rem; font-weight: 400; color: var(--silk-taupe); text-decoration: line-through; text-decoration-color: #c0392b; line-height: 1; }
        .product-price-discount-pill { background: #c0392b; color: #fff; font-family: 'Montserrat', sans-serif; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.5px; padding: 0.1rem 0.4rem; border-radius: 4px; }
        .product-price-amount { font-family: 'Montserrat', sans-serif; font-size: 1.55rem; font-weight: 700; color: var(--silk-gold); line-height: 1; letter-spacing: -0.5px; }
        .product-price-amount.sale { color: #c0392b; }
        .product-price-currency { font-family: 'Montserrat', sans-serif; font-size: 0.65rem; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--silk-taupe); }

        .add-to-cart-btn { padding: 0.55rem 1.15rem; background: transparent; border: 1.5px solid var(--silk-gold); color: var(--silk-deep); font-family: 'Lato', sans-serif; font-size: 0.73rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border-radius: 10px; cursor: pointer; transition: all 0.25s ease; position: relative; overflow: hidden; z-index: 1; white-space: nowrap; }
        .add-to-cart-btn::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--silk-gold), #E8C860); opacity: 0; transition: opacity 0.25s ease; z-index: -1; }
        .add-to-cart-btn:hover { color: white; box-shadow: 0 4px 16px rgba(212,175,55,0.4); }
        .add-to-cart-btn:hover::after { opacity: 1; }
        .add-to-cart-btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none !important; }
        /* ── Size Chips (Rochii de noapte) ── */
        .size-chips-row { display: flex; gap: 6px; margin: 8px 0 4px; flex-wrap: wrap; align-items: center; }
        .size-chip-label { font-family: "Lato", sans-serif; font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase; color: var(--silk-taupe); margin-right: 2px; font-weight: 600; }
        .size-chip { width: 36px; height: 36px; border-radius: 8px; border: 1.5px solid #E0D5C5; background: transparent; font-family: "Lato", sans-serif; font-size: 0.72rem; font-weight: 700; cursor: pointer; transition: all 0.18s ease; color: var(--silk-taupe); display: inline-flex; align-items: center; justify-content: center; }
        .size-chip:hover { border-color: var(--silk-gold); color: var(--silk-deep); background: #FDF9EE; }
        .size-chip.selected { background: var(--silk-gold); border-color: var(--silk-gold); color: white; box-shadow: 0 3px 10px rgba(212,175,55,0.35); }
        .size-chip.oos { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; background: var(--silk-cream); }
        .add-to-cart-btn:disabled::after { display: none; }
        .product-badge { position: absolute; top: 1rem; left: 1rem; padding: 0.35rem 0.9rem; border-radius: 20px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.5px; z-index: 10; text-transform: uppercase; }
        .badge-bestseller { background: linear-gradient(135deg, var(--silk-gold), #F0D060); color: var(--silk-deep); }
        .badge-new { background: linear-gradient(135deg, var(--silk-taupe), var(--silk-deep)); color: white; }
        .badge-offer { background: linear-gradient(135deg, #c0392b, #e74c3c); color: white; }
        .product-corner-stack {
            position: absolute; top: 0.75rem; right: 0.75rem;
            display: flex; flex-direction: column; align-items: flex-end; gap: 0.4rem;
            z-index: 11;
        }
        .discount-badge { position: static; background: linear-gradient(135deg, #c0392b, #e74c3c); color: white; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.5px; padding: 0.4rem 0.75rem; border-radius: 20px; z-index: 10; box-shadow: 0 4px 12px rgba(192,57,43,0.4); text-transform: uppercase; animation: discountPulse 2.5s ease-in-out infinite; }
        @keyframes discountPulse { 0%, 100% { box-shadow: 0 4px 12px rgba(192,57,43,0.4); } 50% { box-shadow: 0 4px 20px rgba(192,57,43,0.7); } }
        .product-card.out-of-stock { opacity: 0.82; }
        .oos-overlay { position: absolute; inset: 0; background: rgba(245,241,232,0.65); display: flex; align-items: center; justify-content: center; z-index: 20; border-radius: 20px; backdrop-filter: blur(1.5px); }
        .oos-label { background: var(--silk-deep); color: var(--silk-cream); font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 0.65rem 1.6rem; border-radius: 50px; border: 2px solid var(--silk-gold); box-shadow: 0 6px 24px rgba(93,78,55,0.35); }
        .add-to-cart-btn:disabled { background: var(--silk-taupe); cursor: not-allowed; opacity: 0.55; transform: none !important; }
        .stock-indicator { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.78rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 10px; margin-left: 0.5rem; }
        .stock-ok { background: #d4edda; color: #155724; }
        .stock-low { background: #fff3cd; color: #856404; }
        .stock-none { background: #f8d7da; color: #721c24; }
        .stock-unlimited { background: #e2e8f0; color: #475569; }
        .product-price-amount { font-size: 1.55rem; }
        .loading-spinner { display: flex; justify-content: center; align-items: center; padding: 4rem; }
        .spinner { width: 50px; height: 50px; border: 3px solid var(--silk-champagne); border-top-color: var(--silk-gold); border-radius: 50%; animation: spin 0.8s linear infinite; }
        @keyframes spin { to { transform: rotate(360deg); } }
        .loading-products { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 3rem; }
        .product-skeleton { background: var(--silk-white); border-radius: 20px; overflow: hidden; height: 500px; }
        .skeleton-image { height: 350px; background: linear-gradient(90deg, var(--silk-cream) 25%, var(--silk-champagne) 50%, var(--silk-cream) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; }
        .skeleton-text { padding: 1.5rem; }
        .skeleton-line { height: 20px; border-radius: 10px; background: linear-gradient(90deg, var(--silk-cream) 25%, var(--silk-champagne) 50%, var(--silk-cream) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; margin-bottom: 0.8rem; }
        .skeleton-line.short { width: 60%; }
        @keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
        .admin-product-category { display: inline-block; font-size: 0.72rem; color: var(--silk-taupe); background: var(--silk-cream); border-radius: 10px; padding: 0.15rem 0.5rem; margin-left: 0.5rem; font-weight: 400; }
        /* ══════════════════════════════════════
           HAMBURGER + MOBILE MENU
        ══════════════════════════════════════ */
        .hamburger {
            display: none;
            flex-direction: column; justify-content: center;
            gap: 5px; width: 40px; height: 40px;
            background: none; border: none; cursor: pointer;
            padding: 6px; border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover { background: rgba(212,175,55,0.1); }
        .hamburger span {
            display: block; width: 22px; height: 1.5px;
            background: var(--silk-deep); border-radius: 2px;
            transition: all 0.3s ease; transform-origin: center;
        }
        .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
        .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
        .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

        .mobile-menu {
            position: fixed; top: 0; right: 0; bottom: 0;
            width: min(320px, 85vw);
            background: var(--silk-white); z-index: 1500;
            transform: translateX(100%);
            transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
            box-shadow: -8px 0 40px rgba(93,78,55,0.18);
            display: flex; flex-direction: column;
            padding: 5rem 2rem 2rem; gap: 0.25rem;
        }
        .mobile-menu.open { transform: translateX(0); }
        /* top gold accent on drawer */
        .mobile-menu::before {
            content: '';
            position: absolute; top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--silk-gold) 30%, #e8ca5a 50%, var(--silk-gold) 70%, transparent);
        }
        .mobile-menu-close {
            position: absolute; top: 1.2rem; right: 1.2rem;
            background: var(--silk-cream); border: none;
            width: 36px; height: 36px; border-radius: 50%;
            font-size: 1.1rem; cursor: pointer; color: var(--silk-taupe);
            display: flex; align-items: center; justify-content: center;
            transition: all 0.2s;
        }
        .mobile-menu-close:hover { background: var(--silk-champagne); color: var(--silk-deep); }
        /* logo inside mobile drawer */
        .mobile-menu-logo {
            font-family: 'Cinzel', serif;
            font-size: 1.15rem; letter-spacing: 6px;
            color: var(--silk-deep); margin-bottom: 1.5rem;
        }
        .mobile-menu-logo span { color: var(--silk-gold); }
        .mobile-menu-link {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem; font-weight: 600; color: var(--silk-deep);
            padding: 0.85rem 0; border-bottom: 1px solid var(--silk-shadow);
            cursor: pointer; transition: color 0.2s, padding-left 0.2s; display: block;
        }
        .mobile-menu-link:hover { color: var(--silk-gold); padding-left: 8px; }
        .mobile-menu-lang { margin-top: auto; padding-top: 1.5rem; }

        /* ── SIZE MEASUREMENTS BADGE ── */
        .size-measurements-badge {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 0.5rem;
            width: 100%;
            animation: fadeIn 0.25s ease-out both;
        }
        .size-measurements-badge span {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(247,231,206,0.5));
            border: 1px solid rgba(212,175,55,0.35);
            border-radius: 20px;
            padding: 0.28rem 0.7rem;
            font-size: 0.78rem;
            color: var(--silk-deep);
            font-family: 'Lato', sans-serif;
            white-space: nowrap;
        }
        .size-measurements-badge strong {
            color: var(--silk-gold);
            font-weight: 700;
        }
            display: flex; flex-direction: column; gap: 1rem;
        }
        .products-grid.list-view .product-card {
            flex-direction: row;
        }
        .products-grid.list-view .product-card:hover {
            transform: translateX(4px) translateY(-2px);
        }
        .products-grid.list-view .product-image {
            width: 150px; height: 150px; flex-shrink: 0; object-fit: contain;
        }
        .products-grid.list-view .product-info {
            flex: 1; padding: 1.2rem 1.4rem;
            display: flex; flex-direction: column; justify-content: center;
        }
        .products-grid.list-view .product-description { display: block !important; margin-bottom: 0.8rem; }
        .products-grid.list-view .product-footer { flex-direction: row; align-items: center; }
        /* Grid view: descrierea este ascunsă implicit prin display: none de mai sus */

        /* ── TABLET (≤1024px): ascunde link-urile din dreapta, rămân cele din stânga ── */
        @media (max-width: 1024px) {
            .shop-layout { grid-template-columns: 1fr; gap: 1.5rem; }
            .shop-sidebar { position: relative; top: 0; }
            .sidebar-cat-list { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
            .sidebar-cat-btn { padding: 8px 10px; }
            .sidebar-cat-icon { width: 34px; height: 34px; }
        }

        /* ── NAVBAR: ascunde link-urile, arată hamburger la ≤900px ── */
        @media (max-width: 900px) {
            .hamburger { display: flex; }
            /* pe mobil: grid devine logo-centrat + icons la dreapta */
            .navbar-content {
                grid-template-columns: auto 1fr;
                height: 64px;
            }
            /* ascundem link-urile din stânga */
            .nav-links { display: none; }
            /* logo trece în coloana 1 */
            .logo {
                padding: 0;
                align-items: flex-start;
                grid-column: 1;
            }
            .logo-wordmark { font-size: 1.15rem; letter-spacing: 5px; }
            .logo-tagline { display: none; }
            /* icons în coloana 2, aliniate la dreapta */
            .nav-icons {
                grid-column: 2;
                gap: 1rem;
            }
            /* ascundem link-urile din dreapta din nav-icons */
            .nav-icons .nav-links-right { display: none; }
        }

        /* ── MOBILE (≤600px) ── */
        @media (max-width: 600px) {
            .navbar-content { padding: 0 1rem; height: 60px; }
            .logo-wordmark { font-size: 1rem; letter-spacing: 4px; }
            .sidebar-cat-list { grid-template-columns: 1fr; }
            .hero-content { grid-template-columns: 1fr; gap: 2rem; }
            .hero-text h1 { font-size: 2.6rem; }
            .hero-image { display: none; }
            .hero-floating-badge { font-size: 0.78rem; padding: 0.4rem 1rem; }
            .hero-btn { padding: 0.85rem 2rem; font-size: 0.95rem; }
            .products-section { margin: 3rem auto; padding: 0 1rem; }
            .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
            .product-image { height: 220px; }
            .product-name { font-size: 1.3rem; }
            .product-info { padding: 1rem; }
            .product-footer { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
            .add-to-cart-btn { width: 100%; text-align: center; padding: 0.6rem 1rem; }
            /* Fix: list-view on mobile — prevent button overlap over price */
            .products-grid.list-view .product-footer { flex-direction: column; align-items: stretch; gap: 0.6rem; }
            .products-grid.list-view .product-price-box { width: 100%; }
            .products-grid.list-view .add-to-cart-btn { width: 100%; }
            .product-price-amount { font-size: 1.08rem; }
            .section-title { font-size: 2.2rem; letter-spacing: 4px; }
            .section-subtitle { font-size: 0.95rem; }
            .modal-content { padding: 1.5rem 1.2rem; border-radius: 16px; }
            .modal-title { font-size: 1.8rem; }
            .cart-item { flex-direction: column; gap: 0.8rem; padding: 1rem; }
            .cart-item-image { width: 80px; height: 80px; aspect-ratio: 1 / 1; }
            .cart-item-actions { flex-wrap: wrap; }
            .newsletter-form { flex-direction: column; gap: 0.6rem; }
            .newsletter-input, .newsletter-btn { width: 100%; border-radius: 12px; }
            .discount-input { flex-direction: column; gap: 0.5rem; }
            .apply-discount-btn { width: 100%; text-align: center; }
            .toast { bottom: 1rem; right: 1rem; left: 1rem; text-align: center; border-radius: 12px; }
            .features-section { padding: 3.5rem 1rem; }
            .testimonials-section { padding: 4rem 1rem; }
            .testimonials-title h2 { font-size: 2rem; }
            .page-content { margin: 6rem auto 3rem; padding: 0 1.2rem; }
            .page-content h1 { font-size: 2.2rem; }
            .admin-product-row { flex-wrap: wrap; }
            .admin-product-actions { width: 100%; justify-content: flex-end; }
            .order-body { grid-template-columns: 1fr; }
        }

        /* ── DESKTOP PRODUCTS GRID OVERRIDE (Shop section #produse) ── */
        #produse .products-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(260px, 1fr));
            gap: 1.6rem;
        }

        /* Large desktops / 2K+ — more columns if space allows */
        @media (min-width: 1600px) {
            #produse .products-grid {
                grid-template-columns: repeat(4, minmax(260px, 1fr));
            }
        }

        /* Tablets */
        @media (max-width: 1024px) {
            #produse .products-grid {
                grid-template-columns: repeat(2, minmax(220px, 1fr));
            }
        }

        /* Small mobile */
        @media (max-width: 480px) {
            #produse .products-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ── VERY SMALL (≤400px) ── */
        @media (max-width: 400px) {
            .hero-text h1 { font-size: 2rem; }
            .hero-stats { gap: 0.8rem; flex-wrap: wrap; justify-content: center; }
            .products-grid { grid-template-columns: 1fr; }
            .product-image { height: 260px; }
        }
        .features-section { background: linear-gradient(170deg, var(--silk-white) 0%, #FBF5F0 50%, #F9EDE8 100%); padding: 6rem 2rem; margin: 6rem 0 0; content-visibility: auto; contain-intrinsic-size: 0 600px; }
        .features-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 3rem; }
        .feature-card { text-align: center; padding: 2.5rem 2rem; background: rgba(255,255,255,0.75); border-radius: 20px; box-shadow: 0 4px 20px rgba(196,116,138,0.08); transition: all 0.4s ease; border: 1px solid rgba(196,116,138,0.08); }
        .feature-card:hover { transform: translateY(-8px); border-color: rgba(196,116,138,0.22); box-shadow: 0 15px 40px rgba(196,116,138,0.14); }
        .feature-icon-wrap { width: 70px; height: 70px; border-radius: 50%; background: linear-gradient(135deg, #F9EDE8, #EDD5C8); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; color: var(--silk-gold); }
        .feature-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; color: #5D3A4A; margin-bottom: 1rem; }
        .feature-text { font-size: 1rem; color: #9E7E8E; line-height: 1.7; }

        /* ── MOSAIC SCREENSHOTS — Testimonials ── */
        .testimonials-section {
            padding: 7rem 0;
            background: linear-gradient(170deg, var(--silk-white) 0%, var(--silk-cream) 60%, #F9EDE8 100%);
            position: relative; overflow: hidden;
            content-visibility: auto; contain-intrinsic-size: 0 800px;
        }
        .testimonials-section::before {
            content: ''; position: absolute; inset: 0;
            background:
                radial-gradient(ellipse 700px 400px at 10% 60%, rgba(212,175,55,0.05) 0%, transparent 70%),
                radial-gradient(ellipse 500px 350px at 90% 40%, rgba(232,196,184,0.08) 0%, transparent 65%);
            pointer-events: none;
        }
        .testimonials-inner { position: relative; z-index: 2; }
        .testimonials-header { max-width: 1100px; margin: 0 auto 1.5rem; padding: 0 2rem; text-align: center; }
        .testimonials-title { display: block; }
        .section-eyebrow { font-size: 0.8rem; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: #C4748A; display: block; margin-bottom: 1rem; }
        .section-title-line { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-bottom: 1.2rem; }
        .section-title-line::before, .section-title-line::after { content: ''; flex: 1; max-width: 80px; height: 1px; background: linear-gradient(to right, transparent, var(--silk-gold)); }
        .section-title-line::after { background: linear-gradient(to left, transparent, var(--silk-gold)); }
        .testimonials-title h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 600; color: var(--silk-deep); }
        .testimonials-title p { font-size: 0.92rem; color: var(--silk-taupe); margin-top: 0.6rem; line-height: 1.7; }

        /* Mosaic wrapper */
        .t-track-wrap { position: relative; overflow: hidden; }
        .t-nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }
        .t-nav-btn:disabled:hover { background: rgba(255,255,255,0.95); color: var(--silk-taupe); border-color: rgba(212,175,55,0.35); box-shadow: 0 4px 16px rgba(139,126,116,0.12); }

        /* Track — paginated mosaic */
        .t-track { display: none; } /* nu mai e folosit */
        .t-mosaic-page {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            padding: 3rem 4rem 4.5rem;
            flex-wrap: nowrap;
        }
        @keyframes t-fade-in  { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes t-fade-out { from { opacity: 1; transform: translateY(0); } to { opacity: 0; transform: translateY(-14px); } }
        .t-page-visible { animation: t-fade-in 0.32s ease forwards; }
        .t-page-hidden  { animation: t-fade-out 0.28s ease forwards; pointer-events: none; }

        /* Mosaic cards */
        .t-card {
            flex-shrink: 0; width: 224px;
            background: #fff;
            border-radius: 26px;
            border: 1.5px solid rgba(212,175,55,0.18);
            box-shadow: 0 20px 55px rgba(139,126,116,0.14), 0 4px 12px rgba(139,126,116,0.07), inset 0 1px 0 rgba(255,255,255,0.9);
            overflow: hidden;
            transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.45s ease;
            cursor: pointer; position: relative; display: flex; flex-direction: column;
        }
        .t-card:hover { transform: rotate(0deg) translateY(-14px) scale(1.07) !important; box-shadow: 0 40px 80px rgba(139,126,116,0.22), 0 0 0 2px rgba(212,175,55,0.45), inset 0 1px 0 rgba(255,255,255,0.9); z-index: 30; }

        /* Bar la top */
        .t-phone-bar { display: flex; align-items: center; gap: 0.5rem; padding: 0.6rem 0.85rem; background: linear-gradient(135deg, var(--silk-deep) 0%, #8B6914 50%, var(--silk-gold) 100%); position: relative; overflow: hidden; }
        .t-phone-bar::before { content: ''; position: absolute; inset: 0; background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%); animation: shimmerSweep 3s ease-in-out infinite; pointer-events: none; }
        .t-phone-bar.whatsapp { background: linear-gradient(135deg, #075e54, #128c7e); }
        .t-phone-bar.viber { background: linear-gradient(135deg, #6f3fa3, #7f4cb5); }
        .t-phone-bar.messenger { background: linear-gradient(135deg, #0084ff, #00c6ff); }
        .t-phone-dots { display: flex; gap: 4px; }
        .t-phone-dot { width: 7px; height: 7px; border-radius: 50%; }
        .t-phone-dot:nth-child(1) { background: #ff5f57; }
        .t-phone-dot:nth-child(2) { background: #febc2e; }
        .t-phone-dot:nth-child(3) { background: #28c840; }
        .t-phone-app-name { margin-left: auto; font-size: 0.58rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.92); }

        /* Screenshot */
        .t-card-screenshot { width: 100%; height: auto; display: block; cursor: zoom-in; }
        .t-card-img-placeholder { width: 100%; height: 280px; background: linear-gradient(135deg, #F9EDE8, #EDD5C8); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem; }
        .t-card-img-placeholder .ph-icon { font-size: 2.2rem; opacity: 0.35; }
        .t-card-img-placeholder .ph-label { font-size: 0.7rem; color: #C4748A; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }

        /* Bottom strip */
        .t-card-body { padding: 0.55rem 0.85rem; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(212,175,55,0.1); background: rgba(254,253,251,0.98); }
        .t-card-stars { color: var(--silk-gold); font-size: 0.7rem; letter-spacing: 1px; line-height: 1; }
        .t-card-name { display: none; }
        .t-card-location { display: none; }
        .t-card-tag { display: inline-flex; align-items: center; gap: 0.3rem; border-radius: 999px; padding: 0.18rem 0.5rem; font-size: 0.57rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; border: 1px solid; }
        .t-card-tag.whatsapp { color: #128c7e; border-color: rgba(18,140,126,0.35); background: rgba(18,140,126,0.06); }
        .t-card-tag.instagram { color: var(--silk-gold); border-color: rgba(212,175,55,0.35); background: rgba(212,175,55,0.07); }
        @media (max-width: 768px) { .t-card-tag.instagram { display: none !important; } }
        .t-card-tag.viber { color: #7360f2; border-color: rgba(115,96,242,0.3); background: rgba(115,96,242,0.06); }
        .t-card-tag.messenger { color: #0084ff; border-color: rgba(0,132,255,0.3); background: rgba(0,132,255,0.06); }
        .t-nav { display: flex; justify-content: center; align-items: center; gap: 1.2rem; margin-top: 2rem; padding: 0 2rem; }
        .t-nav-btn { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid rgba(212,175,55,0.35); background: rgba(255,255,255,0.95); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.1rem; color: var(--silk-taupe); transition: all 0.25s; box-shadow: 0 4px 16px rgba(139,126,116,0.12); }
        .t-nav-btn:hover { background: var(--silk-gold); color: white; border-color: var(--silk-gold); box-shadow: 0 8px 24px rgba(212,175,55,0.35); }
        .load-more-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 2.5rem; border-radius: 50px; border: 1.5px solid var(--silk-gold); background: white; color: var(--silk-gold); font-family: 'Lato', sans-serif; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.5px; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 4px 15px var(--silk-shadow); }
        .load-more-btn:hover { background: var(--silk-gold); color: white; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212,175,55,0.3); }
        .products-pagination { display: flex; justify-content: center; align-items: center; gap: 1rem; margin-top: 2.5rem; }
        .prod-nav-btn { width: 42px; height: 42px; border-radius: 50%; border: 1.5px solid var(--silk-gold); background: white; color: var(--silk-gold); font-size: 1.1rem; cursor: pointer; transition: all 0.25s ease; box-shadow: 0 2px 10px var(--silk-shadow); display: flex; align-items: center; justify-content: center; }
        .prod-nav-btn:hover:not(:disabled) { background: var(--silk-gold); color: white; transform: scale(1.1); box-shadow: 0 6px 20px rgba(212,175,55,0.35); }
        .prod-nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }
        .prod-nav-info { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--silk-taupe); min-width: 50px; text-align: center; }
        .t-dots { display: flex; gap: 6px; align-items: center; }
        .t-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(212,175,55,0.22); transition: all 0.3s; cursor: pointer; border: none; }
        .t-dot.active { background: var(--silk-gold); width: 22px; border-radius: 4px; }
        .t-lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 9998; display: flex; align-items: center; justify-content: center; padding: 1.5rem; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
        .t-lightbox.open { opacity: 1; pointer-events: all; }
        .t-lightbox img { max-width: min(500px, 95vw); max-height: 90vh; border-radius: 12px; object-fit: contain; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
        .t-lightbox-close { position: absolute; top: 1.2rem; right: 1.5rem; color: white; font-size: 2rem; cursor: pointer; background: none; border: none; line-height: 1; opacity: 0.7; transition: opacity 0.2s; }
        .t-lightbox-close:hover { opacity: 1; }
        .testimonial-card { display: none; }
        .testimonials-grid { display: none; }
        @media (max-width: 600px) {
          .testimonials-section { padding: 4rem 0; }
          .testimonials-title h2 { font-size: 2rem; }
          .t-mosaic-page { flex-wrap: wrap; padding: 2rem 1.5rem 3rem; gap: 1.2rem; justify-content: center; }
          .t-card { width: 140px; }
          .t-card:nth-child(n) { transform: none; }
          .t-card:nth-child(odd) { transform: rotate(-2deg) translateY(6px); }
          .t-card:nth-child(even) { transform: rotate(2deg) translateY(-6px); }
        }
        .footer { background: var(--silk-deep); color: var(--silk-cream); padding: 4rem 2rem 2rem; }
        .footer-content { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-bottom: 3rem; }
        .footer-section h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; margin-bottom: 1.5rem; color: var(--silk-gold); }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 0.8rem; }
        .footer-links a { color: var(--silk-cream); text-decoration: none; transition: color 0.3s ease; cursor: pointer; }
        .footer-links a:hover { color: var(--silk-gold); }
        .newsletter-form { display: flex; gap: 0.5rem; margin-top: 1rem; }
        .newsletter-input { flex: 1; padding: 0.8rem 1.2rem; border: 1px solid var(--silk-taupe); background: rgba(255,255,255,0.1); color: var(--silk-cream); border-radius: 25px; font-size: 0.95rem; }
        .newsletter-input::placeholder { color: var(--silk-taupe); }
        .newsletter-btn { padding: 0.8rem 2rem; background: linear-gradient(135deg, var(--silk-deep) 0%, #8B6914 50%, var(--silk-gold) 100%); color: var(--silk-white); border: none; border-radius: 25px; cursor: pointer; font-weight: 600; transition: all 0.3s ease; position: relative; overflow: hidden; }
        .newsletter-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,175,55,0.4); }
        .footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid var(--silk-taupe); color: var(--silk-taupe); font-size: 0.9rem; }
        .modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.7); display: flex; align-items: center; justify-content: center; z-index: 2000; animation: fadeIn 0.3s ease; padding: 1rem; }
        .modal-content { background: var(--silk-white); border-radius: 20px; max-width: 600px; width: 100%; max-height: 90vh; overflow-y: auto; padding: 3rem; position: relative; animation: slideUp 0.3s ease; }
        @keyframes slideUp { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }
        .modal-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; font-size: 2rem; cursor: pointer; color: var(--silk-taupe); transition: color 0.3s ease; line-height: 1; }
        .modal-close:hover { color: var(--silk-deep); }
        .modal-title { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 600; color: var(--silk-deep); margin-bottom: 1.5rem; }
        .cart-item { display: flex; gap: 1.5rem; padding: 1.5rem; border-bottom: 1px solid var(--silk-shadow); align-items: center; }
        .cart-item-image { width: 100px; height: 100px; aspect-ratio: 1 / 1; object-fit: contain; border-radius: 10px; background: var(--silk-cream); flex-shrink: 0; }
        .cart-item-info { flex: 1; }
        .cart-item-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--silk-deep); margin-bottom: 0.5rem; }
        .cart-item-price { color: var(--silk-gold); font-size: 1.2rem; font-weight: 600; }
        .cart-item-actions { display: flex; gap: 0.5rem; align-items: center; }
        .qty-btn { width: 30px; height: 30px; border: 1px solid var(--silk-gold); background: var(--silk-white); color: var(--silk-gold); border-radius: 5px; cursor: pointer; font-weight: 600; transition: all 0.3s ease; }
        .qty-btn:hover { background: var(--silk-gold); color: var(--silk-white); }
        .cart-total { margin-top: 2rem; padding-top: 2rem; border-top: 2px solid var(--silk-gold); text-align: right; }
        .cart-total-amount { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600; color: var(--silk-gold); }
        .checkout-btn { width: 100%; padding: 1rem; background: var(--silk-gold); color: var(--silk-white); border: none; border-radius: 50px; font-size: 1.1rem; font-weight: 600; cursor: pointer; margin-top: 1.5rem; transition: all 0.3s ease; }
        .checkout-btn:hover { background: var(--silk-deep); transform: scale(1.02); }
        .checkout-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
        .form-group { margin-bottom: 1.5rem; }
        .form-label { display: block; margin-bottom: 0.5rem; color: var(--silk-deep); font-weight: 600; }
        .form-input { width: 100%; padding: 0.8rem 1.2rem; border: 1px solid var(--silk-shadow); border-radius: 10px; font-size: 1rem; transition: all 0.3s ease; font-family: 'Lato', sans-serif; background: var(--silk-white); color: var(--silk-deep); }
        .form-input:focus { outline: none; border-color: var(--silk-gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.1); }
        .form-input.error { border-color: #e74c3c; }
        .form-error { color: #e74c3c; font-size: 0.85rem; margin-top: 0.3rem; display: block; }
        .submit-btn { width: 100%; padding: 1rem; background: var(--silk-gold); color: var(--silk-white); border: none; border-radius: 50px; font-size: 1.1rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; font-family: 'Lato', sans-serif; }
        .submit-btn:hover { background: var(--silk-deep); transform: scale(1.02); }
        .submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
        .discount-section { background: var(--silk-champagne); padding: 1.5rem; border-radius: 10px; margin: 2rem 0; }
        .discount-section h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--silk-deep); margin-bottom: 0.8rem; }
        .discount-input { display: flex; gap: 1rem; margin-top: 0.5rem; }
        .discount-code { flex: 1; padding: 0.8rem 1.2rem; border: 1px solid var(--silk-shadow); border-radius: 10px; font-size: 1rem; font-family: 'Lato', sans-serif; }
        .apply-discount-btn { padding: 0.8rem 2rem; background: var(--silk-gold); color: var(--silk-white); border: none; border-radius: 10px; cursor: pointer; font-weight: 600; transition: all 0.3s ease; white-space: nowrap; }
        .apply-discount-btn:hover { background: var(--silk-deep); }
        .success-message { background: #d4edda; color: #155724; padding: 1rem 1.5rem; border-radius: 10px; margin-bottom: 1rem; border: 1px solid #c3e6cb; font-weight: 600; }
        .error-message { background: #f8d7da; color: #721c24; padding: 1rem 1.5rem; border-radius: 10px; margin-bottom: 1rem; border: 1px solid #f5c6cb; }
        .empty-cart { text-align: center; padding: 3rem 0; color: var(--silk-taupe); }
        .empty-cart p { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; }
        /* ══════════════════════════════════════
           WISHLIST HEART
        ══════════════════════════════════════ */
        .wishlist-btn {
            position: static;
            width: 36px; height: 36px;
            background: rgba(255,255,255,0.92);
            border: none; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 1rem; cursor: pointer; z-index: 11;
            box-shadow: 0 2px 10px rgba(0,0,0,0.12);
            transition: all 0.22s ease;
        }
        .wishlist-btn:hover { transform: scale(1.15); box-shadow: 0 4px 14px rgba(0,0,0,0.18); }
        .wishlist-btn.active { background: #fff0f0; }
        .wishlist-btn.active span { filter: none; }
        .wishlist-btn span { transition: all 0.22s; filter: grayscale(0.4); }
        .wishlist-badge {
            position: absolute; top: -6px; right: -6px;
            background: #e74c3c; color: white;
            border-radius: 50%; width: 16px; height: 16px;
            font-size: 0.6rem; font-weight: 700;
            display: flex; align-items: center; justify-content: center;
        }
        /* Wishlist modal */
        .wishlist-empty { text-align: center; padding: 3rem 1rem; color: var(--silk-taupe); }
        .wishlist-empty-icon { font-size: 3.5rem; margin-bottom: 1rem; }
        .wishlist-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; }
        .wishlist-card {
            background: var(--silk-cream); border-radius: 14px; overflow: hidden;
            border: 1px solid rgba(212,175,55,0.15);
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .wishlist-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px var(--silk-shadow); }
        .wishlist-card-img { width: 100%; height: 130px; aspect-ratio: 1 / 1; object-fit: contain; background: white; }
        .wishlist-card-body { padding: 0.75rem; }
        .wishlist-card-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 600; color: var(--silk-deep); margin-bottom: 0.3rem; }
        .wishlist-card-price { color: var(--silk-gold); font-size: 0.88rem; font-weight: 600; margin-bottom: 0.6rem; }
        .wishlist-card-actions { display: flex; gap: 0.5rem; }
        .wishlist-add-btn { flex: 1; padding: 0.4rem; background: var(--silk-gold); color: white; border: none; border-radius: 8px; font-size: 0.75rem; font-weight: 700; cursor: pointer; transition: background 0.2s; }
        .wishlist-add-btn:hover { background: var(--silk-deep); }
        .wishlist-remove-btn { padding: 0.4rem 0.6rem; background: rgba(192,57,43,0.08); color: #c0392b; border: 1px solid rgba(192,57,43,0.2); border-radius: 8px; font-size: 0.75rem; cursor: pointer; transition: all 0.2s; }
        .wishlist-remove-btn:hover { background: #c0392b; color: white; }

        /* ══════════════════════════════════════
           STACKED TOASTS
        ══════════════════════════════════════ */
        .toast-stack {
            position: fixed; bottom: 1.5rem; right: 1.5rem;
            display: flex; flex-direction: column-reverse; gap: 0.6rem;
            z-index: 9999; pointer-events: none;
        }
        .toast {
            pointer-events: all;
            padding: 0.9rem 1.4rem;
            border-radius: 12px;
            font-weight: 600; font-size: 0.92rem;
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
            animation: toastSlide 0.3s ease-out;
            display: flex; align-items: center; gap: 0.6rem;
            max-width: 320px;
        }
        @keyframes toastSlide { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
        .toast.success { background: linear-gradient(135deg, #1a3a1a, #2d5a2d); color: #a8f0a8; border-left: 3px solid #4cd47a; }
        .toast.error { background: linear-gradient(135deg, #3a1a1a, #5a2d2d); color: #f0a8a8; border-left: 3px solid #e74c3c; }
        .toast.info { background: linear-gradient(135deg, #1a2a3a, #2d4a5a); color: #a8d0f0; border-left: 3px solid #4facfe; }

        /* ══════════════════════════════════════
           FLY TO CART ANIMATION
        ══════════════════════════════════════ */
        .fly-particle {
            position: fixed;
            width: 12px; height: 12px;
            background: var(--silk-gold);
            border-radius: 50%;
            pointer-events: none;
            z-index: 99999;
            box-shadow: 0 0 8px rgba(212,175,55,0.8);
            transition: none;
        }

        /* ══════════════════════════════════════
           CHECKOUT STEPPER
        ══════════════════════════════════════ */
        .checkout-stepper {
            display: flex; align-items: center; justify-content: center;
            gap: 0; margin-bottom: 2rem; padding: 0 1rem;
        }
        .checkout-step {
            display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
            flex: 1; position: relative;
        }
        .checkout-step-circle {
            width: 34px; height: 34px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 0.85rem; font-weight: 700;
            border: 2px solid var(--silk-shadow);
            background: var(--silk-white); color: var(--silk-taupe);
            transition: all 0.3s ease; z-index: 1; position: relative;
        }
        .checkout-step.active .checkout-step-circle {
            background: var(--silk-gold); color: white; border-color: var(--silk-gold);
            box-shadow: 0 0 0 4px rgba(212,175,55,0.2);
        }
        .checkout-step.done .checkout-step-circle {
            background: #27ae60; color: white; border-color: #27ae60;
        }
        .checkout-step-label { font-size: 0.68rem; font-weight: 600; color: var(--silk-taupe); letter-spacing: 0.5px; text-transform: uppercase; }
        .checkout-step.active .checkout-step-label { color: var(--silk-gold); }
        .checkout-step.done .checkout-step-label { color: #27ae60; }
        .checkout-step-line {
            flex: 1; height: 2px;
            background: var(--silk-shadow);
            margin-bottom: 1.2rem; /* align with circles */
            transition: background 0.3s;
        }
        .checkout-step-line.done { background: #27ae60; }

        /* Order summary in checkout */
        .checkout-layout { display: grid; grid-template-columns: 1fr 280px; gap: 1.5rem; align-items: start; }
        @media (max-width: 680px) { .checkout-layout { grid-template-columns: 1fr; } }
        .checkout-summary-box {
            background: var(--silk-cream); border-radius: 14px; padding: 1.2rem;
            border: 1px solid rgba(212,175,55,0.15);
            position: sticky; top: 1rem;
        }
        .checkout-summary-title { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; color: var(--silk-deep); margin-bottom: 1rem; padding-bottom: 0.6rem; border-bottom: 1px solid var(--silk-shadow); }
        .checkout-summary-item { display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; color: var(--silk-taupe); margin-bottom: 0.5rem; gap: 0.5rem; }
        .checkout-summary-item-name { flex: 1; }
        .checkout-summary-item-qty { color: var(--silk-gold); font-weight: 700; margin-left: 4px; }
        .checkout-summary-total { display: flex; justify-content: space-between; align-items: center; font-size: 1rem; font-weight: 700; color: var(--silk-deep); margin-top: 0.8rem; padding-top: 0.8rem; border-top: 1px solid var(--silk-shadow); }
        .checkout-summary-total-amount { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--silk-gold); }

        /* Confirmation step */
        .checkout-confirm-box { background: var(--silk-cream); border-radius: 14px; padding: 1.2rem; margin-bottom: 1rem; }
        .checkout-confirm-row { display: flex; justify-content: space-between; font-size: 0.88rem; color: var(--silk-taupe); padding: 0.35rem 0; border-bottom: 1px solid rgba(139,126,116,0.1); }
        .checkout-confirm-row:last-child { border-bottom: none; }
        .checkout-confirm-label { font-weight: 600; color: var(--silk-deep); }
        .checkout-nav-btns { display: flex; gap: 0.8rem; margin-top: 1.5rem; }
        .checkout-back-btn { flex: 1; padding: 0.85rem; background: var(--silk-cream); border: 1px solid var(--silk-shadow); border-radius: 50px; cursor: pointer; font-weight: 600; color: var(--silk-taupe); font-family: 'Lato', sans-serif; transition: all 0.2s; }
        .checkout-back-btn:hover { background: white; color: var(--silk-deep); }
        .checkout-next-btn { flex: 2; padding: 0.85rem; background: linear-gradient(135deg, #8B6914, var(--silk-gold)); color: white; border: none; border-radius: 50px; cursor: pointer; font-weight: 700; font-family: 'Lato', sans-serif; font-size: 0.95rem; transition: all 0.2s; box-shadow: 0 4px 14px rgba(212,175,55,0.35); }
        .checkout-next-btn:hover { box-shadow: 0 6px 20px rgba(212,175,55,0.5); transform: translateY(-1px); }
        .checkout-next-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

        /* Success screen */
        .checkout-success {
            text-align: center; padding: 2rem 1rem;
        }
        .checkout-success-icon {
            width: 72px; height: 72px; border-radius: 50%;
            background: linear-gradient(135deg, #27ae60, #2ecc71);
            display: flex; align-items: center; justify-content: center;
            font-size: 2rem; margin: 0 auto 1.2rem;
            box-shadow: 0 8px 24px rgba(39,174,96,0.35);
            animation: popIn 0.5s cubic-bezier(0.175,0.885,0.32,1.275) both;
        }
        @keyframes popIn { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
        .checkout-success h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--silk-deep); margin-bottom: 0.5rem; }
        .checkout-success p { color: var(--silk-taupe); line-height: 1.7; font-size: 0.95rem; }

        /* Empty cart CTA */
        .empty-cart-cta { margin-top: 1.2rem; display: inline-block; padding: 0.7rem 2rem; background: var(--silk-gold); color: white; border: none; border-radius: 30px; font-weight: 700; font-size: 0.9rem; cursor: pointer; font-family: 'Lato', sans-serif; transition: all 0.22s; }
        .empty-cart-cta:hover { background: var(--silk-deep); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(212,175,55,0.35); }

        /* ══════════════════════════════════════
           DELIVERY OPTIONS — Radio Cards
        ══════════════════════════════════════ */
        .delivery-section {
            margin-top: 1.4rem;
        }
        .delivery-section-label {
            font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
            text-transform: uppercase; color: var(--silk-gold);
            display: flex; align-items: center; gap: 0.6rem;
            margin-bottom: 0.75rem;
        }
        .delivery-section-label::after {
            content: ''; flex: 1; height: 1px;
            background: linear-gradient(to right, rgba(212,175,55,0.35), transparent);
        }
        .delivery-options-grid {
            display: flex; flex-direction: column; gap: 0.5rem;
        }
        .delivery-option {
            display: flex; align-items: center; gap: 0.9rem;
            padding: 0.75rem 1rem;
            border-radius: 12px;
            border: 1.5px solid rgba(139,126,116,0.2);
            background: var(--silk-white);
            cursor: pointer;
            transition: all 0.22s ease;
            position: relative;
            overflow: hidden;
        }
        .delivery-option::before {
            content: '';
            position: absolute; inset: 0;
            background: linear-gradient(135deg, rgba(212,175,55,0.0), rgba(212,175,55,0.05));
            opacity: 0; transition: opacity 0.22s;
        }
        .delivery-option:hover {
            border-color: rgba(212,175,55,0.5);
            box-shadow: 0 3px 12px rgba(212,175,55,0.12);
            transform: translateX(3px);
        }
        .delivery-option:hover::before { opacity: 1; }
        .delivery-option.selected {
            border-color: var(--silk-gold);
            background: linear-gradient(135deg, #fffdf5, rgba(212,175,55,0.08));
            box-shadow: 0 4px 16px rgba(212,175,55,0.18);
        }
        .delivery-option.selected::before { opacity: 1; }
        .delivery-option-radio {
            width: 20px; height: 20px; border-radius: 50%;
            border: 2px solid rgba(139,126,116,0.35);
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0; transition: all 0.22s;
        }
        .delivery-option.selected .delivery-option-radio {
            border-color: var(--silk-gold);
            background: var(--silk-gold);
        }
        .delivery-option-radio-dot {
            width: 8px; height: 8px; border-radius: 50%;
            background: white; transform: scale(0); transition: transform 0.22s;
        }
        .delivery-option.selected .delivery-option-radio-dot { transform: scale(1); }
        .delivery-option-icon {
            font-size: 1.1rem; flex-shrink: 0; width: 32px;
            text-align: center; position: relative; z-index: 1;
        }
        .delivery-option-body {
            flex: 1; position: relative; z-index: 1;
        }
        .delivery-option-title {
            font-size: 0.88rem; font-weight: 700;
            color: var(--silk-deep); line-height: 1.2;
        }
        .delivery-option-subtitle {
            font-size: 0.75rem; color: var(--silk-taupe);
            margin-top: 0.15rem; line-height: 1.3;
        }
        .delivery-option-price {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.05rem; font-weight: 700;
            color: var(--silk-gold); flex-shrink: 0;
            position: relative; z-index: 1;
        }
        .delivery-option-price.free { color: #27ae60; }
        .delivery-error {
            color: #e74c3c; font-size: 0.8rem; font-weight: 600;
            margin-top: 0.4rem; display: flex; align-items: center; gap: 0.3rem;
        }
        /* Summary delivery row */
        .checkout-summary-delivery {
            display: flex; justify-content: space-between; align-items: center;
            font-size: 0.82rem; color: var(--silk-taupe); margin-bottom: 0.5rem; gap: 0.5rem;
            padding-top: 0.5rem; border-top: 1px dashed rgba(139,126,116,0.2);
        }
        .checkout-summary-delivery-name { flex: 1; font-size: 0.78rem; }
        .checkout-summary-grand-total {
            display: flex; justify-content: space-between; align-items: center;
            font-size: 1rem; font-weight: 700; color: var(--silk-deep);
            margin-top: 0.6rem; padding-top: 0.6rem; border-top: 2px solid var(--silk-gold);
        }
        .checkout-summary-grand-amount {
            font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; color: var(--silk-gold);
        }
        @media (max-width: 480px) {
            .delivery-option { padding: 0.6rem 0.75rem; gap: 0.6rem; }
            .delivery-option-title { font-size: 0.82rem; }
            .delivery-option-price { font-size: 0.95rem; }
        }

