
        /* ═══════════════════════════════════════════
           DESIGN SYSTEM
           ═══════════════════════════════════════════ */
        :root {
    --eden-black: #0a0a0a;
    --eden-dark: #1a0a10;
    --eden-wine: #6b1d3a;
    --eden-burgundy: #660810;
    --eden-rose: #b44d7a;
    --eden-blush: #d4a0b9;
    --eden-nude: #f0ddd5;
    --eden-cream: #faf5f0;
    --eden-gold: #c9a96e;
    --eden-gold-light: #e8d5a8;
    --eden-white: #fefefe;
    --eden-text: #270707;
    --eden-text-muted: #a09088;
    
    /* Official Brand Palette */
    --deep-red: #660810;
    --stone: #f1ebeb;
    --stone-dark: #d6c0b1;
    --dark-red: #270707;
    --grey-orange: #d6c0b1;
    
    /* Official Fonts */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --font-accent: 'Playfair Display', serif;
    
    --section-padding: clamp(60px, 10vw, 120px);
    
    /* Brand Design System */
    --organic-radius: 16px;
    --soft-shadow: 0 10px 40px rgba(102, 8, 16, 0.08);
}

        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; overflow-x: hidden; }
        body {
            font-family: var(--font-body);
            background: var(--eden-cream);
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; display: block; }

        /* ═══════════════════════════════════════════
           EDIT MODE TOOLBAR
           ═══════════════════════════════════════════ */
        .edit-toolbar {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 99999;
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            color: white;
            padding: 10px 24px;
            display: none;
            align-items: center;
            justify-content: space-between;
            font-size: 0.8rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }
        .edit-toolbar.active { display: flex; }
        .edit-toolbar .edit-info {
            display: flex; align-items: center; gap: 12px;
        }
        .edit-toolbar .edit-dot {
            width: 8px; height: 8px;
            background: #ff4757;
            border-radius: 50%;
            animation: editPulse 1.5s ease infinite;
        }
        .edit-toolbar button {
            padding: 8px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        .btn-save { background: #2ed573; color: #1a1a2e; }
        .btn-exit { background: rgba(255,255,255,0.15); color: white; margin-left: 8px; }

        @keyframes editPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        .edit-toggle {
            position: fixed;
            bottom: 90px; right: 28px;
            z-index: 9999;
            width: 44px; height: 44px;
            background: #1a1a2e;
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 1.1rem;
            cursor: pointer;
            box-shadow: 0 4px 16px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            display: none; /* Hidden by user request */
        }
        .edit-toggle:hover { transform: scale(1.1); background: var(--eden-burgundy); }

        /* Editable elements */
        body.editing [contenteditable="true"] {
            outline: 2px dashed var(--eden-burgundy) !important;
            outline-offset: 4px;
            cursor: text;
            min-width: 50px;
            min-height: 20px;
        }
        body.editing .editable-image {
            outline: 2px dashed var(--eden-gold) !important;
            outline-offset: 4px;
            cursor: pointer;
            position: relative;
        }
        body.editing .editable-image::after {
            content: '📷 Clique para trocar imagem';
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 8px 16px;
            border-radius: 4px;
            font-size: 0.7rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        body.editing .editable-image:hover::after {
            opacity: 1;
        }
        /* Hidden file input */
        .hidden-upload { display: none; }

        /* ═══════════════════════════════════════════
           SCROLL PROGRESS BACK TO TOP
           ═══════════════════════════════════════════ */
        .scroll-progress-container {
            position: fixed;
            bottom: 100px;
            right: 28px;
            width: 50px;
            height: 50px;
            z-index: 8999;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        .scroll-progress-container.visible {
            opacity: 1;
            visibility: visible;
        }
        .scroll-progress-svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            transform: rotate(-90deg);
        }
        .scroll-progress-bg {
            fill: #fff;
            stroke: #f0e6e0;
            stroke-width: 4;
            transition: fill 0.3s ease;
        }
        .scroll-progress-path {
            fill: none;
            stroke: #b25d76;
            stroke-width: 4;
            stroke-dasharray: 283;
            stroke-dashoffset: 283;
            stroke-linecap: round;
        }
        .scroll-progress-arrow {
            position: relative;
            z-index: 1;
            color: #b25d76;
            font-size: 1.2rem;
            font-weight: bold;
        }

        /* Classes utilitárias para hover sem bugar mobile duplo clique */
        .link-hover-opacity {
            transition: opacity 0.3s ease;
        }

        @media (hover: hover) {
            .scroll-progress-container:hover .scroll-progress-bg {
                fill: #fdf5f3;
            }
            .link-hover-opacity:hover {
                opacity: 0.8;
            }
        }

        /* ═══════════════════════════════════════════
           VIP WIDGET VIBRATION
           ═══════════════════════════════════════════ */
        @keyframes vipVibrate {
            0% { transform: scale(1) rotate(0deg); }
            10% { transform: scale(1.1) rotate(-10deg); }
            20% { transform: scale(1.1) rotate(10deg); }
            30% { transform: scale(1.1) rotate(-10deg); }
            40% { transform: scale(1.1) rotate(10deg); }
            50% { transform: scale(1) rotate(0deg); }
            100% { transform: scale(1) rotate(0deg); }
        }
        .vip-vibrate {
            animation: vipVibrate 1s ease;
        }


/* ═══════════════════════════════════════════
   BRAND GUIDELINES: ORGANIC SHAPES & SHADOWS
   ═══════════════════════════════════════════ */
.product-card, .product-thumb, .product-card-inner, .category-card, .modal-content, .cart-sidebar, .cookie-banner, .toast, .search-overlay .search-input {
    border-radius: var(--organic-radius) !important;
}

.product-card, .category-card, .modal-content, .cart-sidebar, .cookie-banner, .toast {
    box-shadow: var(--soft-shadow) !important;
}

.btn, .btn-primary, .btn-add, .btn-large, .btn-whatsapp, .btn-checkout, .back-btn {
    border-radius: 50px !important; /* Fully rounded for buttons */
}

/* Typography Hierarchy Enforcement */
h1, h2, h3, .offcanvas-title, .logo {
    font-family: var(--font-display) !important;
    font-weight: 700 !important;
}

h4, h5, h6, .subtitle {
    font-family: var(--font-display) !important;
    font-style: italic !important;
}

body, p, a, span, div, .product-title, .product-desc {
    font-family: var(--font-body);
}

.category-tag, .badge, .status, .label {
    font-family: var(--font-body) !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
}

/* Backgrounds */
.bg-stone { background-color: var(--stone) !important; }
.bg-deep-red { background-color: var(--deep-red) !important; }



/* ═══════════════════════════════════════════
   BRAND GUIDELINES: ORGANIC SHAPES & SHADOWS
   ═══════════════════════════════════════════ */
.product-card, .product-thumb, .product-card-inner, .category-card, .modal-content, .cart-sidebar, .cookie-banner, .toast, .search-overlay .search-input {
    border-radius: var(--organic-radius) !important;
}

.product-card, .category-card, .modal-content, .cart-sidebar, .cookie-banner, .toast {
    box-shadow: var(--soft-shadow) !important;
}

.btn, .btn-primary, .btn-add, .btn-large, .btn-whatsapp, .btn-checkout, .back-btn {
    border-radius: 50px !important;
}

h1, h2, h3, .offcanvas-title, .logo {
    font-family: var(--font-display) !important;
    font-weight: 700 !important;
}

h4, h5, h6, .subtitle {
    font-family: var(--font-display) !important;
    font-style: italic !important;
}

body, p, a, span, div, .product-title, .product-desc {
    font-family: var(--font-body);
}

.category-tag, .badge, .status, .label {
    font-family: var(--font-body) !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
}

.bg-stone { background-color: var(--stone) !important; }
.bg-deep-red { background-color: var(--deep-red) !important; }
