﻿.form-success {
            display: none;
            background: #d4edda;
            color: #155724;
            padding: 15px;
            border-radius: 8px;
            margin: 15px 0;
            text-align: center;
        }
        
        /* Simplified Remember Me Styles */
        .remember-me {
            margin: 15px 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .remember-me input[type="checkbox"] {
            width: 18px;
            height: 18px;
            cursor: pointer;
        }
        
        .remember-me label {
            font-size: 14px;
            color: #555;
            cursor: pointer;
        }
        
        /* Better CAPTCHA Design */
        .fun-captcha {
            margin: 20px 0;
            padding: 15px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 10px;
            color: white;
            text-align: center;
        }
        
        .captcha-title {
            font-size: 16px;
            margin-bottom: 10px;
            font-weight: bold;
        }
        
        .captcha-challenge {
            font-size: 24px;
            font-weight: bold;
            margin: 15px 0;
            padding: 10px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            display: inline-block;
            min-width: 120px;
        }
        
        .captcha-input {
            width: 120px;
            padding: 10px;
            border: 2px solid white;
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.9);
            font-size: 18px;
            text-align: center;
            font-weight: bold;
            color: #333;
            margin: 0 10px;
        }
        
        .captcha-input:focus {
            outline: none;
            border-color: #ffd700;
            background: white;
        }
        
        .captcha-buttons {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 15px;
        }
        
        .captcha-btn {
            padding: 8px 15px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .captcha-btn.refresh {
            background: #4CAF50;
            color: white;
        }
        
        .captcha-btn.refresh:hover {
            background: #45a049;
            transform: scale(1.05);
        }
        
        .captcha-btn.submit {
            background: #ff9800;
            color: white;
        }
        
        .captcha-btn.submit:hover {
            background: #e68900;
            transform: scale(1.05);
        }
        
        .captcha-error {
            color: #ffeb3b;
            font-size: 14px;
            margin-top: 10px;
            display: none;
            font-weight: bold;
        }
        
        /* Product Popup Modal Styles */
        .product-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            justify-content: center;
            align-items: flex-start;
            padding: env(safe-area-inset-top, 48px) 0 env(safe-area-inset-bottom, 24px);
        }
        
        .product-modal.open {
            display: flex;
        }
        
        .product-modal-content {
            background: white;
            border-radius: 12px;
            width: min(640px, 96%);
            max-width: 640px;
            margin: 40px auto;
            max-height: calc(100vh - 80px);
            overflow-y: auto;
            position: relative;
            animation: modalFadeIn 0.3s ease;
            padding-top: 28px;
            padding-bottom: 32px;
            padding-left: 22px;
            padding-right: 22px;
        }
        
        @keyframes modalFadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .product-modal-close {
            position: absolute;
            top: max(16px, env(safe-area-inset-top, 16px));
            right: max(16px, env(safe-area-inset-right, 16px));
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            z-index: 10;
            color: #333;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.9);
        }
        
        .product-modal-body {
            display: flex;
            flex-direction: column;
        }
        
        @media (min-width: 768px) {
            .product-modal-body {
                flex-direction: row;
            }
        }
        
        .product-modal-image {
            flex: 1;
            padding: 20px;
        }
        
        .product-modal-image img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            object-fit: cover;
        }
        
        .product-modal-details {
            flex: 1;
            padding: 30px;
            background: #f9f9f9;
            border-radius: 0 0 12px 12px;
        }
        
        @media (min-width: 768px) {
            .product-modal-details {
                border-radius: 0 12px 12px 0;
            }
        }
        
        .product-modal-title {
            font-size: 28px;
            margin-bottom: 10px;
            color: #333;
        }
        
        .product-modal-price {
            font-size: 24px;
            font-weight: bold;
            color: #e74c3c;
            margin-bottom: 20px;
        }
        
        .product-modal-description {
            font-size: 16px;
            line-height: 1.6;
            color: #666;
            margin-bottom: 25px;
        }
        
        .product-specifications {
            margin-bottom: 25px;
        }
        
        .spec-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #333;
            border-bottom: 2px solid #e74c3c;
            padding-bottom: 5px;
        }
        
        .spec-list {
            list-style: none;
            padding: 0;
        }
        
        .spec-list li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
        }
        
        .spec-list li:last-child {
            border-bottom: none;
        }
        
        .spec-name {
            font-weight: bold;
            color: #555;
        }
        
        .spec-value {
            color: #777;
        }
        
        .product-modal-actions {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }
        
        .btn-primary {
            flex: 2;
            background: #e74c3c;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .btn-primary:hover {
            background: #c0392b;
        }
        
        .btn-secondary {
            flex: 1;
            background: #34495e;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 6px;
            font-size: 16px;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .btn-secondary:hover {
            background: #2c3e50;
        }
        
        /* Search Bar Styles - FIXED TEXT COLOR */
        .search-box {
            position: relative;
            display: flex;
            align-items: center;
            margin-right: 15px;
        }
        
        .search-box input {
            padding: 8px 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            width: 200px;
            transition: all 0.3s ease;
            color: #333; /* FIXED: Changed from white to dark text */
            background: white;
        }
        
        .search-box input::placeholder {
            color: #777; /* Darker placeholder */
        }
        
        .search-box i {
            position: absolute;
            right: 10px;
            color: #777;
            cursor: pointer;
        }
        
        /* Search Results Styles */
        .search-results {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border: 1px solid #ddd;
            border-radius: 4px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            max-height: 300px;
            overflow-y: auto;
            z-index: 1000;
            display: none;
        }
        
        .search-result-item {
            padding: 10px 15px;
            border-bottom: 1px solid #eee;
            cursor: pointer;
            display: flex;
            align-items: center;
        }
        
        .search-result-item:hover {
            background-color: #f5f5f5;
        }
        
        .search-result-item img {
            width: 40px;
            height: 40px;
            object-fit: cover;
            border-radius: 4px;
            margin-right: 10px;
        }
        
        .search-result-item .product-info {
            flex: 1;
        }
        
        .search-result-item .product-name {
            font-weight: bold;
            margin-bottom: 4px;
            color: #333;
        }
        
        .search-result-item .product-description {
            font-size: 12px;
            color: #666;
            margin-bottom: 4px;
        }
        
        .search-result-item .product-price {
            color: #e74c3c;
            font-weight: bold;
        }
        
        .no-results {
            padding: 15px;
            text-align: center;
            color: #777;
        }
        
        /* Mobile styles */
        @media (max-width: 768px) {
            .nav-container {
                flex-wrap: wrap;
            }
            
            .nav-actions {
                order: 3;
                width: 100%;
                margin-top: 10px;
                justify-content: space-between;
            }
            
            .search-box {
                flex-grow: 1;
                margin-right: 10px;
            }
            
            .search-box input {
                width: 100%;
            }
            
            .cart-btn {
                white-space: nowrap;
            }
            
            .search-results {
                position: fixed;
                top: 120px;
                left: 10px;
                right: 10px;
                max-height: 50vh;
            }
            
            .product-modal-actions {
                flex-direction: column;
            }
            
            .captcha-challenge {
                font-size: 20px;
            }
            
            .captcha-input {
                width: 100px;
                font-size: 16px;
            }
        }
        
        @media (max-width: 480px) {
            .search-box input {
                padding: 6px 10px;
                font-size: 14px;
            }
            
            .product-modal-content {
                width: 95%;
            }
            
            .product-modal-details {
                padding: 20px;
            }
            
            .fun-captcha {
                padding: 12px;
            }
        }
        
        /* Highlight matching text */
        .highlight {
            background-color: #fff3cd;
            padding: 2px 4px;
            border-radius: 2px;
            color: #333;
        }
        
        /* Make product cards clickable */
        .product-card {
            cursor: pointer;
            transition: transform 0.2s;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
        }
        
        .category-item {
            cursor: pointer;
            transition: transform 0.2s;
        }
        
        .category-item:hover {
            transform: translateY(-5px);
        }
        
        /* About Us Section */
        .about-section {
            padding: 60px 20px;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }
        
        .about-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .about-content h2 {
            color: #333;
            margin-bottom: 20px;
            font-size: 32px;
        }
        
        .about-content p {
            font-size: 18px;
            line-height: 1.6;
            color: #555;
            margin-bottom: 30px;
        }
        
        .about-features {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-top: 40px;
        }
        
        .about-feature {
            flex: 1;
            min-width: 200px;
            max-width: 250px;
            padding: 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        
        .about-feature i {
            font-size: 40px;
            color: #e74c3c;
            margin-bottom: 15px;
        }
        
        .about-feature h4 {
            color: #333;
            margin-bottom: 10px;
        }
        
        .about-feature p {
            font-size: 14px;
            color: #666;
        }

        /* Clean Professional Watermark - NO SLANT */
        .watermark {
            position: fixed;
            bottom: 20px;
            right: 20px;
            font-size: 13px;
            color: rgba(231, 76, 60, 0.7); /* Your brand color with transparency */
            font-weight: bold;
            z-index: 999;
            pointer-events: none;
            background: rgba(255, 255, 255, 0.9);
            padding: 6px 12px;
            border-radius: 4px;
            border-left: 3px solid #e74c3c;
            font-family: 'Arial', sans-serif;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            /* NO rotation or animation - Clean and professional */
        }

.watermark::before {
            content: "";
        }

        @media (max-width: 768px) {
            .watermark {
                font-size: 11px;
                bottom: 10px;
                right: 10px;
                padding: 4px 8px;
            }
        }

.category-item img.featured-category-image {
    height: 280px;
    object-fit: contain;
    background: #fff;
    padding: 10px;
}

.client-label {
    color: black;
}

.butter-price-options[hidden] {
    display: none;
}

.butter-price-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
    padding: 0;
}

.price-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 18px;
    border: 1px solid rgba(34, 139, 78, 0.16);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
    background: #fff;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.price-option:hover {
    transform: translateY(-2px);
    border-color: rgba(34, 139, 78, 0.3);
}

