
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Roboto', 'Arial', sans-serif;
            background: linear-gradient(170deg, #FFFFFF 0%, #FDFBF5 30%, #FAF4E4 65%, #F3E9CE 100%);
            background-attachment: fixed;
            color: #2A2A2A;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            min-height: 100vh;
        }
        body::before {
            content: '';
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: radial-gradient(ellipse at 15% 25%, rgba(201,168,76,0.10) 0%, transparent 55%),
                        radial-gradient(ellipse at 85% 75%, rgba(232,213,163,0.10) 0%, transparent 55%),
                        radial-gradient(ellipse at 50% 50%, rgba(245,237,214,0.12) 0%, transparent 65%);
            pointer-events: none;
            z-index: -1;
        }
        ::-webkit-scrollbar { width: 7px; }
        ::-webkit-scrollbar-track { background: #F3EDDB; }
        ::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #C9A84C, #E8D5A3); border-radius: 8px; }
        #loading-screen {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(160deg, #FFFFFF, #F5EDD6);
            display: flex; flex-direction: column; justify-content: center; align-items: center;
            z-index: 9999; transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
        }
        #loading-screen.hidden { opacity: 0; visibility: hidden; }
        .luxury-spinner {
            width: 55px; height: 55px;
            border: 3px solid rgba(201,168,76,0.2);
            border-top-color: #C9A84C; border-right-color: #E8D5A3;
            border-radius: 50%;
            animation: luxurySpin 1.3s linear infinite;
            margin-bottom: 18px;
            box-shadow: 0 0 20px rgba(201,168,76,0.2);
        }
        @keyframes luxurySpin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
        .loading-text {
            font-family: 'Oswald', sans-serif; font-size: 1.4rem; letter-spacing: 0.3em;
            background: linear-gradient(160deg, #C9A84C, #E8D5A3, #F5EDD6);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
            text-transform: uppercase;
        }
        #navbar {
            position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
            padding: 1.1rem 2rem; transition: all 0.4s ease;
            background: rgba(255,255,255,0.92); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(201,168,76,0.2);
        }
        #navbar.scrolled {
            background: rgba(255,255,255,0.97); padding: 0.75rem 2rem;
            box-shadow: 0 3px 20px rgba(0,0,0,0.08); border-bottom: 1px solid rgba(201,168,76,0.35);
        }
        .nav-container { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
        .nav-logo {
            font-family: 'Oswald', sans-serif; font-size: 1.7rem; font-weight: 700; letter-spacing: 0.1em;
            background: linear-gradient(160deg, #C9A84C, #E8D5A3, #F5EDD6);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
            text-decoration: none; transition: all 0.3s ease; text-transform: uppercase;
            filter: drop-shadow(0 1px 4px rgba(201,168,76,0.2));
        }
        .nav-logo:hover { filter: drop-shadow(0 2px 10px rgba(201,168,76,0.4)); transform: scale(1.02); }
        .nav-links { display: flex; gap: 2.5rem; align-items: center; list-style: none; }
        .nav-links a {
            color: #6B5B2A; text-decoration: none; font-size: 0.82rem; font-weight: 500;
            letter-spacing: 0.12em; text-transform: uppercase; transition: all 0.3s ease;
            position: relative; padding-bottom: 6px; font-family: 'Oswald', sans-serif;
        }
        .nav-links a::after {
            content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
            background: linear-gradient(90deg, #C9A84C, #E8D5A3);
            transition: width 0.4s ease; border-radius: 1px;
        }
        .nav-links a:hover { color: #B8942E; }
        .nav-links a:hover::after { width: 100%; }
        .cart-btn {
            position: relative; cursor: pointer; transition: all 0.3s ease;
            width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
            border-radius: 50%; background: rgba(201,168,76,0.08); border: none;
        }
        .cart-btn:hover { background: rgba(201,168,76,0.15); box-shadow: 0 0 18px rgba(201,168,76,0.2); transform: scale(1.04); }
        .cart-count {
            position: absolute; top: -5px; right: -5px;
            background: linear-gradient(160deg, #C9A84C, #E8D5A3); color: #1A1A1A;
            font-size: 0.68rem; font-weight: 800; width: 21px; height: 21px;
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            border: 2px solid #FFFFFF; box-shadow: 0 1px 5px rgba(0,0,0,0.2);
        }
        .hamburger { display: none; flex-direction: column; cursor: pointer; gap: 5px; z-index: 1001; background: none; border: none; padding: 10px; }
        .hamburger span { width: 25px; height: 3px; background: linear-gradient(90deg, #C9A84C, #E8D5A3); transition: all 0.3s ease; display: block; border-radius: 2px; }
        .page { display: none; }
        .page.active { display: block; }
        .hero-section { position: relative; height: 100vh; width: 100%; overflow: hidden; display: flex; align-items: center; justify-content: center; }
        .hero-bg-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
        .hero-overlay {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,254,248,0.88) 35%, rgba(250,244,228,0.90) 65%, rgba(243,233,206,0.96) 100%);
            z-index: 1;
        }
        .hero-content { position: relative; z-index: 2; text-align: center; padding: 2rem; }
        .hero-brand {
            font-family: 'Oswald', sans-serif; font-size: 2.2rem; font-weight: 700; letter-spacing: 0.3em;
            background: linear-gradient(180deg, #FFFFFF 0%, #F5EDD6 20%, #E8D5A3 50%, #F5EDD6 75%, #FFFFFF 100%);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
            text-transform: uppercase; margin-bottom: 1rem;
            filter: drop-shadow(0 0 20px rgba(201,168,76,0.5));
        }
        .hero-subtitle {
            font-family: 'Oswald', sans-serif; font-size: 0.95rem; letter-spacing: 0.4em;
            background: linear-gradient(160deg, #C9A84C, #E8D5A3);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
            text-transform: uppercase; margin-bottom: 2rem; font-weight: 500;
        }
        .hero-title {
            font-family: 'Oswald', sans-serif; font-size: 3.8rem; font-weight: 700;
            color: #2A2A2A; letter-spacing: 0.04em; margin-bottom: 1.2rem;
            line-height: 1.2; text-transform: uppercase; text-shadow: 0 2px 20px rgba(255,255,255,0.8);
        }
        .hero-title span {
            background: linear-gradient(180deg, #FFFFFF 0%, #F5EDD6 20%, #E8D5A3 50%, #F5EDD6 75%, #FFFFFF 100%);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
            filter: drop-shadow(0 0 25px rgba(201,168,76,0.55));
        }
        .hero-desc { font-size: 1rem; color: #6B6252; margin-bottom: 2.5rem; max-width: 550px; margin-left: auto; margin-right: auto; text-shadow: none; line-height: 1.7; }
        .luxury-btn {
            display: inline-block; padding: 1rem 3rem; font-family: 'Oswald', sans-serif;
            font-size: 0.88rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
            color: #2A2A2A; background: linear-gradient(160deg, #D4B96A 0%, #E8D5A3 40%, #F5EDD6 75%, #E8D5A3 100%);
            border: none; cursor: pointer; text-decoration: none;
            transition: all 0.4s cubic-bezier(0.25,0.8,0.25,1.15);
            position: relative; overflow: hidden; border-radius: 6px;
            box-shadow: 0 3px 12px rgba(0,0,0,0.25);
        }
        .luxury-btn::before {
            content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
            background: linear-gradient(45deg, transparent 35%, rgba(255,255,255,0.15) 45%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.15) 55%, transparent 65%);
            transition: all 0.9s ease; transform: translateX(-100%) rotate(25deg);
        }
        .luxury-btn:hover::before { transform: translateX(100%) rotate(25deg); }
        .luxury-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.35); background: linear-gradient(160deg, #DEC885 0%, #EDDDB0 40%, #F8F2E2 75%, #EDDDB0 100%); color: #1F1F1F; }
        .luxury-btn:active { transform: translateY(0px); box-shadow: 0 2px 8px rgba(0,0,0,0.3); transition: all 0.1s ease; }
        .section-padding { padding: 5rem 2rem; }
        .section-title {
            font-family: 'Oswald', sans-serif; font-size: 2.6rem; font-weight: 700;
            background: linear-gradient(180deg, #2A2A2A, #8B7320);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
            text-align: center; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.05em;
        }
        .section-subtitle {
            font-family: 'Oswald', sans-serif; font-size: 0.85rem; letter-spacing: 0.3em;
            background: linear-gradient(160deg, #C9A84C, #E8D5A3);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
            text-transform: uppercase; text-align: center; margin-bottom: 2.5rem;
        }
        .section-line { width: 90px; height: 2px; background: linear-gradient(90deg, transparent, #C9A84C, #E8D5A3, #C9A84C, transparent); margin: 1rem auto 2.5rem; border-radius: 1px; }
        .products-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.8rem; padding: 1rem 0; }
        .product-card {
            background: linear-gradient(165deg, #F8F2E2 0%, #F5EDD6 15%, #FFFEF8 50%, #F8F3E4 85%, #F0E6CC 100%);
            border: none; border-radius: 10px; overflow: hidden; transition: all 0.4s ease;
            cursor: pointer; position: relative; box-shadow: 0 3px 15px rgba(0,0,0,0.2);
        }
        .product-card:hover { transform: translateY(-8px); box-shadow: 0 18px 35px rgba(0,0,0,0.35), 0 0 30px rgba(201,168,76,0.1); }
        .product-card-badge {
            position: absolute; top: 10px; right: 10px;
            background: linear-gradient(160deg, #C9A84C, #D4B96A); color: #FFFFFF;
            padding: 0.25rem 0.8rem; font-size: 0.62rem; font-weight: 700;
            text-transform: uppercase; z-index: 2; font-family: 'Oswald', sans-serif;
            letter-spacing: 0.1em; border-radius: 4px; box-shadow: 0 1px 4px rgba(0,0,0,0.2);
        }
        .product-card-image { position: relative; overflow: hidden; aspect-ratio: 1/1; background: linear-gradient(150deg, #F0E6CC, #F8F3E4); display: flex; align-items: center; justify-content: center; }
        .product-card-image .product-emoji { font-size: 5rem; transition: transform 0.8s ease; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1)); }
        .product-card:hover .product-card-image .product-emoji { transform: scale(1.12); }
        .product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; display: block; }
        .product-card:hover .product-card-image img { transform: scale(1.06); }
        .product-card-info { padding: 1.3rem 1.5rem; background: linear-gradient(180deg, #FFFEF8, #F8F3E4); }
        .product-card-category { font-size: 0.65rem; letter-spacing: 0.18em; color: #B8942E; text-transform: uppercase; margin-bottom: 0.4rem; font-family: 'Oswald', sans-serif; font-weight: 500; }
        .product-card-name { font-family: 'Oswald', sans-serif; font-size: 1.15rem; font-weight: 600; color: #2A2A2A; margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.03em; line-height: 1.3; }
        .product-card-price { font-family: 'Oswald', sans-serif; font-size: 1.3rem; font-weight: 700; color: #8B7320; }
        .product-card-stock { font-size: 0.7rem; color: #8A8A8A; margin-top: 0.3rem; font-weight: 500; }
        .product-card-stock.low { color: #C0392B; }
        .product-page { padding-top: 100px; min-height: 100vh; background: transparent; }
        .product-page-container { max-width: 1200px; margin: 0 auto; padding: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
        .product-page-image { background: linear-gradient(165deg, #F8F2E2, #F5EDD6, #FFFEF8, #F8F3E4); border-radius: 16px; overflow: hidden; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; box-shadow: 0 20px 50px rgba(0,0,0,0.3); position: sticky; top: 120px; }
        .product-page-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .product-page-image .product-emoji-large { font-size: 12rem; filter: drop-shadow(0 4px 20px rgba(0,0,0,0.15)); }
        .product-page-info { padding: 1rem 0; }
        .product-page-breadcrumb { font-size: 0.75rem; color: #9A9078; margin-bottom: 1.5rem; letter-spacing: 0.1em; }
        .product-page-breadcrumb a { color: #C9A84C; text-decoration: none; transition: color 0.3s; }
        .product-page-breadcrumb a:hover { color: #E8D5A3; }
        .product-page-category { font-family: 'Oswald', sans-serif; font-size: 0.75rem; letter-spacing: 0.3em; color: #B8942E; text-transform: uppercase; margin-bottom: 0.8rem; font-weight: 500; }
        .product-page-name { font-family: 'Oswald', sans-serif; font-size: 2.8rem; font-weight: 700; color: #2A2A2A; margin-bottom: 1rem; text-transform: uppercase; line-height: 1.2; letter-spacing: 0.03em; }
        .product-page-price { font-family: 'Oswald', sans-serif; font-size: 2.5rem; font-weight: 700; background: linear-gradient(160deg, #D4B96A, #E8D5A3, #F5EDD6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 1.5rem; }
        .product-page-stock { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1.2rem; border-radius: 50px; font-size: 0.8rem; font-weight: 600; margin-bottom: 1.1rem; font-family: 'Oswald', sans-serif; letter-spacing: 0.05em; }
        .product-page-stock.in-stock { background: rgba(107,142,90,0.15); color: #8BB86A; }
        .product-page-stock.low-stock { background: rgba(201,168,76,0.15); color: #D4B96A; }
        .product-page-stock.out-stock { background: rgba(192,57,43,0.15); color: #E57373; }
        .product-page-description { font-family: 'Roboto', sans-serif; font-size: 0.95rem; line-height: 1.9; color: #5A5A5A; margin-bottom: 2.5rem; padding: 1.5rem; background: rgba(201,168,76,0.07); border-radius: 10px; border-left: 3px solid #C9A84C; }
        .product-page-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: flex-start; margin: 0 0 1.8rem; }
        .quantity-selector { display: flex; align-items: center; gap: 0; border-radius: 8px; overflow: hidden; background: rgba(201,168,76,0.10); border: 1px solid rgba(201,168,76,0.3); }
        .quantity-selector button { width: 45px; height: 50px; border: none; background: rgba(201,168,76,0.15); color: #5A4A15; font-size: 1.2rem; cursor: pointer; transition: all 0.3s; font-family: 'Oswald', sans-serif; }
        .quantity-selector button:hover { background: rgba(201,168,76,0.2); color: #E8D5A3; }
        .quantity-selector input { width: 60px; height: 50px; border: none; background: rgba(255,255,255,0.9); color: #2A2A2A; text-align: center; font-size: 1.1rem; font-weight: 600; font-family: 'Oswald', sans-serif; }
        .product-page-back { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 2rem; color: #AAA; text-decoration: none; font-size: 0.85rem; transition: color 0.3s; font-family: 'Oswald', sans-serif; letter-spacing: 0.1em; text-transform: uppercase; }
        .product-page-back:hover { color: #B8942E; }
        #cart-sidebar { position: fixed; top: 0; right: -420px; width: 420px; height: 100%; background: linear-gradient(180deg, #FFFFFF, #FDFBF5, #F6EFDC); z-index: 3000; transition: right 0.5s cubic-bezier(0.77,0,0.175,1); display: flex; flex-direction: column; border-left: 1px solid rgba(201,168,76,0.25); box-shadow: -10px 0 40px rgba(0,0,0,0.5); }
        #cart-sidebar.open { right: 0; }
        #cart-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(60,50,20,0.35); z-index: 2999; display: none; backdrop-filter: blur(8px); }
        #cart-overlay.active { display: block; }
        .cart-header { padding: 1.8rem 1.5rem; border-bottom: 1px solid rgba(201,168,76,0.2); display: flex; justify-content: space-between; align-items: center; background: rgba(201,168,76,0.05); }
        .cart-header-left { display: flex; align-items: center; gap: 0.8rem; }
        .cart-icon-circle { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(160deg, #C9A84C, #D4B96A); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
        .cart-title { font-family: 'Oswald', sans-serif; font-size: 1.1rem; background: linear-gradient(160deg, #C9A84C, #E8D5A3); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-transform: uppercase; letter-spacing: 0.08em; }
        .cart-close-btn { background: rgba(0,0,0,0.05); border: none; color: #8A8A8A; font-size: 1.2rem; cursor: pointer; transition: all 0.3s ease; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
        .cart-close-btn:hover { background: rgba(201,168,76,0.15); color: #E8D5A3; }
        .cart-items { flex: 1; overflow-y: auto; padding: 1.2rem; }
        .cart-empty-state { text-align: center; padding: 3rem 2rem; color: #666; }
        .cart-empty-icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.3; }
        .cart-empty-text { font-family: 'Oswald', sans-serif; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: #555; }
        .cart-item { display: flex; gap: 1rem; padding: 1rem; margin-bottom: 0.8rem; background: #FFFFFF; border-radius: 12px; border: 1px solid rgba(201,168,76,0.2); align-items: center; transition: all 0.3s ease; }
        .cart-item:hover { background: rgba(201,168,76,0.05); border-color: rgba(201,168,76,0.2); }
        .cart-item-image-wrapper { width: 55px; height: 55px; border-radius: 10px; overflow: hidden; flex-shrink: 0; background: rgba(201,168,76,0.08); display: flex; align-items: center; justify-content: center; }
        .cart-item-emoji { font-size: 1.8rem; }
        .cart-item-image { width: 55px; height: 55px; object-fit: cover; flex-shrink: 0; border-radius: 10px; display: block; }
        .cart-item-info { flex: 1; min-width: 0; }
        .cart-item-name { font-family: 'Oswald', sans-serif; font-size: 0.85rem; color: #3A3A3A; margin-bottom: 0.3rem; text-transform: uppercase; font-weight: 500; letter-spacing: 0.03em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .cart-item-price { font-family: 'Oswald', sans-serif; font-size: 0.9rem; background: linear-gradient(160deg, #C9A84C, #D4B96A); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 600; }
        .cart-item-remove { background: rgba(0,0,0,0.05); border: none; color: #8A8A8A; cursor: pointer; font-size: 1rem; transition: all 0.3s ease; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
        .cart-item-remove:hover { background: rgba(229,115,115,0.15); color: #E57373; }
        .cart-item-quantity { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.5rem; }
        .qty-btn { width: 26px; height: 26px; border: 1px solid rgba(201,168,76,0.3); background: rgba(201,168,76,0.08); color: #C9A84C; cursor: pointer; font-size: 0.9rem; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; border-radius: 6px; }
        .qty-btn:hover { background: rgba(201,168,76,0.2); color: #E8D5A3; border-color: #E8D5A3; }
        .qty-value { font-family: 'Oswald', sans-serif; font-size: 0.9rem; color: #3A3A3A; min-width: 20px; text-align: center; font-weight: 600; }
        .cart-footer { padding: 1.5rem; border-top: 1px solid rgba(201,168,76,0.2); background: rgba(201,168,76,0.03); }
        .cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; font-family: 'Oswald', sans-serif; padding: 0 0.5rem; }
        .cart-total-label { color: #888; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; }
        .cart-total-amount { background: linear-gradient(160deg, #C9A84C, #E8D5A3); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-size: 1.4rem; font-weight: 700; }
        .cart-footer .luxury-btn { width: 100%; padding: 0.9rem; font-size: 0.8rem; letter-spacing: 0.2em; border-radius: 8px; }
        .checkout-container { max-width: 800px; margin: 0 auto; margin-top: 2rem; }
        .checkout-card { background: linear-gradient(165deg, #FFFEF8, #FDFBF5, #F8F3E4, #F5EDD6); border: none; border-radius: 20px; padding: 3rem; box-shadow: 0 20px 50px rgba(0,0,0,0.25), 0 0 0 1px rgba(201,168,76,0.1), inset 0 1px 0 rgba(255,255,255,0.8); position: relative; overflow: hidden; }
        .checkout-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, #C9A84C, #E8D5A3, #F5EDD6, #E8D5A3, #C9A84C); border-radius: 20px 20px 0 0; }
        .checkout-header { text-align: center; margin-bottom: 2.5rem; }
        .checkout-header-title { font-family: 'Playfair Display', serif; font-size: 2rem; color: #5A4A15; margin-bottom: 0.3rem; font-weight: 700; letter-spacing: 0.02em; }
        .checkout-header-subtitle { font-family: 'Roboto', sans-serif; font-size: 0.9rem; color: #8A7D5A; font-style: italic; letter-spacing: 0.03em; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
        .form-group { position: relative; margin-bottom: 1.8rem; }
        .form-group label { display: block; font-family: 'Oswald', sans-serif; font-size: 0.72rem; letter-spacing: 0.15em; color: #8B7320; text-transform: uppercase; margin-bottom: 0.5rem; font-weight: 600; }
        .form-group input, .form-group select { width: 100%; padding: 1rem 1.2rem; background: rgba(255,255,255,0.6); border: 1.5px solid rgba(201,168,76,0.2); border-radius: 12px; color: #2A2A2A; font-family: 'Roboto', sans-serif; font-size: 0.95rem; transition: all 0.4s ease; outline: none; }
        .form-group input:focus, .form-group select:focus { border-color: #C9A84C; background: rgba(255,255,255,0.95); box-shadow: 0 0 0 4px rgba(201,168,76,0.08), 0 4px 15px rgba(0,0,0,0.05); transform: translateY(-1px); }
        .form-group input.error, .form-group select.error { border-color: #E57373; background: rgba(229,115,115,0.05); }
        .field-error-message { color: #E57373; font-size: 0.72rem; margin-top: 0.3rem; display: none; font-weight: 500; }
        .field-error-message.show { display: block; }
        .checkout-submit-wrapper { text-align: center; margin-top: 2rem; }
        .checkout-submit-wrapper .luxury-btn { padding: 1.2rem 4rem; font-size: 1rem; letter-spacing: 0.25em; border-radius: 50px; box-shadow: 0 8px 25px rgba(0,0,0,0.2); }
        .checkout-benefits { display: flex; justify-content: center; gap: 2rem; margin-top: 1.5rem; flex-wrap: wrap; }
        .checkout-benefit { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: #8A7D5A; font-weight: 500; }
        .checkout-benefit-icon { width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; background: linear-gradient(160deg, #C9A84C, #D4B96A); color: #FFF; border-radius: 50%; font-size: 0.65rem; font-weight: 700; }
        .toast { position: fixed; bottom: 30px; right: 30px; background: linear-gradient(160deg, #FFFFFF, #FDFBF5); border: 1px solid rgba(201,168,76,0.4); border-radius: 12px; padding: 1rem 1.5rem; z-index: 5000; font-family: 'Oswald', sans-serif; font-size: 0.82rem; letter-spacing: 0.08em; color: #8B7320; transform: translateX(120%); transition: transform 0.5s cubic-bezier(0.77,0,0.175,1); display: flex; align-items: center; gap: 0.8rem; text-transform: uppercase; box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
        .toast.show { transform: translateX(0); }
        .toast-icon { width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(160deg, #C9A84C, #D4B96A); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: #1A1A1A; }
        #admin-panel { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(252,250,244,0.98); z-index: 9000; display: none; overflow-y: auto; backdrop-filter: blur(8px); }
        #admin-panel.active { display: block; }
        .admin-container { max-width: 1300px; margin: 0 auto; padding: 2rem; }
        .admin-header { background: linear-gradient(180deg, #FFFFFF, #F6EFDC); border-bottom: 1px solid rgba(201,168,76,0.2); padding: 0.9rem 2rem; display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; border-radius: 0 0 10px 10px; }
        .admin-logo { font-family: 'Oswald', sans-serif; font-size: 1.2rem; background: linear-gradient(160deg, #C9A84C, #E8D5A3); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-transform: uppercase; letter-spacing: 0.08em; }
        .admin-nav { display: flex; gap: 0.6rem; flex-wrap: wrap; }
        .admin-nav button { background: rgba(201,168,76,0.07); border: none; border-radius: 6px; color: #7A6B45; cursor: pointer; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; font-family: 'Oswald', sans-serif; transition: all 0.3s; padding: 0.5rem 1.2rem; }
        .admin-nav button:hover, .admin-nav button.active { background: rgba(201,168,76,0.18); color: #8B7320; }
        .admin-nav button.active { background: linear-gradient(160deg, #C9A84C, #D4B96A); color: #1A1A1A; font-weight: 600; box-shadow: 0 2px 8px rgba(0,0,0,0.3); }
        .admin-btn { background: transparent; border: none; color: #C9A84C; padding: 0.5rem 1.2rem; cursor: pointer; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; font-family: 'Oswald', sans-serif; transition: all 0.3s; border-radius: 6px; }
        .admin-btn:hover { background: rgba(201,168,76,0.12); color: #8B7320; }
        .admin-btn-gold { background: linear-gradient(160deg, #C9A84C, #D4B96A); color: #1A1A1A; border: none; border-radius: 6px; padding: 0.55rem 1.4rem; cursor: pointer; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; font-family: 'Oswald', sans-serif; transition: all 0.3s; box-shadow: 0 2px 8px rgba(0,0,0,0.25); }
        .admin-btn-gold:hover { box-shadow: 0 6px 18px rgba(0,0,0,0.35); transform: translateY(-2px); }
        .admin-btn-red { background: transparent; border: none; color: #E57373; padding: 0.35rem 0.9rem; cursor: pointer; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; font-family: 'Oswald', sans-serif; transition: all 0.3s; border-radius: 4px; }
        .admin-btn-red:hover { background: rgba(229,115,115,0.12); color: #EF5350; }
        .admin-table { width: 100%; border-collapse: collapse; }
        .admin-table th { background: rgba(201,168,76,0.12); padding: 0.7rem; text-align: left; font-size: 0.65rem; letter-spacing: 0.1em; color: #C9A84C; text-transform: uppercase; font-family: 'Oswald', sans-serif; border-bottom: 1px solid rgba(201,168,76,0.2); }
        .admin-table td { padding: 0.7rem; border-bottom: 1px solid rgba(201,168,76,0.15); font-size: 0.8rem; color: #3A3A3A; }
        .admin-section { display: none; }
        .admin-section.active { display: block; }
        .admin-form input, .admin-form textarea, .admin-form select { width: 100%; padding: 0.65rem 0.9rem; background: #FFFFFF; border: 1px solid rgba(201,168,76,0.25); border-bottom: 2px solid rgba(201,168,76,0.4); border-radius: 6px 6px 0 0; color: #2A2A2A; font-family: 'Roboto', sans-serif; font-size: 0.85rem; transition: all 0.3s; outline: none; margin-bottom: 1rem; }
        .admin-form input:focus, .admin-form textarea:focus, .admin-form select:focus { border-bottom-color: #C9A84C; background: rgba(201,168,76,0.04); }
        .admin-form label { display: block; color: #C9A84C; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.35rem; font-family: 'Oswald', sans-serif; }
        .admin-form select { color: #000000 !important; background: rgba(255,255,255,0.9) !important; }
        .admin-form select option { color: #000000 !important; background: #FFFFFF !important; }
        #admin-login { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(252,250,244,0.98); z-index: 9500; display: none; align-items: center; justify-content: center; backdrop-filter: blur(8px); }
        #admin-login.active { display: flex; }
        .admin-login-box { background: linear-gradient(170deg, #FFFFFF, #F8F3E4); border: 1px solid rgba(201,168,76,0.3); border-radius: 14px; padding: 2.8rem; width: 90%; max-width: 400px; text-align: center; box-shadow: 0 25px 60px rgba(0,0,0,0.15); }
        .admin-login-box input { width: 100%; padding: 0.95rem; background: #FFFFFF; border: 1px solid rgba(201,168,76,0.25); border-bottom: 2px solid rgba(201,168,76,0.4); border-radius: 6px 6px 0 0; color: #2A2A2A; text-align: center; letter-spacing: 0.2em; font-size: 1.05rem; outline: none; margin-bottom: 1.5rem; font-family: 'Oswald', sans-serif; transition: 0.3s; }
        .admin-login-box input:focus { border-bottom-color: #E8D5A3; background: rgba(201,168,76,0.04); }
        .admin-login-box h2 { font-family: 'Oswald', sans-serif; background: linear-gradient(160deg, #C9A84C, #E8D5A3, #F5EDD6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-size: 1.8rem; margin-bottom: 0.3rem; text-transform: uppercase; }
        .upload-area { border: 2px dashed rgba(201,168,76,0.4); border-radius: 10px; padding: 1.8rem; text-align: center; cursor: pointer; transition: all 0.3s; background: rgba(201,168,76,0.04); margin-bottom: 1rem; }
        .upload-area:hover { border-color: #C9A84C; background: rgba(201,168,76,0.04); }
        .text-gold { background: linear-gradient(160deg, #C9A84C, #E8D5A3); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        #order-recap-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); z-index: 6000; display: none; align-items: center; justify-content: center; backdrop-filter: blur(6px); }
        #order-recap-modal.active { display: flex; }
        .order-recap-card { background: linear-gradient(170deg, #FFFEF8, #FDFBF5, #F8F3E4, #F5EDD6); border-radius: 18px; padding: 2.5rem; max-width: 550px; width: 92%; text-align: center; box-shadow: 0 25px 60px rgba(0,0,0,0.5); position: relative; border: 2px solid rgba(201,168,76,0.3); max-height: 85vh; overflow-y: auto; }
        .order-recap-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, #C9A84C, #E8D5A3, #F5EDD6, #E8D5A3, #C9A84C); border-radius: 18px 18px 0 0; }
        .recap-success-icon { width: 65px; height: 65px; border-radius: 50%; background: linear-gradient(160deg, #C9A84C, #D4B96A); margin: 0 auto 1.2rem; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: #1A1A1A; box-shadow: 0 8px 25px rgba(201,168,76,0.3); }
        .recap-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: #5A4A15; margin-bottom: 0.3rem; font-weight: 700; }
        .recap-subtitle { font-family: 'Roboto', sans-serif; font-size: 0.85rem; color: #8A7D5A; font-style: italic; margin-bottom: 1.5rem; }
        .recap-store-name { font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 700; letter-spacing: 0.15em; background: linear-gradient(160deg, #C9A84C, #D4B96A, #B8942E); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-transform: uppercase; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(201,168,76,0.3); }
        .recap-client-name { font-family: 'Oswald', sans-serif; font-size: 1rem; color: #5A4A15; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.3rem; }
        .recap-order-number { font-family: 'Oswald', sans-serif; font-size: 0.8rem; color: #8B7320; letter-spacing: 0.1em; margin-bottom: 1.5rem; }
        .recap-products-title { font-family: 'Oswald', sans-serif; font-size: 0.75rem; letter-spacing: 0.15em; color: #8B7320; text-transform: uppercase; margin-bottom: 0.8rem; text-align: left; font-weight: 600; }
        .recap-products-list { text-align: left; margin-bottom: 1.5rem; padding: 1rem; background: rgba(201,168,76,0.08); border-radius: 10px; }
        .recap-product-item { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; border-bottom: 1px dashed rgba(201,168,76,0.2); color: #2A2A2A; font-size: 0.85rem; }
        .recap-product-item:last-child { border-bottom: none; }
        .recap-product-name { font-weight: 500; color: #3A3A3A; }
        .recap-product-qty { color: #8B7320; font-weight: 600; font-size: 0.75rem; }
        .recap-product-price { font-family: 'Oswald', sans-serif; color: #5A4A15; font-weight: 700; }
        .recap-total-line { display: flex; justify-content: space-between; align-items: center; padding: 0.8rem 0; margin-bottom: 1.5rem; border-top: 2px solid rgba(201,168,76,0.4); }
        .recap-total-label { font-family: 'Oswald', sans-serif; font-size: 0.9rem; letter-spacing: 0.1em; color: #5A4A15; text-transform: uppercase; font-weight: 700; }
        .recap-total-amount { font-family: 'Oswald', sans-serif; font-size: 1.5rem; font-weight: 700; background: linear-gradient(160deg, #C9A84C, #B8942E); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .recap-delivery-info { text-align: left; background: rgba(201,168,76,0.05); padding: 1rem; border-radius: 10px; margin-bottom: 1.5rem; font-size: 0.8rem; color: #5A4A15; line-height: 1.6; }
        .recap-delivery-info strong { color: #8B7320; font-family: 'Oswald', sans-serif; letter-spacing: 0.05em; }
        .recap-close-btn { display: inline-block; padding: 0.8rem 2.5rem; font-family: 'Oswald', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: #1A1A1A; background: linear-gradient(160deg, #D4B96A, #E8D5A3, #F5EDD6); border: none; cursor: pointer; border-radius: 50px; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
        .recap-close-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.3); background: linear-gradient(160deg, #DEC885, #EDDDB0, #F8F2E2); }
        .recap-thank-you { font-family: 'Playfair Display', serif; font-style: italic; color: #8A7D5A; margin-top: 1rem; font-size: 0.9rem; }
        .izgestia-suggestion-item { padding: 12px 16px; cursor: pointer; border-bottom: 1px solid rgba(201,168,76,0.15); transition: all 0.2s; display: flex; justify-content: space-between; align-items: center; }
        .izgestia-suggestion-item:hover { background: rgba(201,168,76,0.1); }
        .loading-more { text-align: center; padding: 2rem; grid-column: 1 / -1; }
        .loading-more .luxury-spinner { margin: 0 auto 0.5rem; }
        .loading-more-text { font-family: 'Oswald', sans-serif; font-size: 0.8rem; letter-spacing: 0.2em; color: #C9A84C; text-transform: uppercase; }
        @media (max-width: 768px) {
            .nav-links { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255,255,255,0.97); flex-direction: column; justify-content: center; align-items: center; gap: 2rem; z-index: 1000; }
            .nav-links.active { display: flex; }
            .hamburger { display: flex; }
            .hero-title { font-size: 2.2rem; }
            .section-title { font-size: 1.8rem; }
            #cart-sidebar { width: 100%; right: -100%; }
            .section-padding { padding: 3rem 1rem; }
            .products-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
            .product-page-container { grid-template-columns: 1fr; gap: 2rem; }
            .product-page-image { position: static; }
            .product-page-name { font-size: 2rem; }
            .form-row { grid-template-columns: 1fr; gap: 0; }
            .checkout-card { padding: 1.5rem 1rem; border-radius: 12px; }
            .order-recap-card { padding: 1.8rem; width: 95%; }
            /* Fix input zoom sur iOS - taille min 16px */
            input, select, textarea { font-size: 16px !important; }
            /* Fix checkout form */
            .form-group input, .form-group select { padding: 0.9rem 1rem; font-size: 16px !important; border-radius: 10px; -webkit-appearance: none; appearance: none; }
            /* Fix bouton commander */
            .checkout-submit-wrapper .luxury-btn { width: 100%; padding: 1.1rem; font-size: 0.9rem; border-radius: 10px; cursor: pointer; -webkit-tap-highlight-color: transparent; }
            /* Fix cart sidebar */
            #cart-sidebar { width: 100vw; }
        }
        @media (max-width: 480px) {
            #navbar { padding: 0.9rem 1rem; }
            #navbar.scrolled { padding: 0.6rem 1rem; }
            .nav-logo { font-size: 1.3rem; letter-spacing: 0.05em; }
            .hero-title { font-size: 1.7rem; }
            .hero-brand { font-size: 1.5rem; letter-spacing: 0.15em; }
            .hero-subtitle { font-size: 0.7rem; letter-spacing: 0.2em; }
            .hero-desc { font-size: 0.8rem; padding: 0 0.5rem; }
            .hero-content { padding: 1rem; }
            .section-title { font-size: 1.4rem; }
            .section-subtitle { font-size: 0.65rem; letter-spacing: 0.2em; }
            .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
            .product-card-info { padding: 0.8rem; }
            .product-card-name { font-size: 0.85rem; }
            .product-card-price { font-size: 1rem; }
            .product-card-category { font-size: 0.55rem; letter-spacing: 0.1em; }
            .product-card-image .product-emoji { font-size: 3rem; }
            .luxury-btn { padding: 0.8rem 1.5rem; font-size: 0.8rem; letter-spacing: 0.1em; }
            .product-page-name { font-size: 1.5rem; }
            .product-page-price { font-size: 1.8rem; }
            .product-page-container { padding: 1rem; }
            .product-page-image { border-radius: 10px; }
            .product-page-description { font-size: 0.85rem; padding: 1rem; }
            /* Quantity selector — plus grand sur mobile */
            .quantity-selector button { width: 44px; height: 48px; font-size: 1.2rem; }
            .quantity-selector input { width: 56px; height: 48px; font-size: 1rem; }
            /* Checkout */
            .checkout-card { padding: 1.2rem 0.9rem; border-radius: 12px; }
            .checkout-header-title { font-size: 1.3rem; }
            .checkout-header-subtitle { font-size: 0.75rem; }
            .form-group { margin-bottom: 1.2rem; }
            .form-group label { font-size: 0.7rem; margin-bottom: 0.4rem; }
            .form-group input, .form-group select { padding: 0.9rem 1rem; font-size: 16px !important; border-radius: 10px; }
            .checkout-benefits { gap: 0.8rem; flex-wrap: wrap; justify-content: center; }
            .checkout-benefit { font-size: 0.65rem; }
            .checkout-submit-wrapper { margin-top: 1.5rem; }
            .checkout-submit-wrapper .luxury-btn { padding: 1.1rem; font-size: 0.9rem; letter-spacing: 0.1em; width: 100%; border-radius: 10px; }
            /* Toast */
            .toast { bottom: 80px; right: 10px; left: 10px; text-align: center; justify-content: center; font-size: 0.75rem; padding: 0.8rem 1rem; border-radius: 10px; }
            /* Cart */
            .cart-item { padding: 0.8rem; gap: 0.7rem; }
            .cart-item-name { font-size: 0.75rem; }
            .cart-item-price { font-size: 0.8rem; }
            .qty-btn { width: 28px; height: 28px; font-size: 0.9rem; border-radius: 6px; }
            .qty-value { font-size: 0.9rem; }
            .cart-header { padding: 1.2rem 1rem; }
            .cart-title { font-size: 0.95rem; }
            .cart-footer { padding: 1rem; }
            .cart-total-amount { font-size: 1.2rem; }
            .cart-item-remove { min-width: 32px; min-height: 32px; }
            /* Footer */
            footer { padding: 2rem 1rem; }
            footer p:first-child { font-size: 1.2rem !important; }
            /* Recap commande */
            .order-recap-card { padding: 1.3rem 1rem; width: 96%; max-height: 90vh; }
            .recap-title { font-size: 1.2rem; }
            .recap-store-name { font-size: 0.85rem; }
            .recap-total-amount { font-size: 1.2rem; }
            /* Admin */
            .admin-header { padding: 0.6rem 1rem; flex-direction: column; text-align: center; }
            .admin-nav { justify-content: center; }
            .admin-nav button { padding: 0.4rem 0.8rem; font-size: 0.6rem; }
            .admin-container { padding: 1rem; }
            .admin-table th, .admin-table td { padding: 0.5rem; font-size: 0.65rem; }
            .admin-form input, .admin-form textarea, .admin-form select { padding: 0.5rem 0.7rem; font-size: 0.9rem; }
            .admin-login-box { padding: 1.8rem; }
            .admin-login-box h2 { font-size: 1.3rem; }
        }
        @media (min-width: 481px) and (max-width: 768px) {
            .products-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
            .product-card-name { font-size: 0.9rem; }
            .product-card-price { font-size: 1.05rem; }
            .product-card-image .product-emoji { font-size: 3.5rem; }
            .hero-title { font-size: 2.5rem; }
        }
        @media (max-height: 500px) and (orientation: landscape) {
            .hero-section { height: auto; min-height: 100vh; padding: 100px 1rem 40px; }
            .hero-title { font-size: 1.8rem; margin-bottom: 0.5rem; }
            .hero-desc { margin-bottom: 1rem; font-size: 0.75rem; }
            .hero-brand { font-size: 1.3rem; margin-bottom: 0.3rem; }
            .hero-subtitle { margin-bottom: 0.8rem; }
        }
        @media (min-width: 1400px) {
            .products-grid { grid-template-columns: repeat(5, 1fr); }
            .hero-title { font-size: 4.5rem; }
            .product-page-container { max-width: 1400px; }
        }
        @media (hover: none) and (pointer: coarse) {
            .product-card:hover { transform: none; }
            .product-card:active { transform: scale(0.97); transition: transform 0.1s; }
            .luxury-btn:hover { transform: none; }
            .luxury-btn:active { transform: scale(0.96); transition: transform 0.1s; }
            .nav-links a { padding: 1rem 0; font-size: 1.1rem; }
            /* Zone de touch plus grande */
            .cart-btn { min-width: 48px; min-height: 48px; }
            .hamburger { min-width: 48px; min-height: 48px; }
            .qty-btn { min-width: 40px; min-height: 40px; }
            .cart-item-remove { min-width: 40px; min-height: 40px; }
            /* Supprimer les effets hover qui restent collés sur mobile */
            .product-card:hover { box-shadow: 0 3px 15px rgba(0,0,0,0.2); }
            .luxury-btn:hover { box-shadow: 0 3px 12px rgba(0,0,0,0.25); background: linear-gradient(160deg, #D4B96A 0%, #E8D5A3 40%, #F5EDD6 75%, #E8D5A3 100%); }
        }
        /* ===== BANNIERE PROMO (image pleine largeur, style Kieslect) ===== */
        .promo-hero { position: relative; z-index: 2; width: 100%; max-width: 1500px; margin: 5.4rem auto 0; padding: 0.8rem 1.2rem 0; }
        .promo-imgwrap { position: relative; width: 100%; border-radius: 14px; overflow: hidden; box-shadow: 0 18px 45px rgba(139,115,32,0.18); background: linear-gradient(155deg, #FDFBF7, #F3E7C8); padding: 1.2rem 1rem 1.1rem; display: flex; flex-direction: column; align-items: center; justify-content: center; }
        .promo-imgwrap::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,253,247,0.55) 0%, rgba(255,253,247,0.22) 35%, rgba(245,237,214,0.40) 100%); z-index: 1; pointer-events: none; }
        .promo-imgwrap > img.promo-bg { position: absolute; inset: -40px; width: calc(100% + 80px); height: calc(100% + 80px); max-width: none; max-height: none; object-fit: cover; filter: blur(30px) saturate(1.05); opacity: 0.6; z-index: 0; margin: 0; }
        .promo-imgwrap > img { display: block; position: relative; z-index: 2; width: auto; max-width: 100%; height: auto; max-height: 66vh; object-fit: contain; margin: 0 auto; transition: opacity 0.35s ease; }
        .promo-imgwrap > img#promoMainImg { border-radius: 12px; box-shadow: 0 20px 50px rgba(40,32,8,0.26), 0 0 0 1px rgba(255,255,255,0.55); }
        .promo-imgwrap .promo-emoji { display: flex; align-items: center; justify-content: center; width: 100%; height: 46vh; font-size: 10rem; filter: drop-shadow(0 15px 35px rgba(139,115,32,0.25)); }
        .promo-cta { position: relative; z-index: 2; display: block; width: max-content; margin: 1rem auto 0; padding: 0.62rem 1.9rem; font-family: 'Roboto', sans-serif; font-size: 0.98rem; font-weight: 700; color: #FFFFFF; background: #23222B; border: none; border-radius: 50px; cursor: pointer; text-decoration: none; transition: all 0.3s ease; box-shadow: 0 8px 22px rgba(0,0,0,0.30); white-space: nowrap; }
        .promo-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,0.38); background: #2E2D38; }
        .promo-carousel-ctrl { position: relative; z-index: 2; width: max-content; margin: 0.6rem auto 0; display: flex; align-items: center; gap: 0.8rem; font-family: 'Roboto', sans-serif; font-weight: 700; color: #2A2A2A; font-size: 0.95rem; background: rgba(255,255,255,0.88); backdrop-filter: blur(8px); padding: 0.35rem 0.6rem; border-radius: 50px; box-shadow: 0 6px 18px rgba(60,48,12,0.14); }
        .promo-carousel-ctrl button { width: 40px; height: 40px; border-radius: 50%; border: none; background: #FFFFFF; color: #2A2A2A; font-size: 1.05rem; cursor: pointer; box-shadow: 0 5px 15px rgba(0,0,0,0.18); transition: all 0.25s ease; display: flex; align-items: center; justify-content: center; }
        .promo-carousel-ctrl button:hover { background: #F5EDD6; transform: scale(1.07); }
        @media (max-width: 900px) {
            .promo-hero { margin-top: 4.6rem; padding: 0.5rem 0.6rem 0; }
            .promo-imgwrap { border-radius: 14px; }
            .promo-imgwrap > img { height: auto; max-height: none; }
            .promo-imgwrap .promo-emoji { height: 30vh; font-size: 6.5rem; }
            .promo-cta { bottom: 1.4rem; padding: 0.5rem 1.5rem; font-size: 0.9rem; }
            .promo-carousel-ctrl { right: 0.9rem; bottom: 0.9rem; gap: 0.5rem; }
            .promo-carousel-ctrl button { width: 34px; height: 34px; }
        }
        /* ===== IZH — HERO SLIDER PREMIUM (thème sombre + glassmorphism) ===== */
        .izh { width: 100%; max-width: 1500px; margin: 5.4rem auto 0; padding: 0.8rem 1.2rem 0; text-align: left; }
        .izh-stage { position: relative; border-radius: 20px; overflow: hidden; height: 76vh; min-height: 500px; background: linear-gradient(135deg, #12141C 0%, #171B28 45%, #1C1524 100%); background-size: 200% 200%; animation: izhGrad 14s ease-in-out infinite; box-shadow: 0 22px 55px rgba(20,18,10,0.35); isolation: isolate; }
        @keyframes izhGrad { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
        .izh-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
        .izh-orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55; }
        .izh-orb.o1 { width: 420px; height: 420px; background: rgba(201,168,76,0.38); top: -120px; left: -80px; animation: izhFloat 11s ease-in-out infinite; }
        .izh-orb.o2 { width: 360px; height: 360px; background: rgba(76,181,201,0.26); bottom: -110px; right: 6%; animation: izhFloat 13s ease-in-out infinite reverse; }
        .izh-orb.o3 { width: 240px; height: 240px; background: rgba(192,120,60,0.22); top: 30%; right: 34%; animation: izhFloat 16s ease-in-out infinite; }
        @keyframes izhFloat { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(26px,-22px) scale(1.06); } }
        .izh-lines { position: absolute; inset: 0; background: repeating-linear-gradient(115deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 90px); }
        .izh-slide { position: absolute; inset: 0; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 1.5rem; padding: 2.2rem 5rem 6.4rem; opacity: 0; transform: translateX(46px); transition: opacity 0.65s ease, transform 0.65s ease; pointer-events: none; }
        .izh-slide.active { opacity: 1; transform: translateX(0); pointer-events: auto; }
        .izh-kicker { display: inline-block; padding: 0.42rem 1.1rem; border-radius: 50px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); backdrop-filter: blur(10px); color: #E8C56B; font-family: 'Oswald', sans-serif; font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 1.3rem; }
        .izh-title { font-family: 'Oswald', sans-serif; font-size: clamp(2.3rem, 4.4vw, 4rem); font-weight: 700; line-height: 1.08; color: #FFFFFF; letter-spacing: 0.02em; text-transform: uppercase; margin: 0 0 1.1rem; }
        .izh-title span { background: linear-gradient(160deg, #F0D48A, #C9A84C, #8B7320); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .izh-desc { font-family: 'Roboto', sans-serif; font-size: 1.03rem; line-height: 1.75; color: rgba(255,255,255,0.72); max-width: 34rem; margin: 0; }
        .izh-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
        .izh-cta { position: relative; overflow: hidden; display: inline-block; padding: 0.85rem 2.3rem; border-radius: 50px; background: linear-gradient(160deg, #F0D48A, #C9A84C); color: #23222B; font-family: 'Oswald', sans-serif; font-size: 0.88rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; transition: transform 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 10px 26px rgba(201,168,76,0.28); }
        .izh-cta::after { content: ''; position: absolute; top: 0; left: -80%; width: 45%; height: 100%; background: linear-gradient(105deg, transparent, rgba(255,255,255,0.55), transparent); transform: skewX(-22deg); transition: left 0.55s ease; }
        .izh-cta:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(201,168,76,0.42); }
        .izh-cta:hover::after { left: 130%; }
        .izh-ghost { display: inline-block; padding: 0.85rem 2rem; border-radius: 50px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.22); backdrop-filter: blur(10px); color: #FFFFFF; font-family: 'Oswald', sans-serif; font-size: 0.88rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; transition: all 0.3s ease; }
        .izh-ghost:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.4); transform: translateY(-3px); }
        .izh-art { position: relative; display: flex; align-items: center; justify-content: center; min-height: 340px; }
        .izh-glass { background: rgba(255,255,255,0.055); border: 1px solid rgba(255,255,255,0.13); border-radius: 26px; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); padding: 2.2rem; box-shadow: 0 20px 50px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.12); animation: izhHover 6s ease-in-out infinite; }
        .izh-glass svg { display: block; width: clamp(230px, 25vw, 330px); height: auto; }
        @keyframes izhHover { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
        .izh-chip { position: absolute; padding: 0.5rem 1rem; border-radius: 50px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); backdrop-filter: blur(12px); color: #F5EDD6; font-family: 'Roboto', sans-serif; font-size: 0.8rem; font-weight: 600; white-space: nowrap; box-shadow: 0 8px 22px rgba(0,0,0,0.3); }
        .izh-chip.c1 { top: 10%; right: 4%; animation: izhHover 7s ease-in-out infinite 0.8s; }
        .izh-chip.c2 { bottom: 12%; left: 2%; animation: izhHover 8s ease-in-out infinite 1.6s; }
        .izh-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); backdrop-filter: blur(12px); color: #FFFFFF; font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
        .izh-nav:hover { background: rgba(201,168,76,0.85); color: #23222B; transform: translateY(-50%) scale(1.08); }
        .izh-prev { left: 1.3rem; } .izh-next { right: 1.3rem; }
        .izh-bar { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; align-items: center; gap: 0.65rem; padding: 0.5rem 1rem; border-radius: 50px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); backdrop-filter: blur(12px); }
        .izh-dot { width: 9px; height: 9px; border-radius: 50px; border: none; background: rgba(255,255,255,0.35); cursor: pointer; padding: 0; transition: all 0.35s ease; }
        .izh-dot.active { width: 26px; background: linear-gradient(160deg, #F0D48A, #C9A84C); }
        .izh-count { font-family: 'Oswald', sans-serif; font-size: 0.78rem; letter-spacing: 0.12em; color: rgba(255,255,255,0.85); margin-left: 0.3rem; }
        @media (max-width: 900px) {
            .izh { margin-top: 4.6rem; padding: 0.5rem 0.6rem 0; }
            .izh-stage { min-height: 0; border-radius: 16px; }
            .izh-slide { position: relative; inset: auto; display: none; grid-template-columns: 1fr; text-align: center; padding: 1.6rem 1.2rem 7rem; gap: 0.6rem; }
            .izh-slide.active { display: grid; }
            .izh-art { order: -1; min-height: 0; margin-bottom: 0.6rem; }
            .izh-glass { padding: 1.3rem; }
            .izh-glass svg { width: 170px; }
            .izh-chip.c1 { top: 0; right: 0; } .izh-chip.c2 { bottom: -6px; left: 0; }
            .izh-desc { margin-left: auto; margin-right: auto; font-size: 0.95rem; }
            .izh-ctas { justify-content: center; }
            .izh-nav { width: 40px; height: 40px; top: auto; bottom: 1.1rem; transform: none; }
            .izh-nav:hover { transform: scale(1.06); }
            .izh-prev { left: 0.9rem; } .izh-next { right: 0.9rem; }
            .izh-bar { bottom: 1.35rem; }
        }
        @media (prefers-reduced-motion: reduce) {
            .izh-stage, .izh-orb, .izh-glass, .izh-chip { animation: none !important; }
            .izh-slide { transition: opacity 0.4s ease; transform: none; }
        }
        /* ===== Checkout arabe (RTL) ===== */
        #page-checkout[dir="rtl"] { font-family: 'Roboto', 'Segoe UI', Tahoma, sans-serif; }
        #page-checkout[dir="rtl"] label, #page-checkout[dir="rtl"] .field-error-message { text-align: right; }
        #page-checkout[dir="rtl"] input, #page-checkout[dir="rtl"] select { text-align: right; direction: rtl; }
        #page-checkout[dir="rtl"] input[name="phone"], #page-checkout[dir="rtl"] input[name="zip"] { direction: ltr; text-align: right; }
        .izh-stage .promo-cta { position: absolute; z-index: 3; bottom: 1.6rem; left: 50%; transform: translateX(-50%); margin: 0; display: inline-block; width: auto; }
        .izh-stage .promo-cta:hover { transform: translateX(-50%) translateY(-2px); }
        .izh-stage .promo-carousel-ctrl { position: absolute; z-index: 3; right: 1.8rem; bottom: 1.8rem; left: auto; margin: 0; background: rgba(255,255,255,0.75); }
        @media (max-width: 900px) { .izh-stage .promo-carousel-ctrl { right: 50%; transform: translateX(50%); bottom: 0.8rem; } }
        /* ===== FICHE PRODUIT — template style Kieslect (couleurs TOOLSYNO) ===== */
        .pp-gallery { display: grid; grid-template-columns: 78px 1fr; gap: 0.8rem; align-items: start; }
        .pp-thumbs { display: flex; flex-direction: column; gap: 0.6rem; max-height: 520px; overflow-y: auto; padding-right: 2px; }
        .pp-thumbs::-webkit-scrollbar { width: 4px; }
        .pp-thumbs img { width: 72px !important; height: 72px !important; background: #FFFFFF; }
        .pp-left .product-page-image { position: static; background: #FFFFFF; box-shadow: 0 10px 35px rgba(139,115,32,0.15); }
        .pp-desc-title { font-family: 'Roboto', sans-serif; font-weight: 800; font-size: 1.05rem; color: #2A2A2A; margin-bottom: 0.9rem; }
        .pp-bullets { list-style: none; margin: 0; padding: 0; }
        .pp-bullets li { position: relative; padding-left: 1.3rem; margin-bottom: 0.75rem; font-size: 0.95rem; line-height: 1.75; color: #4A4A4A; }
        .pp-bullets li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(160deg, #C9A84C, #B8942E); }
        .pp-bullets li b { color: #2A2A2A; }
        .pp-desc-images { display: flex; flex-direction: column; gap: 1rem; margin: 0 0 2.2rem; }
        .pp-desc-images img { width: 100%; border-radius: 14px; display: block; box-shadow: 0 10px 30px rgba(139,115,32,0.14); }
        .pp-sticky { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1500; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.7rem 1.4rem; background: rgba(255,255,255,0.94); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-top: 1px solid rgba(201,168,76,0.3); box-shadow: 0 -8px 30px rgba(0,0,0,0.12); }
        .pp-sticky-info { display: flex; align-items: center; gap: 0.9rem; min-width: 0; }
        .pp-sticky-img { width: 52px; height: 52px; border-radius: 12px; background: linear-gradient(150deg, #F0E6CC, #F8F3E4); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; overflow: hidden; flex-shrink: 0; border: 1px solid rgba(201,168,76,0.25); }
        .pp-sticky-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .pp-sticky-name { font-family: 'Oswald', sans-serif; font-size: 0.92rem; font-weight: 600; color: #2A2A2A; text-transform: uppercase; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 46vw; }
        .pp-sticky-price { font-family: 'Oswald', sans-serif; font-size: 1.05rem; font-weight: 700; color: #8B7320; }
        .pp-sticky-btn { flex-shrink: 0; padding: 0.75rem 1.8rem; border: none; border-radius: 50px; background: linear-gradient(160deg, #D4B96A, #E8D5A3); color: #2A2A2A; font-family: 'Oswald', sans-serif; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 6px 18px rgba(201,168,76,0.35); white-space: nowrap; }
        .pp-sticky-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(201,168,76,0.5); }
        #page-product-detail .product-page { padding-bottom: 95px; }
        @media (max-width: 768px) {
            .pp-gallery { grid-template-columns: 1fr; }
            .pp-thumbs { flex-direction: row; max-height: none; overflow-x: auto; overflow-y: hidden; order: 2; padding: 0.2rem 0; }
            .pp-thumbs img { width: 62px !important; height: 62px !important; }
            .pp-sticky { padding: 0.6rem 0.8rem; }
            .pp-sticky-name { max-width: 34vw; font-size: 0.78rem; }
            .pp-sticky-price { font-size: 0.9rem; }
            .pp-sticky-btn { padding: 0.65rem 1.1rem; font-size: 0.72rem; }
            #page-product-detail .product-page { padding-bottom: 88px; }
        }
        /* ============================================================
           PREMIUM MOTION LAYER — additif uniquement (transform/opacity)
           ============================================================ */
        @media (prefers-reduced-motion: no-preference) {
            html { scroll-behavior: smooth; }
            /* --- 1) Apparition des sections au scroll (une seule fois) --- */
            .rv { opacity: 0; transform: translateY(26px) scale(0.985); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1); will-change: opacity, transform; }
            .rv.rv-in { opacity: 1; transform: translateY(0) scale(1); will-change: auto; }
            /* --- 4) Images : apparition + zoom léger au hover --- */
            .product-card-image img, .pp-desc-images img, .promo-imgwrap > img, #productDetailImg, .pp-thumbs img, .cart-item-image-wrapper img { animation: imgFadeIn 0.55s ease both; }
            @keyframes imgFadeIn { from { opacity: 0; } to { opacity: 1; } }
            .product-card-image img { transition: transform 0.6s cubic-bezier(0.22,1,0.36,1); }
            .product-card:hover .product-card-image img { transform: scale(1.06); }
            .product-card:hover .product-card-image .product-emoji { transform: scale(1.08) rotate(-2deg); }
            .product-card-image .product-emoji { transition: transform 0.5s cubic-bezier(0.22,1,0.36,1); }
            /* --- 3) Cards : élévation + micro-rotation premium --- */
            .product-card { transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease; }
            .product-card:hover { transform: translateY(-8px) rotate(-0.4deg) scale(1.012); box-shadow: 0 22px 45px rgba(60,48,12,0.18), 0 0 0 1px rgba(201,168,76,0.25), 0 0 35px rgba(201,168,76,0.12); }
            .checkout-card, .cart-item, .izh-glass { transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease; }
            .cart-item:hover { transform: translateX(3px); box-shadow: 0 6px 18px rgba(60,48,12,0.10); }
            /* --- 2) Boutons : élévation, ombre dynamique, micro-mouvement --- */
            .luxury-btn, .promo-cta, .pp-sticky-btn, .izh-cta, .izh-ghost, .admin-btn-gold, .admin-btn-red, .admin-btn, .izh-nav, .promo-carousel-ctrl button {
                transition: transform 0.28s cubic-bezier(0.22,1,0.36,1), box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease;
                position: relative; overflow: hidden; transform: translateZ(0);
            }
            .luxury-btn:hover, .admin-btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(201,168,76,0.40); }
            .luxury-btn:active, .promo-cta:active, .pp-sticky-btn:active, .admin-btn-gold:active { transform: translateY(-1px) scale(0.985); }
            /* Ripple discret */
            .mo-ripple { position: absolute; border-radius: 50%; pointer-events: none; background: radial-gradient(circle, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0) 65%); transform: scale(0); animation: moRipple 0.65s ease-out forwards; }
            @keyframes moRipple { to { transform: scale(2.4); opacity: 0; } }
            /* --- 5) Navigation : liens vivants + transitions d'état --- */
            .nav-links a { position: relative; transition: color 0.3s ease; }
            .nav-links a::after { content: ''; position: absolute; left: 0; bottom: -4px; width: 100%; height: 1.5px; background: linear-gradient(90deg, #C9A84C, #E8D5A3); transform: scaleX(0); transform-origin: left; transition: transform 0.35s cubic-bezier(0.22,1,0.36,1); }
            .nav-links a:hover::after { transform: scaleX(1); }
            #navbar { transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease; }
            /* --- 8) Icônes : hover subtil --- */
            .checkout-benefit-icon, .cart-close-btn, .cart-item-remove, .hamburger { transition: transform 0.3s cubic-bezier(0.22,1,0.36,1); }
            .checkout-benefit:hover .checkout-benefit-icon { transform: scale(1.2) rotate(-6deg); }
            .cart-close-btn:hover { transform: rotate(90deg); }
            .cart-item-remove:hover { transform: scale(1.15); }
            /* --- 6) Formulaires : focus animé + anneau élégant --- */
            .admin-form input, .admin-form textarea, .admin-form select,
            .checkout-form-container input, .checkout-form-container select, .checkout-form-container textarea,
            .admin-login-box input {
                transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
            }
            .admin-form input:focus, .admin-form textarea:focus, .admin-form select:focus,
            .checkout-form-container input:focus, .checkout-form-container select:focus,
            .admin-login-box input:focus {
                border-color: #C9A84C !important; box-shadow: 0 0 0 4px rgba(201,168,76,0.16), 0 4px 14px rgba(201,168,76,0.12); outline: none;
            }
            .field-error-message.visible { animation: moShake 0.35s ease; }
            @keyframes moShake { 0%,100% { transform: translateX(0); } 25% { transform: translateX(-4px); } 75% { transform: translateX(4px); } }
            /* --- 9) Skeleton loading (grilles produits) --- */
            .sk-card { border-radius: 10px; overflow: hidden; background: linear-gradient(165deg, #F8F2E2, #FFFEF8, #F0E6CC); box-shadow: 0 3px 15px rgba(0,0,0,0.06); }
            .sk-img { aspect-ratio: 1/1; }
            .sk-line { height: 14px; border-radius: 6px; margin: 0.7rem 1rem; }
            .sk-line.short { width: 40%; }
            .sk-img, .sk-line { position: relative; background: rgba(201,168,76,0.10); overflow: hidden; }
            .sk-img::after, .sk-line::after { content: ''; position: absolute; inset: 0; transform: translateX(-100%); background: linear-gradient(90deg, transparent, rgba(255,255,255,0.65), transparent); animation: skSweep 1.3s ease-in-out infinite; }
            @keyframes skSweep { to { transform: translateX(100%); } }
            /* --- 10) Scroll : barre de progression + retour en haut --- */
            #moProgress { position: fixed; top: 0; left: 0; height: 2.5px; width: 100%; background: linear-gradient(90deg, #C9A84C, #E8D5A3, #B8942E); transform-origin: left; transform: scaleX(0); z-index: 9999; pointer-events: none; }
            #moTop { position: fixed; right: 1.3rem; bottom: 5.6rem; z-index: 1600; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(201,168,76,0.45); background: rgba(255,255,255,0.78); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); color: #8B7320; font-size: 1.05rem; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 22px rgba(60,48,12,0.18); opacity: 0; transform: translateY(14px) scale(0.9); pointer-events: none; transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.22,1,0.36,1); }
            #moTop.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
            #moTop:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 12px 28px rgba(60,48,12,0.25); }
            /* --- 11) Transitions homogènes de pages --- */
            .page.active { animation: pageIn 0.45s cubic-bezier(0.22,1,0.36,1); }
            @keyframes pageIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
            .toast { animation: toastIn 0.4s cubic-bezier(0.22,1,0.36,1); }
            @keyframes toastIn { from { opacity: 0; transform: translateY(14px) scale(0.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
        }
        /* Hors media query : états sans animation restent parfaits */
        @media (prefers-reduced-motion: reduce) {
            .rv { opacity: 1 !important; transform: none !important; }
            #moProgress, .sk-img::after, .sk-line::after { display: none !important; }
        }
        /* ============================================================
           RESPONSIVE COMPLET — téléphone & tablette (bloc consolidé)
           ============================================================ */
        img, svg, video { max-width: 100%; }
        @media (max-width: 768px) {
            /* --- Navbar compacte --- */
            #navbar { padding: 0.75rem 1rem; }
            #navbar.scrolled { padding: 0.6rem 1rem; }
            /* --- Sections & titres --- */
            .section-padding { padding: 2.4rem 0.9rem; }
            /* --- ANNONCE : parfaitement adaptée --- */
            .promo-hero { margin-top: 4.4rem; padding: 0.45rem 0.5rem 0; }
            .promo-imgwrap { border-radius: 10px; }
            .promo-cta { bottom: 0.9rem; padding: 0.5rem 1.4rem; font-size: 0.85rem; }
            .promo-carousel-ctrl { right: 0.7rem; bottom: 0.7rem; padding: 0.25rem 0.45rem; gap: 0.45rem; font-size: 0.82rem; }
            .promo-carousel-ctrl button { width: 32px; height: 32px; font-size: 0.95rem; }
            /* --- Fiche produit --- */
            .product-page { padding-top: 82px; }
            .product-page-container { padding: 1rem 0.8rem; gap: 1.4rem; }
            .product-page-breadcrumb { font-size: 0.68rem; }
            .product-page-price { font-size: 1.6rem; }
            .pp-desc-images { margin-bottom: 1.4rem; }
            /* --- Commande --- */
            #page-checkout > section { padding-top: 92px !important; }
            #ckLangBtn { margin-top: 0; }
            .checkout-container { margin-top: 1rem; }
            /* --- Panier --- */
            .cart-item { padding: 0.8rem; }
            /* --- Toast visible sur mobile --- */
            .toast { left: 12px; right: 12px; bottom: 14px; text-align: center; font-size: 0.78rem; padding: 0.85rem 1rem; }
            /* --- Footer --- */
            footer { padding: 2.2rem 1rem !important; }
            /* --- ADMIN adapté --- */
            .admin-header { flex-wrap: wrap; gap: 0.6rem; padding: 0.7rem 0.9rem; }
            .admin-nav { gap: 0.4rem; }
            .admin-nav button { font-size: 0.7rem; padding: 0.45rem 0.7rem; }
            .admin-container { padding: 1rem 0.8rem 3rem; }
            .admin-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
            .admin-table th, .admin-table td { white-space: nowrap; }
            .admin-table td:nth-child(2) { white-space: normal; min-width: 140px; }
            .upload-area { padding: 1.2rem 0.8rem; }
            /* Grilles inline (formulaires admin, etc.) en 1 colonne */
            .admin-section [style*="grid-template-columns: repeat(2"] ,
            .admin-section [style*="grid-template-columns:repeat(2"] { grid-template-columns: 1fr !important; }
        }
        @media (max-width: 480px) {
            #navbar { padding: 0.65rem 0.8rem; }
            /* Annonce encore plus compacte */
            .promo-hero { margin-top: 4.1rem; padding: 0.35rem 0.4rem 0; }
            .promo-cta { padding: 0.45rem 1.2rem; font-size: 0.8rem; bottom: 0.7rem; }
            .promo-carousel-ctrl { transform: scale(0.92); transform-origin: bottom right; }
            /* Fiche produit : actions empilées, boutons pleine largeur */
            .product-page-name { font-size: 1.55rem; }
            .product-page-actions { flex-direction: column; align-items: stretch; gap: 0.7rem; }
            .product-page-actions .quantity-selector { align-self: center; }
            .product-page-actions .luxury-btn { width: 100%; text-align: center; padding: 1rem; }
            .quantity-selector button { padding: 0.7rem 1.1rem; font-size: 1.25rem; }
            .pp-thumbs img { width: 56px !important; height: 56px !important; }
            /* Commande */
            #page-checkout > section { padding-top: 86px !important; }
            .checkout-header-title { font-size: 1.15rem; }
            /* Barre sticky produit compacte */
            .pp-sticky-name { max-width: 30vw; }
            /* Admin */
            .admin-header > div:first-child { font-size: 0.95rem; }
        }
        /* ===== ANNONCE MOBILE v2 : image jamais coupée, boutons SOUS l'image, plus de grand vide ===== */
        @media (max-width: 768px) {
            /* plus de hauteur 88vh forcée sur la section hero */
            #hero { min-height: 0 !important; height: auto !important; }
            /* l'image s'affiche EN ENTIER (aucun recadrage, aucune limite de hauteur) */
            .promo-imgwrap > img { max-height: none; height: auto; object-fit: contain; }
            /* le bouton Découvrir passe SOUS l'image (ne cache plus le texte) */
            .promo-imgwrap { padding: 0.7rem 0.55rem 0.8rem; border-radius: 12px; }
            .promo-imgwrap > img#promoMainImg { border-radius: 9px; box-shadow: 0 12px 28px rgba(40,32,8,0.22); }
            .promo-imgwrap .promo-cta { position: relative; z-index: 2; transform: none; display: block; width: max-content; margin: 0.8rem auto 0; }
            .promo-imgwrap .promo-cta:hover { transform: translateY(-2px); }
            /* les flèches 1/4 aussi sous l'image, centrées */
            .promo-imgwrap .promo-carousel-ctrl { position: relative; z-index: 2; transform: none; width: max-content; margin: 0.55rem auto 0; background: rgba(255,255,255,0.9); }
        }
        @media (max-width: 480px) {
            .promo-imgwrap .promo-cta { font-size: 0.85rem; padding: 0.5rem 1.6rem; }
        }
        /* ============================================================
           PRO POLISH V2 — design & animations professionnels (additif)
           ============================================================ */
        ::selection { background: rgba(201,168,76,0.35); color: #2A2A2A; }
        ::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #C9A84C, #B8942E); border-radius: 10px; }
        ::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #D4B96A, #8B7320); }
        a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible { outline: 2px solid #C9A84C; outline-offset: 3px; border-radius: 6px; }
        /* Navbar : liseré doré + logo brillant */
        #navbar { border-bottom: 1px solid rgba(201,168,76,0.22); }
        .nav-logo { position: relative; overflow: hidden; transition: letter-spacing 0.4s ease; }
        .nav-logo:hover { letter-spacing: 0.22em; }
        @media (prefers-reduced-motion: no-preference) {
            .nav-logo::after { content: ''; position: absolute; top: 0; left: -80%; width: 45%; height: 100%; background: linear-gradient(105deg, transparent, rgba(255,255,255,0.75), transparent); transform: skewX(-20deg); transition: left 0.6s ease; }
            .nav-logo:hover::after { left: 130%; }
            /* Révélation "rideau doré" sur les images produits */
            .product-card .product-card-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, #F0D48A, #C9A84C, #B8942E); transform: scaleX(1); transform-origin: right; transition: transform 0.85s cubic-bezier(0.77,0,0.18,1) 0.12s; z-index: 2; pointer-events: none; }
            .product-card.rv-in .product-card-image::after { transform: scaleX(0); }
            .product-card:not(.rv) .product-card-image::after { transform: scaleX(0); }
            /* Titres de sections : flou -> net + interlettrage */
            .section-title.rv { filter: blur(7px); letter-spacing: 0.14em; transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1), filter 0.75s ease, letter-spacing 0.9s ease; }
            .section-title.rv.rv-in { filter: blur(0); letter-spacing: 0.04em; }
            /* Ligne de section : balayage doré continu */
            .section-line { background: linear-gradient(90deg, #C9A84C, #F0D48A, #C9A84C); background-size: 200% 100%; animation: lineSweep 3.2s linear infinite; }
            @keyframes lineSweep { to { background-position: -200% 0; } }
            /* Boutons dorés : dégradé vivant */
            .luxury-btn, .admin-btn-gold, .pp-sticky-btn { background-image: linear-gradient(120deg, #F0D48A, #C9A84C, #E8D5A3, #D4B96A); background-size: 230% 100%; background-position: 0% 0; transition: background-position 0.55s ease, transform 0.28s cubic-bezier(0.22,1,0.36,1), box-shadow 0.28s ease; }
            .luxury-btn:hover, .admin-btn-gold:hover, .pp-sticky-btn:hover { background-position: 95% 0; }
            /* Slider par défaut : entrée décalée des éléments à chaque slide */
            .izh-slide .izh-kicker, .izh-slide .izh-title, .izh-slide .izh-desc, .izh-slide .izh-art { opacity: 0; transform: translateY(20px); }
            .izh-slide.active .izh-kicker { animation: izhChild 0.6s cubic-bezier(0.22,1,0.36,1) 0.08s both; }
            .izh-slide.active .izh-title  { animation: izhChild 0.65s cubic-bezier(0.22,1,0.36,1) 0.18s both; }
            .izh-slide.active .izh-desc   { animation: izhChild 0.65s cubic-bezier(0.22,1,0.36,1) 0.28s both; }
            .izh-slide.active .izh-art    { animation: izhChild 0.7s cubic-bezier(0.22,1,0.36,1) 0.34s both; }
            @keyframes izhChild { to { opacity: 1; transform: translateY(0); } }
            /* Bannière annonce : entrée cinématique */
            #promoBanner { animation: bannerIn 0.7s cubic-bezier(0.22,1,0.36,1) both; }
            @keyframes bannerIn { from { opacity: 0; transform: translateY(18px) scale(0.988); } to { opacity: 1; transform: none; } }
            /* Panier : glissement soyeux */
            #cart-sidebar { transition: right 0.5s cubic-bezier(0.22,1,0.36,1); }
            #cart-overlay { transition: opacity 0.4s ease; }
            /* Barre sticky produit : entrée */
            .pp-sticky { animation: stickyIn 0.55s cubic-bezier(0.22,1,0.36,1) 0.15s both; }
            @keyframes stickyIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
            /* Footer : fil doré animé */
            footer { position: relative; }
            footer::before { content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, #C9A84C, #F0D48A, #C9A84C, transparent); background-size: 220% 100%; animation: lineSweep 5.5s linear infinite; }
            /* Cartes produits : liseré premium */
            .product-card { border: 1px solid rgba(201,168,76,0.18); border-radius: 14px; overflow: hidden; }
        }
        @media (prefers-reduced-motion: reduce) {
            .product-card .product-card-image::after { display: none !important; }
            .izh-slide .izh-kicker, .izh-slide .izh-title, .izh-slide .izh-desc, .izh-slide .izh-art { opacity: 1 !important; transform: none !important; }
        }
        /* ============================================================
           DESIGN SYSTEM V3 — refonte professionnelle (surcharges)
           Typo Manrope, hiérarchie éditoriale, composants raffinés
           ============================================================ */
        body { font-family: 'Manrope', 'Roboto', sans-serif; color: #23222B; }
        /* --- Navbar : aérée, moderne --- */
        #navbar { padding: 1rem 2.4rem; }
        .nav-logo { font-size: 1.45rem; letter-spacing: 0.16em; }
        .nav-links a { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.1em; }
        /* --- Titres de sections : éditorial, plus de CAPS condensées --- */
        .section-subtitle { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 0.7rem; letter-spacing: 0.32em; color: #B8942E; }
        .section-title { font-family: 'Manrope', sans-serif; font-weight: 800; text-transform: none; font-size: clamp(1.9rem, 3.6vw, 2.9rem); letter-spacing: -0.02em; line-height: 1.12; -webkit-text-fill-color: currentColor; background: none; color: #1F1E26; }
        .section-line { height: 3px; width: 64px; border-radius: 3px; }
        .section-padding { padding: 5.5rem 2rem; }
        /* --- Cartes produits : galerie épurée --- */
        .product-card { background: #FFFFFF; box-shadow: 0 1px 2px rgba(35,30,10,0.05), 0 8px 24px rgba(35,30,10,0.06); }
        .product-card-category { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 0.62rem; letter-spacing: 0.24em; color: #B8942E; }
        .product-card-name { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 1.02rem; text-transform: none; letter-spacing: -0.01em; color: #23222B; }
        .product-card-price { font-family: 'Manrope', sans-serif; font-weight: 800; letter-spacing: -0.01em; }
        /* --- Boutons : pilules nettes, sans cri --- */
        .luxury-btn, .admin-btn-gold, .pp-sticky-btn, .promo-cta, .izh-cta {
            font-family: 'Manrope', sans-serif; font-weight: 800; letter-spacing: 0.03em; text-transform: none; border-radius: 999px;
        }
        .luxury-btn { padding: 0.95rem 2.4rem; font-size: 0.92rem; }
        .izh-ghost { font-family: 'Manrope', sans-serif; font-weight: 700; text-transform: none; letter-spacing: 0.03em; border-radius: 999px; }
        /* --- Fiche produit : éditoriale --- */
        .product-page-breadcrumb { font-family: 'Manrope', sans-serif; font-weight: 700; letter-spacing: 0.14em; }
        .product-page-name { font-family: 'Manrope', sans-serif; font-weight: 800; text-transform: none; letter-spacing: -0.025em; line-height: 1.1; }
        .product-page-price { font-family: 'Manrope', sans-serif; font-weight: 800; }
        .pp-desc-title { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.1rem; letter-spacing: -0.01em; }
        .pp-bullets li { font-family: 'Manrope', sans-serif; font-size: 0.96rem; }
        .pp-sticky-name { font-family: 'Manrope', sans-serif; font-weight: 800; text-transform: none; letter-spacing: 0; }
        .pp-sticky-price { font-family: 'Manrope', sans-serif; font-weight: 800; }
        /* --- Slider par défaut : titre display raffiné --- */
        .izh-kicker { font-family: 'Manrope', sans-serif; font-weight: 800; letter-spacing: 0.28em; }
        .izh-desc { font-family: 'Manrope', sans-serif; }
        /* --- Commande : carte nette, champs doux --- */
        .checkout-header-title { font-family: 'Manrope', sans-serif; font-weight: 800; text-transform: none; letter-spacing: -0.01em; }
        .checkout-header-subtitle, .checkout-benefit { font-family: 'Manrope', sans-serif; }
        .checkout-card { border-radius: 22px; box-shadow: 0 2px 4px rgba(35,30,10,0.05), 0 18px 45px rgba(35,30,10,0.09); }
        .form-group label, .admin-form label { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 0.68rem; letter-spacing: 0.16em; color: #6B5B2A; }
        .form-group input, .form-group select, .admin-form input, .admin-form textarea, .admin-form select { border-radius: 12px; font-family: 'Manrope', sans-serif; }
        /* --- Panier --- */
        .cart-item-name { font-family: 'Manrope', sans-serif; font-weight: 700; text-transform: none; }
        .cart-item { border-radius: 14px; }
        /* --- Admin --- */
        .admin-nav button { font-family: 'Manrope', sans-serif; font-weight: 800; letter-spacing: 0.04em; border-radius: 999px; }
        .admin-table th { font-family: 'Manrope', sans-serif; font-weight: 800; letter-spacing: 0.1em; font-size: 0.68rem; }
        .admin-table td { font-family: 'Manrope', sans-serif; }
        /* --- Toast & divers --- */
        .toast { font-family: 'Manrope', sans-serif; font-weight: 700; letter-spacing: 0.02em; text-transform: none; border-radius: 14px; }
        .promo-carousel-ctrl { font-family: 'Manrope', sans-serif; font-weight: 800; }
        footer, footer p { font-family: 'Manrope', sans-serif; }
        /* --- Respiration mobile cohérente --- */
        @media (max-width: 768px) {
            #navbar { padding: 0.7rem 1rem; }
            .section-padding { padding: 3rem 1rem; }
            .luxury-btn { padding: 0.9rem 1.8rem; font-size: 0.88rem; }
        }
        /* ===== SOUPAPE DE SÉCURITÉ : tout se révèle seul après 2s (aucun produit invisible, style uniforme) ===== */
        @media (prefers-reduced-motion: no-preference) {
            .rv:not(.rv-in) { animation: rvAuto 0.7s cubic-bezier(0.22,1,0.36,1) 2s forwards; }
            @keyframes rvAuto { to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); letter-spacing: 0.04em; } }
            .product-card:not(.rv-in) .product-card-image::after { animation: curtainAuto 0.8s cubic-bezier(0.77,0,0.18,1) 2.2s forwards; }
            @keyframes curtainAuto { to { transform: scaleX(0); } }
        }
        /* ===== UNIFORMISATION DES CARTES PRODUITS (même design pour toutes) ===== */
        .product-card { display: flex; flex-direction: column; }
        .product-card-info { flex: 1; display: flex; flex-direction: column; background: #FFFFFF; }
        .product-card-price { margin-top: auto; padding-top: 0.45rem; }
        .product-card-stock { margin-top: 0.2rem; }
        /* ===== MODE BANNIÈRE LARGE : l'image remplit 100% de la largeur, sans fond flouté ===== */
        .promo-imgwrap.mode-wide { padding: 0 0 0.95rem; }
        .promo-imgwrap.mode-wide::before, .promo-imgwrap.mode-wide > img.promo-bg { display: none; }
        .promo-imgwrap.mode-wide > img#promoMainImg { width: 100%; max-width: 100%; max-height: none; border-radius: 0; box-shadow: none; }
        @media (max-width: 768px) { .promo-imgwrap.mode-wide { padding: 0 0 0.8rem; } }
        /* ===== MENU MOBILE ÉLARGI (blindé) : hamburger jusqu'à 992px ===== */
        @media (max-width: 992px) {
            ul#navLinks { display: none !important; }
            ul#navLinks.active { display: flex !important; position: fixed !important; top: 0 !important; left: 0 !important; width: 100% !important; height: 100% !important; background: rgba(255,255,255,0.98) !important; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); flex-direction: column !important; justify-content: center !important; align-items: center !important; gap: 1.7rem !important; z-index: 2000 !important; margin: 0 !important; padding: 0 !important; }
            ul#navLinks a { font-size: 1.05rem; }
            .hamburger { display: flex !important; }
            #siteLangBtn { font-size: 0.9rem; padding: 0.65rem 1.5rem; }
        }
        /* ===== BARRE DE MENU MOBILE COMPACTE : logo | 🌐 | 🛒 | ☰ ===== */
        .nav-mobile-actions { display: none; }
        @media (max-width: 992px) {
            .nav-mobile-actions { display: flex; align-items: center; gap: 0.45rem; margin-left: auto; margin-right: 0.4rem; }
            .nav-mobile-actions button { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(201,168,76,0.45); background: rgba(201,168,76,0.10); display: flex; align-items: center; justify-content: center; cursor: pointer; padding: 0; }
            #siteLangBtnM { color: #8B7320; font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 0.95rem; }
            .nmb-cart { position: relative; }
            .nmb-cart .cart-count { position: absolute; top: -4px; right: -4px; background: linear-gradient(160deg, #C9A84C, #E8D5A3); color: #23222B; font-size: 0.58rem; font-weight: 800; min-width: 17px; height: 17px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1.5px solid #FFFFFF; font-family: 'Manrope', sans-serif; padding: 0 3px; }
            /* navbar serrée */
            #navbar { padding: 0.55rem 0.8rem !important; }
            .nav-logo { font-size: 1.12rem !important; letter-spacing: 0.12em !important; }
            .nav-container { gap: 0.4rem; }
            .hamburger { padding: 8px !important; min-width: 42px !important; min-height: 42px !important; align-items: center; justify-content: center; }
            /* l'ancienne pastille flottante devient inutile (panier dans la barre) */
            #mobile-floating-cart { display: none !important; }
        }
        @media (max-width: 380px) {
            .nav-mobile-actions button { width: 36px; height: 36px; }
            .nav-logo { font-size: 1rem !important; letter-spacing: 0.09em !important; }
        }
        /* ===== DASHBOARD VISITEURS ===== */
        .vs-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 1.4rem; }
        .vs-card { background: linear-gradient(150deg, #FFFFFF, #FBF6EA); border: 1px solid rgba(201,168,76,0.28); border-radius: 16px; padding: 1.1rem 1rem; text-align: center; box-shadow: 0 4px 14px rgba(60,48,12,0.06); }
        .vs-num { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.9rem; color: #8B7320; line-height: 1.1; }
        .vs-label { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: #9A8F6A; margin-top: 0.35rem; }
        .vs-panel { background: #FFFFFF; border: 1px solid rgba(201,168,76,0.22); border-radius: 16px; padding: 1.1rem 1.2rem; margin-bottom: 1.4rem; box-shadow: 0 4px 14px rgba(60,48,12,0.05); }
        .vs-panel-title { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 0.82rem; letter-spacing: 0.06em; color: #6B5B2A; margin-bottom: 0.9rem; }
        .vs-chart { display: flex; align-items: flex-end; gap: 6px; height: 150px; }
        .vs-bcol { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; min-width: 0; }
        .vs-bar { width: 100%; max-width: 34px; border-radius: 6px 6px 0 0; background: linear-gradient(180deg, #E8D5A3, #C9A84C); position: relative; transition: height 0.5s cubic-bezier(0.22,1,0.36,1); }
        .vs-bar:hover { background: linear-gradient(180deg, #F0D48A, #B8942E); }
        .vs-bval { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 0.62rem; color: #8B7320; }
        .vs-bday { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 0.56rem; color: #9A8F6A; white-space: nowrap; }
        .vs-grid2 { display: grid; grid-template-columns: 1.2fr 1fr; gap: 1.4rem; }
        .vs-feed-item { display: flex; align-items: center; gap: 0.6rem; font-family: 'Manrope', sans-serif; font-size: 0.78rem; color: #4A4436; background: #FBF8F0; border: 1px solid rgba(201,168,76,0.18); border-radius: 10px; padding: 0.5rem 0.7rem; }
        .vs-feed-time { color: #9A8F6A; font-size: 0.68rem; margin-left: auto; white-space: nowrap; }
        @media (max-width: 992px) { .vs-cards { grid-template-columns: repeat(2, 1fr); } .vs-grid2 { grid-template-columns: 1fr; } }
        @media (max-width: 480px) { .vs-num { font-size: 1.5rem; } .vs-chart { height: 110px; } }
        /* ===== Squelette du hero pendant le chargement (évite le grand blanc au démarrage) ===== */
        .hero-skel { max-width: 1500px; margin: 4.6rem auto 1rem; height: min(44vh, 400px); border-radius: 18px; background: linear-gradient(100deg, #F3EDDD 30%, #FBF7EC 45%, #F3EDDD 60%); background-size: 220% 100%; animation: heroSkelShine 1.3s linear infinite; }
        @keyframes heroSkelShine { to { background-position: -220% 0; } }
        @media (max-width: 768px) { .hero-skel { margin: 4.4rem 0.8rem 0.8rem; height: 34vh; border-radius: 14px; } }
    
/* ===== Lisibilité des champs de la section IZGestia (texte foncé sur fond clair) ===== */
#admin-izgestia-import-section input, #admin-izgestia-import-section textarea, #admin-izgestia-import-section select { caret-color: #2A2A2A; }
#admin-izgestia-import-section input::placeholder, #admin-izgestia-import-section textarea::placeholder { color: #9A8F6A; }

/* ===== IMAGES PRODUITS : toujours ENTIÈRES et adaptées à la carte (aucun recadrage, aucune perte de qualité) ===== */
.product-card-image { background: #FFFFFF; }
.product-card-image img { width: 100%; height: 100%; object-fit: contain !important; object-position: center; padding: 0.7rem; box-sizing: border-box; }
@media (max-width: 768px) { .product-card-image img { padding: 0.45rem; } }

/* ===== FICHE PRODUIT : grande image + miniatures + barre du bas — images ENTIÈRES, jamais coupées ===== */
.product-page-image { background: #FFFFFF; }
.product-page-image img, #productDetailImg { width: 100%; height: 100%; object-fit: contain !important; object-position: center; padding: 1rem; box-sizing: border-box; }
.pp-thumbs img { object-fit: contain !important; background: #FFFFFF; padding: 4px; box-sizing: border-box; }
.pp-sticky img { object-fit: contain !important; background: #FFFFFF; }
@media (max-width: 768px) { .product-page-image img, #productDetailImg { padding: 0.6rem; } }