.price-option input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border: 2px solid rgba(34, 139, 78, 0.4);
    border-radius: 50%;
    background: #ffffff;
    position: relative;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.price-option input[type="radio"]::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: #1e7a53;
    transform: scale(0);
    transition: transform 0.2s ease;
}

.price-option input[type="radio"]:checked::after {
    transform: scale(1);
}

.price-option input[type="radio"]:focus-visible {
    box-shadow: 0 0 0 2px rgba(36, 122, 80, 0.4);
}

.price-option label {
    flex: 1;
    margin: 0;
    font-weight: 700;
    font-size: 1.05rem;
    color: #4b2c16;
}

/* Premium Redesign */
:root {
    --primary: #6b2d16;
    --secondary: #f0bc6b;
    --accent: #228b4e;
    --dark: #20130d;
    --light: #fff8ee;
    --white: #ffffff;
    --gray: #6e6a67;
    --surface: #fffaf4;
    --surface-strong: #ffffff;
    --surface-deep: #f8efe2;
    --shadow-soft: 0 18px 50px rgba(53, 27, 12, 0.10);
    --shadow-card: 0 24px 60px rgba(53, 27, 12, 0.12);
    --border-soft: rgba(107, 45, 22, 0.10);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', 'Segoe UI', Tahoma, Arial, sans-serif;
    color: var(--dark);
    background:
        radial-gradient(circle at top, rgba(240, 188, 107, 0.18), transparent 34%),
        linear-gradient(180deg, #fffdf8 0%, #fff8ee 46%, #fffdf9 100%);
}

h1,
h2,
h3,
h4,
.nav-logo span,
.section-title h2,
.modal-panel h3,
.product-modal-title {
    font-family: 'Fraunces', Georgia, serif;
    letter-spacing: -0.03em;
}

a {
    color: inherit;
}

.watermark {
    left: 18px;
    right: auto;
    bottom: 18px;
    color: rgba(107, 45, 22, 0.7);
    border-left-color: rgba(107, 45, 22, 0.75);
}

.navbar {
    background: rgba(255, 251, 245, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(107, 45, 22, 0.08);
    box-shadow: 0 8px 28px rgba(50, 27, 13, 0.08);
}

.nav-container {
    max-width: 1240px;
    padding: 14px 24px;
    gap: 18px;
    display: flex;
    align-items: center;
    position: relative;
}

.nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
    flex: 1;
    justify-content: flex-end;
}

.nav-logo img {
    width: 58px;
    height: 58px;
}

.nav-logo span {
    font-size: clamp(1.7rem, 2.4vw, 2.2rem);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-menu a {
    padding: 12px 16px;
    border-radius: 999px;
    font-weight: 700;
    color: #68483a;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
    background: rgba(107, 45, 22, 0.08);
}

.nav-menu a.active::after {
    display: none;
}

.nav-container {
    position: relative;
}

.mobile-nav-toggle {
    display: none;
    margin-left: auto;
    padding: 8px;
    border-radius: 999px;
    border: 1px solid rgba(107, 45, 22, 0.15);
    background: rgba(255, 255, 255, 0.92);
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    transition: border-color 0.3s, transform 0.3s;
    z-index: 1100;
    font-size: 0;
}

.mobile-nav-toggle span {
    width: 26px;
    height: 3px;
    border-radius: 999px;
    background: var(--dark);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-nav-toggle.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-banner,
.mobile-category-bar {
    display: none;
}

.nav-actions {
    gap: 14px;
    margin-left: auto;
    display: flex;
    align-items: center;
}

.mobile-nav-extra {
    display: none;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.search-box input {
    width: 300px;
    min-height: 50px;
    border-radius: 16px;
    border: 1px solid rgba(107, 45, 22, 0.14);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.search-box i {
    color: var(--primary);
}

.cart-btn,
.hero-cta,
.order-btn,
.btn-primary,
.contact-action.primary,
.contact-action.secondary,
.hero-secondary {
    min-height: 52px;
    border-radius: 16px;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
}

.cart-btn,
.hero-cta,
.order-btn,
.btn-primary,
.contact-action.primary {
    background: linear-gradient(135deg, #239852 0%, #18753e 100%);
    color: #fff;
    box-shadow: 0 18px 35px rgba(34, 139, 78, 0.22);
    padding-inline: 32px;
    white-space: nowrap;
    font-size: 1rem;
}

.cart-btn:hover,
.hero-cta:hover,
.order-btn:hover,
.btn-primary:hover,
.contact-action.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(34, 139, 78, 0.28);
}

.hero-secondary,
.btn-secondary,
.contact-action.secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    border: 1px solid rgba(107, 45, 22, 0.14);
    background: rgba(255, 255, 255, 0.86);
    color: var(--primary);
    box-shadow: 0 12px 30px rgba(53, 27, 12, 0.08);
}

.hero-secondary:hover,
.btn-secondary:hover,
.contact-action.secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 248, 238, 0.96);
}

.hero-section {
    position: relative;
    overflow: hidden;
    margin: 18px 20px 28px;
    padding: 34px 0 42px;
    border-radius: 36px;
    background:
        radial-gradient(circle at top right, rgba(240, 188, 107, 0.35), transparent 28%),
        radial-gradient(circle at left center, rgba(34, 139, 78, 0.18), transparent 26%),
        linear-gradient(135deg, #fffaf3 0%, #f7ebdc 50%, #fffdf8 100%);
    color: var(--dark);
    box-shadow: var(--shadow-card);
}

.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    background: rgba(107, 45, 22, 0.05);
    pointer-events: none;
}

.hero-section::before {
    width: 300px;
    height: 300px;
    top: -120px;
    right: -40px;
}

.hero-section::after {
    width: 220px;
    height: 220px;
    left: -70px;
    bottom: -90px;
}

.hero-shell {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
    padding: 28px 34px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 36px;
    align-items: center;
}

.hero-copy {
    max-width: 680px;
}

.hero-kicker,
.section-mini,
.contact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    background: rgba(240, 188, 107, 0.20);
    margin-bottom: 16px;
}

.hero-copy h1 {
    font-size: clamp(2.9rem, 5vw, 4.8rem);
    line-height: 0.95;
    margin-bottom: 18px;
    color: #53210f;
}

.hero-lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5c514a;
    max-width: 620px;
    margin-bottom: 24px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
}

.hero-cta,
.hero-secondary {
    padding: 0 24px;
    text-decoration: none;
}

.hero-trust-line {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 26px;
}

.hero-trust-line span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #59473d;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(107, 45, 22, 0.08);
    border-radius: 999px;
    padding: 10px 14px;
}

.hero-trust-line i {
    color: var(--accent);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.metric-card {
    padding: 18px 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(107, 45, 22, 0.08);
    box-shadow: 0 14px 30px rgba(53, 27, 12, 0.08);
}

.metric-card strong {
    display: block;
    font-size: 1.45rem;
    color: #4d1d0d;
    margin-bottom: 6px;
}

.metric-card span {
    color: #6c615b;
    font-weight: 600;
}

.hero-visual {
    position: relative;
    min-height: 520px;
}

.hero-visual-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(180deg, #fff6e9 0%, #f2ddbf 100%);
    box-shadow: var(--shadow-card);
}

.hero-main-visual {
    padding: 34px;
    min-height: 460px;
}

.hero-main-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 24px 32px rgba(53, 27, 12, 0.18));
}

.hero-visual-badge {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 2;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(34, 139, 78, 0.92);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.hero-floating-card,
.hero-proof-card {
    position: absolute;
    right: -8px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 40px rgba(53, 27, 12, 0.14);
    border: 1px solid rgba(107, 45, 22, 0.10);
}

.hero-floating-card {
    bottom: 68px;
    width: min(280px, 72%);
    padding: 20px 22px;
}

.hero-floating-card p {
    margin-bottom: 8px;
    font-size: 0.84rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
}

.hero-floating-card strong {
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.5;
}

.hero-proof-card {
    left: -12px;
    bottom: 12px;
    max-width: 250px;
    padding: 18px 20px;
    color: #5c4c42;
    font-weight: 700;
}

.assurance-strip {
    max-width: 1240px;
    margin: 0 auto 32px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.assurance-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(107, 45, 22, 0.08);
}

.assurance-item i {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(240, 188, 107, 0.22);
    color: var(--primary);
    flex-shrink: 0;
}

.assurance-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--dark);
}

.assurance-item span {
    color: #6c615b;
    font-size: 0.95rem;
}

.page-section,
.new-products,
.about-section,
.client-section,
.reviews-section,
.delivery-section,
.contact-section {
    padding-top: 42px;
    padding-bottom: 42px;
}

.section-title {
    margin-bottom: 26px;
}

.section-title h2 {
    color: #5b220f;
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    margin-bottom: 10px;
}

.section-title p {
    max-width: 680px;
    margin: 0 auto;
    color: #726960;
    font-size: 1.05rem;
}

.section-title-light h2,
.section-title-light p {
    color: #fff;
}

.categories,
.products-grid,
.reviews-grid,
.contact-grid {
    max-width: 1240px;
}

.category-item,
.product-card,
.review-card,
.client-item,
.contact-card,
.process-card {
    border-radius: 28px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
}

.category-item,
.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.92);
}

.product-label {
    align-self: flex-start;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(240, 188, 107, 0.22);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-label.subtle {
    background: rgba(34, 139, 78, 0.12);
    color: var(--accent);
}

.category-item h3,
.product-card h4 {
    margin: 0;
    color: #53210f;
}

.category-item p,
.product-card p {
    color: #6c615b;
    margin: 0;
}

.category-footer,
.product-card-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-link {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--primary);
}

.category-price,
.product-card .price,
.product-modal-price {
    color: var(--accent);
}

.order-btn {
    width: 100%;
}

.reviews-section {
    padding: 52px 20px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin: 0 auto;
}

.review-card {
    padding: 28px;
    background: rgba(255, 255, 255, 0.9);
}

.review-stars {
    color: #d49731;
    font-size: 1.05rem;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
}

.review-card p {
    color: #5e534d;
    margin-bottom: 20px;
}

.review-meta strong {
    display: block;
    color: var(--dark);
}

.review-meta span {
    color: #7b7068;
    font-size: 0.95rem;
}

.client-section {
    background: linear-gradient(180deg, rgba(240, 188, 107, 0.08), rgba(255, 255, 255, 0));
}

.client-grid {
    max-width: 760px;
    gap: 22px;
}

.client-item {
    padding: 30px 24px;
    background: rgba(255, 255, 255, 0.92);
}

.delivery-section {
    padding: 52px 20px;
}

.delivery-shell {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.delivery-copy {
    padding: 36px;
    border-radius: 30px;
    background: linear-gradient(135deg, #5f2715 0%, #8f431f 100%);
    color: #fff;
    box-shadow: var(--shadow-card);
}

.delivery-copy h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
    margin-bottom: 16px;
}

.delivery-copy p {
    color: rgba(255, 255, 255, 0.88);
}

.delivery-copy .section-mini {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.delivery-areas,
.payment-note {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
}

.payment-note {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.process-steps {
    display: grid;
    gap: 18px;
}

.process-card {
    padding: 26px;
    background: rgba(255, 255, 255, 0.92);
}

.step-number {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #24924f 0%, #186d3a 100%);
    margin-bottom: 16px;
}

.process-card h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

    .contact-section {
        padding-top: 52px;
        padding-bottom: 80px;
        background:
            linear-gradient(135deg, rgba(61, 24, 12, 0.96) 0%, rgba(93, 49, 28, 0.96) 100%),
            url('back.jpg') center/cover;
    }

.contact-grid {
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.contact-card {
    padding: 28px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.contact-card.featured {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.10));
}

.contact-card h3 {
    margin-bottom: 14px;
}

.contact-card p,
.contact-list li {
    color: rgba(255, 255, 255, 0.82);
}

.contact-links {
    display: grid;
    gap: 12px;
    margin: 18px 0 22px;
}

.contact-links a {
    font-size: 1.15rem;
    font-weight: 800;
    text-decoration: none;
}

.contact-actions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-action {
    text-decoration: none;
    padding: 0 20px;
}

.contact-list {
    padding-left: 18px;
    display: grid;
    gap: 10px;
}

footer {
    background: #1d120d;
}

.footer-content p:last-child {
    margin-top: 10px;
}

.footer-content a {
    color: #f4c780;
    text-decoration: none;
    font-weight: 700;
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1205;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 999px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #24a857 0%, #157b3d 100%);
    box-shadow: 0 18px 35px rgba(34, 139, 78, 0.28);
    font-weight: 800;
}

.floating-whatsapp:hover {
    transform: translateY(-2px);
}

.modal-panel {
    width: min(560px, 94%);
    margin: 24px auto;
    border-radius: 28px;
    border: 1px solid rgba(107, 45, 22, 0.12);
    background: rgba(255, 255, 255, 0.98);
}

.form-scroll-container {
    max-height: 460px;
}

.compact-form input,
.compact-form select {
    border-radius: 14px;
    border-color: rgba(107, 45, 22, 0.16);
}

.product-modal-content {
    width: min(920px, 94%);
    border-radius: 30px;
    box-shadow: var(--shadow-card);
}

.product-modal-details {
    background: linear-gradient(180deg, #fffdf8 0%, #fff4e7 100%);
}

@media (max-width: 1024px) {
    .hero-shell,
    .delivery-shell,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: auto;
    }

    .hero-main-visual {
        min-height: 360px;
    }

    .hero-floating-card,
    .hero-proof-card {
        position: static;
        width: 100%;
        max-width: none;
        margin-top: 16px;
    }

    .assurance-strip,
    .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .watermark {
        left: 12px;
        bottom: 82px;
        font-size: 10px;
    }

    .nav-container {
        grid-template-columns: 1fr;
        display: grid;
        padding: 14px 16px 16px;
    }

    .nav-logo {
        justify-content: center;
    }

    .nav-menu {
        order: 2;
        width: 100%;
        overflow-x: auto;
        scrollbar-width: none;
        padding-bottom: 4px;
        gap: 10px;
    }

    .nav-menu::-webkit-scrollbar {
        display: none;
    }

    .nav-menu li {
        flex: 0 0 auto;
    }

    .nav-menu a {
        white-space: nowrap;
        padding: 10px 14px;
    }

    .nav-actions {
        order: 3;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
    }

    .search-box {
        margin-right: 0;
    }

    .search-box input,
    .cart-btn {
        width: 100%;
    }

    .hero-section {
        margin: 12px 12px 22px;
        border-radius: 26px;
    }

    .hero-shell {
        padding: 20px 18px;
        gap: 24px;
    }

    .hero-copy h1 {
        font-size: clamp(2.2rem, 10vw, 3.3rem);
    }

    .hero-actions,
    .hero-trust-line,
    .hero-metrics,
    .contact-actions-row,
    .product-modal-actions {
        grid-template-columns: 1fr;
        display: grid;
    }

    .hero-main-visual {
        min-height: 290px;
        padding: 20px;
    }

    .assurance-strip,
    .reviews-grid {
        grid-template-columns: 1fr;
        padding: 0 14px;
    }

    .categories,
    .products-grid {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: 84%;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 0 16px 12px;
    }

    .category-item,
    .product-card {
        scroll-snap-align: start;
    }

    .category-item img.featured-category-image {
        height: 240px;
    }

    .modal-panel {
        width: calc(100% - 16px);
        max-height: calc(100vh - 18px);
        margin: 9px auto;
        padding: 18px 14px;
        display: flex;
        flex-direction: column;
    }

    .form-scroll-container {
        max-height: none;
        flex: 1;
        padding-right: 0;
    }

    .form-actions {
        position: sticky;
        bottom: 0;
        background: rgba(255, 255, 255, 0.96);
    }

    .product-modal-content {
        width: calc(100% - 16px);
        max-height: calc(100vh - 18px);
    }

    .product-modal-details {
        padding: 22px 18px;
    }

    .floating-whatsapp {
        right: 12px;
        left: 12px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-copy h1 {
        font-size: 2.1rem;
    }

    .hero-lead,
    .section-title p,
    .review-card p {
        font-size: 0.98rem;
    }

    .metric-card {
        padding: 16px 14px;
    }

    .categories,
    .products-grid {
        grid-auto-columns: 90%;
    }
}

@media (max-width: 768px) {
    .watermark {
        display: none;
    }

    .navbar {
        border-radius: 0 0 22px 22px;
    }

    .nav-logo {
        justify-content: flex-start;
        gap: 12px;
    }

    .nav-logo img {
        width: 48px;
        height: 48px;
    }

    .nav-logo span {
        font-size: 2rem;
        line-height: 1;
    }

    .hero-section {
        margin: 10px 12px 18px;
        padding: 20px 0 26px;
        border-radius: 24px;
    }

    .hero-shell {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 18px 16px 20px;
    }

    .hero-copy {
        max-width: none;
    }

    .hero-kicker {
        margin-bottom: 12px;
        font-size: 0.78rem;
        padding: 7px 12px;
    }

    .hero-copy h1 {
        font-size: 1.95rem;
        line-height: 1.02;
        margin-bottom: 12px;
    }

    .hero-lead {
        font-size: 0.98rem;
        line-height: 1.65;
        margin-bottom: 16px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 14px;
    }

    .hero-cta,
    .hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-trust-line {
        display: grid;
        gap: 10px;
        margin-bottom: 0;
    }

    .hero-trust-line span {
        width: 100%;
        border-radius: 16px;
        padding: 12px 14px;
        font-size: 0.94rem;
    }

    .hero-metrics,
    .hero-visual {
        display: none;
    }

    .assurance-strip {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 12px;
        margin-bottom: 22px;
    }

    .assurance-item {
        padding: 16px;
        border-radius: 18px;
    }

    .page-section,
    .new-products,
    .about-section,
    .client-section,
    .reviews-section,
    .delivery-section,
    .contact-section {
        padding-top: 28px;
        padding-bottom: 28px;
    }

    .section-title {
        margin-bottom: 18px;
        padding: 0 14px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .section-title p {
        font-size: 0.96rem;
    }

    .categories,
    .products-grid {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(260px, 88%);
        overflow-x: auto;
        gap: 14px;
        padding: 0 14px 10px;
        scroll-snap-type: x proximity;
    }

    .category-item,
    .product-card {
        padding: 18px;
        border-radius: 22px;
        scroll-snap-align: start;
        min-width: 260px;
        min-height: 420px;
    }

    .category-item img.featured-category-image {
        height: 220px;
        padding: 8px;
    }

    .product-card img {
        height: 170px;
    }

    .category-footer,
    .product-card-footer,
    .contact-actions-row,
    .product-modal-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .reviews-grid,
    .delivery-shell,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 14px;
    }

    .review-card,
    .contact-card,
    .process-card {
        padding: 20px 18px;
        border-radius: 22px;
    }

    .delivery-copy {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .contact-links a {
        font-size: 1.02rem;
    }

    .modal-panel {
        width: calc(100% - 14px);
        max-height: calc(100vh - 12px);
        margin: 6px auto;
        padding: 16px 12px;
        border-radius: 20px;
    }

    .modal-panel h3 {
        font-size: 1.5rem;
        padding-bottom: 12px;
        margin-bottom: 14px;
    }

    .compact-form {
        gap: 10px;
    }

    .compact-form input,
    .compact-form select {
        min-height: 48px;
        font-size: 16px;
    }

    .form-actions {
        gap: 10px;
        padding-top: 12px;
    }

    .form-actions button {
        min-height: 48px;
    }

    .product-modal-content {
        width: calc(100% - 14px);
        max-height: calc(100vh - 12px);
        border-radius: 22px;
    }

    .product-modal-image {
        padding: 14px;
    }

    .product-modal-details {
        padding: 18px 16px;
    }

    .product-modal-title {
        font-size: 2rem;
    }

    .floating-whatsapp {
        left: auto;
        right: 12px;
        bottom: 12px;
        width: 56px;
        height: 56px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
        box-shadow: 0 16px 30px rgba(34, 139, 78, 0.28);
    }

    .floating-whatsapp span {
        display: none;
    }
}

@media (max-width: 480px) {
    .nav-logo span {
        font-size: 1.55rem;
    }

    .hero-copy h1 {
        font-size: 1.75rem;
    }

    .hero-lead,
    .section-title p,
    .review-card p {
        font-size: 0.94rem;
    }

    .categories,
    .products-grid {
        grid-auto-columns: 92%;
    }

    .hero-trust-line span {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    body.nav-open {
        overflow-y: auto;
    }

    .mobile-nav-toggle {
        display: inline-flex;
    }

    .nav-container {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 12px 16px;
    }

    .nav-content {
        display: none;
        flex-direction: column;
        gap: 16px;
        padding: 22px 20px 24px;
        border-radius: 0 0 28px 28px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 28px 60px rgba(0, 0, 0, 0.22);
        width: 100%;
        margin-top: 8px;
    }

    .nav-content.open {
        display: flex;
    }

    .nav-content {
        max-height: calc(100vh - 74px);
        overflow-y: auto;
        scrollbar-width: thin;
        padding-right: 8px;
    }

    .nav-content::-webkit-scrollbar {
        width: 6px;
    }

    .nav-content::-webkit-scrollbar-thumb {
        background: rgba(34, 139, 78, 0.4);
        border-radius: 999px;
    }

    .nav-actions {
        flex-direction: column;
        width: 100%;
        margin: 0;
    }

    .nav-actions .search-box {
        width: 100%;
    }

    .nav-actions .search-box input {
        width: 100%;
        min-height: 48px;
        border-radius: 16px;
        padding: 12px 16px;
    }

    .nav-actions .cart-btn {
        width: 100%;
        border-radius: 16px;
        font-size: 1rem;
        justify-content: center;
    }

    .nav-menu {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .nav-menu li {
        width: 100%;
        margin: 0;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        padding: 14px 16px;
        border-radius: 18px;
        background: rgba(34, 139, 78, 0.04);
        border: 1px solid rgba(34, 139, 78, 0.12);
        color: var(--dark);
        font-weight: 700;
        text-align: left;
        white-space: normal;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background: rgba(34, 139, 78, 0.12);
        color: var(--primary);
    }

    .mobile-nav-extra {
        display: none;
        gap: 12px;
    }

    .nav-content.open .mobile-nav-extra {
        display: flex;
        flex-direction: column;
    }

    .nav-content.open .mobile-banner {
        display: block;
    }

    .nav-content.open .mobile-category-bar {
        display: grid;
    }

    .mobile-banner {
        margin: 0;
        border-radius: 20px;
        background: linear-gradient(135deg, #6b2d16, #d17d42);
        color: #fff;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
    }

    .mobile-banner-content {
        padding: 14px 18px;
    }

    .mobile-banner-kicker {
        font-size: 0.75rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        margin-bottom: 6px;
        color: rgba(255, 255, 255, 0.9);
    }

    .mobile-banner h3 {
        margin: 0;
        font-size: 1.6rem;
        font-weight: 700;
    }

    .mobile-banner-subtitle {
        margin: 6px 0 0;
        font-size: 0.9rem;
        opacity: 0.85;
    }

    .mobile-category-bar {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 6px;
    }

    .mobile-category {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 12px 6px;
        background: rgba(255, 255, 255, 0.92);
        border-radius: 18px;
        text-decoration: none;
        color: var(--dark);
        border: 1px solid rgba(34, 139, 78, 0.2);
        box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
        font-size: 0.8rem;
    }

    .mobile-category i {
        font-size: 1.05rem;
        color: #1b6c45;
    }

    .mobile-category span {
        font-weight: 700;
    }

    .contact-section {
        padding-bottom: 110px;
    }

    .contact-card {
        padding: 26px;
    }
}

