
        /* ============================================================
           COMPLETE CSS – ALL STYLES INTEGRATED
           ============================================================ */
        * { margin:0; padding:0; box-sizing:border-box; -webkit-tap-highlight-color:transparent; }
        :root {
            --br: #7A4A1E; --bm: #9E6532; --bl: #C4893E; --bll: #E8C89A;
            --bp: #FDF5EC; --bs: #F0D8B0; --dark: #3D2008; --text: #2C1A06;
            --muted: #7A5A3A; --border: #E8D5BC; --cream-light: #FFF9F2;
            --shadow-sm: 0 8px 20px rgba(0,0,0,0.03); --shadow-md: 0 12px 28px rgba(122,74,30,0.08);
            --transition: all 0.25s ease;
        }
        body { font-family:'Tajawal',sans-serif; background:#FCF8F2; color:var(--text); line-height:1.5; }
/* ===== BACK-TO-TOP – FIX MOBILE VISIBILITY ===== */
/* ===== BACK-TO-TOP – fixed left bottom ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 52px;
    height: 52px;
    background: var(--br);
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    z-index: 1000; /* higher than social */
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}
.back-to-top:hover { background: var(--dark); transform: translateY(-3px); }

/* ===== COLLAPSIBLE SOCIAL BUTTON – placed above back‑to‑top ===== */
.social-collapse {
    position: fixed;
    bottom: 100px;       /* above the back‑to‑top (30px + 52px + gap) */
    left: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 12px;
}
.social-toggle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--br);
    color: #fff;
    border: none;
    box-shadow: 0 4px 16px rgba(122, 74, 30, 0.25);
    cursor: pointer;
    font-size: 24px;
    transition: transform 0.3s ease, background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-toggle:hover { transform: scale(1.05); background: var(--dark); }
.social-toggle i { transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.social-toggle.open i { transform: rotate(45deg); }

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: scale(0.5) translateY(20px);
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.social-collapse.open .social-icons {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: all;
}
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: var(--text);
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.25s ease;
    border: 1px solid var(--border);
}
.social-icon:hover {
    transform: scale(1.1) translateX(-3px);
    color: #fff;
    border-color: transparent;
}
/* Brand hover colors... */

/* Hide back‑to‑top when social menu is open */
.social-collapse.open ~ .back-to-top {
    display: none !important;
}
.contact-alert {
    padding: 16px 20px;
    border-radius: 16px;
    margin-bottom: 1.2rem;
    font-weight: 600;
}
.contact-alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}
.contact-alert-error {
    background: #fde8e5;
    color: #c0392b;
    border: 1px solid #f5c6cb;
}
/* ===== MOBILE ADJUSTMENTS – No overlap ===== */
@media (max-width: 640px) {
    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    .social-collapse {
        bottom: 76px;      /* 20px (arrow) + 44px (arrow height) + 12px gap */
        left: 20px;
    }
    .social-toggle {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    .social-icons {
        gap: 8px;
    }
}
        /* ===== FLYING GLASS NAV ===== */
        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 2rem;
            height: 80px;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(232, 200, 154, 0.3);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
            position: sticky;
            top: 0;
            z-index: 100;
            opacity: 0;
            transform: translateY(-100%);
            animation: flyInNavBar 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            animation-delay: 0.1s;
        }
        @keyframes flyInNavBar {
            0% { opacity: 0; transform: translateY(-100%); }
            100% { opacity: 1; transform: translateY(0); }
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .logo-img { height: 45px; width: auto; }
        .nav-brand {
            font-size: 22px;
            font-weight: 900;
            color: var(--dark);
            letter-spacing: -0.3px;
        }
        .nav-links {
            display: flex;
            gap: 12px;
            flex: 1;
            justify-content: center;
        }
        .nav-links a {
            font-size: 15px;
            font-weight: 600;
            color: var(--muted);
            padding: 8px 18px;
            border-radius: 40px;
            text-decoration: none;
            transition: var(--transition);
            white-space: nowrap;
            opacity: 0;
            transform: translateY(-15px);
            animation: flyInNavLink 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
        }
        .nav-links a:nth-child(1) { animation-delay: 0.25s; }
        .nav-links a:nth-child(2) { animation-delay: 0.30s; }
        .nav-links a:nth-child(3) { animation-delay: 0.35s; }
        .nav-links a:nth-child(4) { animation-delay: 0.40s; }
        .nav-links a:nth-child(5) { animation-delay: 0.45s; }
        @keyframes flyInNavLink {
            0% { opacity: 0; transform: translateY(-15px); }
            100% { opacity: 1; transform: translateY(0); }
        }
        .nav-links a:hover,
        .nav-links a.active {
            background: var(--bp);
            color: var(--br);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            width: 0;
            height: 2.5px;
            background: var(--br);
            transition: width 0.3s ease, left 0.3s ease;
        }
        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 80%;
            left: 10%;
        }
        .nav-right {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-shrink: 0;
        }
        .lang-btn {
            padding: 0 18px;
            height: 42px;
            font-size: 13px;
            font-weight: 700;
            border-radius: 40px;
            border: 1px solid var(--border);
            background: #fff;
            cursor: pointer;
            font-family: inherit;
            color: var(--bm);
            display: flex;
            align-items: center;
            gap: 6px;
            transition: var(--transition);
        }
        .lang-btn:hover {
            background: var(--bp);
            border-color: var(--bll);
        }
        .hamburger {
            display: none;
            width: 44px;
            height: 44px;
            border-radius: 30px;
            border: 1px solid var(--border);
            background: #fff;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            transition: var(--transition);
        }
        .hamburger:hover { background: var(--bp); }

        /* ===== FULL‑SCREEN OVERLAY MENU ===== */
        .nav-overlay {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 480px;
            height: 100vh;
            background: #ffffff;
            z-index: 10000;
            transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            display: flex;
            flex-direction: column;
            padding: 2rem 2rem 2.5rem;
            box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
            overflow-y: auto;
        }
        .nav-overlay.open { right: 0; }
        .nav-overlay-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--border);
            margin-bottom: 2rem;
        }
        .nav-overlay-logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .nav-overlay-logo img { height: 40px; width: auto; }
        .nav-overlay-close {
            background: none;
            border: none;
            font-size: 32px;
            color: var(--text);
            cursor: pointer;
            transition: transform 0.3s ease;
            padding: 4px;
        }
        .nav-overlay-close:hover { transform: rotate(90deg); }
        .nav-overlay-body {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 6px;
            justify-content: center;
            padding: 1rem 0;
        }
        .nav-overlay-link {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px 20px;
            border-radius: 16px;
            font-size: 22px;
            font-weight: 700;
            color: var(--text);
            text-decoration: none;
            transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
        }
        .nav-overlay-link i {
            font-size: 26px;
            color: var(--br);
            width: 32px;
            text-align: center;
        }
        .nav-overlay-link:hover,
        .nav-overlay-link.active {
            background: var(--bp);
            color: var(--br);
            transform: translateX(8px);
        }
        .nav-overlay-footer {
            border-top: 1px solid var(--border);
            padding-top: 1.5rem;
            margin-top: 1rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .nav-overlay-socials {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
        }
        .nav-overlay-socials a {
            color: var(--muted);
            font-size: 24px;
            transition: color 0.25s ease, transform 0.25s ease;
        }
        .nav-overlay-socials a:hover {
            color: var(--br);
            transform: scale(1.1);
        }
        .nav-overlay-lang {
            background: var(--bp);
            border: 1px solid var(--border);
            padding: 10px 28px;
            border-radius: 60px;
            font-weight: 700;
            color: var(--br);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            cursor: pointer;
            transition: background 0.25s ease;
            align-self: center;
            font-family: inherit;
        }
        .nav-overlay-lang:hover { background: var(--bll); }
        .nav-overlay-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s ease;
        }
        .nav-overlay-backdrop.show {
            opacity: 1;
            visibility: visible;
        }

        /* ===== RESPONSIVE NAV ===== */
        @media (max-width: 900px) {
            .nav-links { display: none !important; }
            .hamburger { display: flex !important; }
        }
        @media (max-width: 640px) {
            .nav { padding: 0 1rem; height: 70px; }
            .nav-brand { font-size: 18px; }
            .logo-img { height: 35px; }
            .nav-overlay { max-width: 100%; padding: 1.5rem; }
            .nav-overlay-link { font-size: 18px; padding: 14px 16px; }
            .nav-overlay-link i { font-size: 22px; width: 28px; }
        }

        /* ===== HERO – FULL SCREEN SLIDER ===== */
        .hero {
            width: 100%;
            height: 100vh;
            min-height: 600px;
            position: relative;
            overflow: hidden;
            padding: 0;
            background: var(--dark);
        }
        .hero-slider-wrapper {
            width: 100%;
            height: 100%;
            position: relative;
        }
        .hero-slider {
            width: 100%;
            height: 100%;
            position: relative;
        }
        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transform: scale(1.1);
            transition: opacity 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                        transform 2.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform, opacity;
        }
        .hero-slide.active {
            opacity: 1;
            transform: scale(1);
        }
        .slide-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(61,32,8,0.8) 0%, rgba(61,32,8,0.3) 100%);
            pointer-events: none;
        }
        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
            text-align: center;
            width: 90%;
            max-width: 800px;
            padding: 1rem;
        }
        .hero-content .hero-pill {
            display: inline-flex;
            background: rgba(232,200,154,0.15);
            border: 0.5px solid rgba(232,200,154,0.3);
            border-radius: 60px;
            padding: 6px 24px;
            font-size: 13px;
            font-weight: 700;
            color: #E8C89A;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(4px);
            animation: fadeUp 0.8s 0.3s both;
        }
        .hero-content .hero-h1 {
            font-size: clamp(2.8rem, 8vw, 5.5rem);
            font-weight: 900;
            color: #fff;
            line-height: 1.1;
            margin-bottom: 0.8rem;
            text-shadow: 0 4px 30px rgba(0,0,0,0.3);
            animation: fadeUp 0.8s 0.5s both;
        }
        .hero-content .hero-h1 em {
            color: #E8C89A;
            font-style: normal;
            background: none;
            -webkit-text-fill-color: #E8C89A;
            animation: shimmerText 4s ease-in-out infinite;
        }
        @keyframes shimmerText {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        .hero-content .hero-p {
            font-size: clamp(1rem, 1.5vw, 1.3rem);
            color: rgba(255,255,255,0.8);
            max-width: 600px;
            margin: 0 auto 1.8rem;
            line-height: 1.7;
            animation: fadeUp 0.8s 0.7s both;
        }
        .hero-content .hero-btns {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeUp 0.8s 0.9s both;
        }
        .hero-content .hero-trust {
            display: flex;
            gap: 2rem;
            justify-content: center;
            margin-top: 2rem;
            font-size: 14px;
            color: rgba(255,255,255,0.7);
            animation: fadeUp 0.8s 1.1s both;
        }
        .hero-trust span {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .hero-trust span i { color: #E8C89A; }
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Slider arrows */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 20;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(6px);
            border: 1px solid rgba(255,255,255,0.2);
            color: #fff;
            font-size: 28px;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .slider-arrow:hover {
            background: rgba(255,255,255,0.3);
            transform: translateY(-50%) scale(1.05);
        }
        .slider-arrow.prev { left: 20px; }
        .slider-arrow.next { right: 20px; }

        /* Dots */
        .hero-slider-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 16px;
            z-index: 20;
        }
        .hero-slider-dots .dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            cursor: pointer;
            transition: background 0.3s, transform 0.3s;
            border: 1px solid rgba(255,255,255,0.2);
        }
        .hero-slider-dots .dot.active {
            background: #fff;
            transform: scale(1.25);
            border-color: #fff;
        }
        .hero-slider-dots .dot:hover {
            background: rgba(255,255,255,0.7);
        }

        /* Scroll indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 15;
            text-align: center;
            color: rgba(255,255,255,0.6);
            animation: bounceDown 2s infinite;
        }
        .scroll-text {
            display: block;
            font-size: 12px;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 6px;
        }
        .scroll-mouse {
            width: 26px;
            height: 40px;
            border: 2px solid rgba(255,255,255,0.5);
            border-radius: 14px;
            margin: 0 auto;
            position: relative;
        }
        .scroll-wheel {
            display: block;
            width: 4px;
            height: 10px;
            background: rgba(255,255,255,0.8);
            border-radius: 2px;
            margin: 6px auto 0;
            animation: scrollWheel 1.6s infinite;
        }
        @keyframes scrollWheel {
            0% { transform: translateY(0); opacity: 1; }
            100% { transform: translateY(16px); opacity: 0; }
        }
        @keyframes bounceDown {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(6px); }
        }

        /* Floating badges */
        .hfb {
            position: absolute;
            z-index: 12;
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(8px);
            border-radius: 24px;
            padding: 10px 18px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 1px solid rgba(255,255,255,0.3);
            animation: pulseGlow 3s ease-in-out infinite;
        }
        @keyframes pulseGlow {
            0% { box-shadow: 0 8px 20px rgba(0,0,0,0.05); }
            50% { box-shadow: 0 8px 30px rgba(122,74,30,0.15); }
            100% { box-shadow: 0 8px 20px rgba(0,0,0,0.05); }
        }

        /* Responsive hero */
        @media (max-width: 900px) {
            .slider-arrow {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }
            .slider-arrow.prev { left: 10px; }
            .slider-arrow.next { right: 10px; }
            .hero-content .hero-h1 { font-size: clamp(2rem, 7vw, 3.5rem); }
            .hero-content .hero-trust { gap: 1rem; flex-wrap: wrap; }
            .hfb { display: none; }
            .scroll-indicator { display: none; }
        }
        @media (max-width: 640px) {
            .hero { min-height: 500px; }
            .hero-content .hero-p { font-size: 0.95rem; }
            .hero-slider-dots .dot { width: 10px; height: 10px; gap: 10px; }
        }

        /* ===== STATS ===== */
        .stats-strip {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            background: #fff;
        }
        .stat-item { text-align:center; padding:1.6rem; border-left:1px solid var(--border); }
        .stat-item:first-child { border-left: none; }
        .stat-n { font-size:34px; font-weight:900; color:var(--br); display: inline-block; transition: transform 0.3s ease; }
        .stat-item:hover .stat-n { transform: scale(1.08); }
        .stat-l { font-size:13px; color:var(--muted); font-weight:600; margin-top:4px; }

        /* ===== MARQUEE ===== */
        .mq-wrap {
            background:var(--bp); padding:12px 0; overflow:hidden;
            border-top:1px solid #E8C89A; border-bottom:1px solid #E8C89A;
        }
        .mq-inner { display:flex; gap:2.5rem; white-space:nowrap; animation:scroll 30s linear infinite; }
        @keyframes scroll { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }
        .mq-item { display:flex; align-items:center; gap:8px; font-weight:700; color:var(--br); font-size:13px; }

        /* ===== ABOUT US ===== */
        .about-section {
            padding: 4rem 0;
            background: linear-gradient(135deg, #faf6f0 0%, #f3ece3 100%);
            position: relative;
            overflow: hidden;
        }
        .about-section::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 60%;
            height: 80%;
            background: radial-gradient(circle, rgba(232,200,154,0.08) 0%, transparent 70%);
            pointer-events: none;
        }
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        .about-image {
            position: relative;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 0 20px 40px -12px rgba(0,0,0,0.12);
        }
        .about-image img { width:100%; height:auto; display:block; transition:transform 0.6s ease; }
        .about-image:hover img { transform: scale(1.02); }
        .about-float-icon {
            position: absolute;
            width: 60px;
            height: 60px;
            background: rgba(255,255,255,0.85);
            backdrop-filter: blur(6px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: var(--br);
            box-shadow: 0 8px 20px rgba(0,0,0,0.06);
            border: 1px solid rgba(255,255,255,0.3);
        }
        .about-float-icon:first-child { top: -10px; right: -10px; }
        .about-float-icon.second { bottom: -10px; left: -10px; font-size: 22px; width: 50px; height: 50px; }
        .about-text { padding: 0.5rem 0; }
        .about-badge {
            display: inline-block;
            background: var(--br);
            color: #fff;
            padding: 4px 16px;
            border-radius: 40px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 0.8rem;
        }
        .about-title {
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 900;
            color: var(--dark);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .about-description {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text);
            opacity: 0.85;
            margin-bottom: 1.8rem;
        }
        .about-stats {
            display: flex;
            gap: 2.5rem;
            margin-bottom: 1.8rem;
            flex-wrap: wrap;
        }
        .about-stat-item { display: flex; flex-direction: column; }
        .about-stat-item .stat-number {
            font-size: 28px;
            font-weight: 900;
            color: var(--br);
            line-height: 1.2;
        }
        .about-stat-item .stat-label {
            font-size: 13px;
            color: var(--muted);
            font-weight: 600;
        }
        .about-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 800;
            color: var(--br);
            text-decoration: none;
            border-bottom: 2px solid var(--bll);
            padding-bottom: 4px;
            transition: var(--transition);
        }
        .about-cta:hover {
            color: var(--dark);
            border-color: var(--br);
            gap: 12px;
        }

        /* ===== CATALOG LAYOUT ===== */
        .wrap { max-width:1280px; margin:0 auto; padding:0 2rem; }
        .sec { padding:4rem 0 3rem; }
        .sec-lbl { font-size:12px; font-weight:800; color:var(--bl); letter-spacing:1px; text-transform:uppercase; }
        .sec-ttl { font-size:clamp(24px,3.5vw,36px); font-weight:900; color:var(--dark); line-height:1.2; }
        .sec-hd { display:flex; justify-content:space-between; align-items:flex-end; flex-wrap:wrap; gap:12px; margin-bottom:2rem; }

        .brands-strip {
            background:#fff; border-radius:28px; padding:1rem 1.5rem;
            margin-bottom:2rem; border:1px solid var(--border); box-shadow:var(--shadow-sm);
        }
        .brands-title {
            font-size:13px; font-weight:700; color:var(--muted);
            margin-bottom:12px; display:flex; align-items:center; gap:8px;
        }
        .brands-grid {
            display:flex; flex-wrap:wrap; gap:16px; align-items:center; justify-content:flex-start;
        }
        .brand-card {
            display:flex; flex-direction:column; align-items:center; gap:8px;
            background:var(--cream-light); border-radius:20px; padding:12px 20px;
            cursor:pointer; transition:var(--transition); border:1px solid transparent; min-width:100px;
        }
        .brand-card.active { background:var(--bp); border-color:var(--br); box-shadow:0 6px 12px rgba(122,74,30,0.1); }
        .brand-logo {
            width:60px; height:60px; background:#fff; border-radius:60px;
            display:flex; align-items:center; justify-content:center; overflow:hidden;
            box-shadow:0 2px 8px rgba(0,0,0,0.05); transition:0.2s;
        }
        .brand-logo img { width:100%; height:100%; object-fit:contain; }
        .brand-card:hover .brand-logo { transform:scale(1.05); }
        .brand-name { font-size:13px; font-weight:700; color:var(--dark); }
        .brand-card.active .brand-name { color:var(--br); }

        .filter-panel {
            background:#fff; border-radius:28px; padding:1.2rem 1.8rem;
            margin-bottom:2rem; border:1px solid var(--border); box-shadow:var(--shadow-sm);
            display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:1rem;
        }
        .product-search { min-width:240px; position:relative; }
        .product-search input {
            width:100%; padding:10px 18px 10px 42px; border-radius:60px;
            border:1px solid var(--border); background:var(--cream-light);
            font-family:inherit; font-size:13px; outline:none; transition:0.2s;
        }
        .product-search input:focus { border-color:var(--bl); background:#fff; }
        .product-search i {
            position:absolute; right:16px; top:50%; transform:translateY(-50%);
            color:var(--muted);
        }
        .clear-filters {
            background:transparent; border:1px solid var(--border);
            padding:8px 20px; border-radius:40px; font-size:12px; font-weight:700;
            color:var(--br); cursor:pointer; transition:0.2s;
        }
        .result-count {
            font-size:13px; color:var(--muted); background:var(--bp);
            padding:5px 12px; border-radius:30px;
        }

        .cat-pill-row {
            display:flex; gap:12px; overflow-x:auto; padding-bottom:12px; margin-bottom:2rem;
        }
        .cpill {
            padding:10px 24px; border-radius:50px; border:1px solid var(--border);
            font-size:13px; font-weight:700; background:#fff; color:var(--muted);
            white-space:nowrap; display:flex; align-items:center; gap:8px;
            cursor:pointer; transition:0.2s;
        }
        .cpill.act { background:var(--br); color:#F0D8B0; border-color:var(--br); }

        /* ===== PRODUCT CARDS ===== */
        .prod-grid {
            display:grid; grid-template-columns:repeat(auto-fill, minmax(220px,1fr));
            gap:28px;
        }
        .product-card {
            background: #ffffff;
            border-radius: 32px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: none;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                        transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                        box-shadow 0.4s ease,
                        background 0.3s ease;
        }
        .product-card.show {
            opacity: 1;
            transform: translateY(0);
        }
        .product-card:hover {
            transform: translateY(-8px) scale(1.01);
            box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.12),
                        0 8px 24px -6px rgba(122, 74, 30, 0.08);
            background: #fefcf9;
        }
        .card-img {
            aspect-ratio: 1 / 1;
            overflow: hidden;
            position: relative;
            background: #f6f1ea;
        }
        .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .product-card:hover .card-img img { transform: scale(1.06); }
        .badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(6px);
            padding: 6px 16px;
            border-radius: 40px;
            font-size: 11px;
            font-weight: 800;
            color: var(--br);
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
            text-transform: uppercase;
            border: 0.5px solid rgba(255,255,255,0.3);
        }
        .card-info { padding: 1.2rem 1.2rem 1.4rem; }
        .company-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 600;
            color: var(--muted);
            background: transparent;
            padding: 0;
            margin-bottom: 8px;
        }
        .company-logo-small {
            width: 20px; height: 20px; border-radius: 50%; object-fit: cover;
            border: 1px solid rgba(0,0,0,0.04);
        }
        .product-name {
            font-size: 1.05rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 6px;
            line-height: 1.3;
        }
        .product-price {
            font-size: 1.2rem;
            font-weight: 900;
            color: var(--br);
            margin: 8px 0 12px;
            letter-spacing: -0.2px;
        }
        .detail-link {
            display: inline-block;
            font-size: 12px;
            font-weight: 700;
            color: var(--bl);
            position: relative;
            padding-bottom: 2px;
            transition: color 0.2s ease;
        }
        .detail-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0;
            height: 2px;
            background: var(--br);
            transition: width 0.3s ease;
        }
        .product-card:hover .detail-link::after {
            width: 100%;
            left: 0;
            right: auto;
        }
        .product-card:hover .detail-link { color: var(--br); }

        /* ===== LOAD MORE ===== */
        .load-more-wrapper { text-align: center; margin-top: 2rem; }
        .load-more-btn {
            display: inline-block;
            padding: 12px 40px;
            border-radius: 60px;
            background: transparent;
            border: 2px solid var(--br);
            color: var(--br);
            font-weight: 800;
            font-family: inherit;
            font-size: 14px;
            cursor: pointer;
            transition: var(--transition);
            letter-spacing: 0.3px;
            position: relative;
            overflow: hidden;
        }
        .load-more-btn::after {
            content: '';
            position: absolute;
            top: -50%; left: -50%; width: 200%; height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
            opacity: 0; transition: opacity 0.4s ease; pointer-events: none;
        }
        .load-more-btn:hover::after { opacity: 1; }
        .load-more-btn:hover {
            background: var(--br);
            color: #fff;
            box-shadow: 0 8px 24px rgba(122,74,30,0.2);
            transform: translateY(-2px);
        }
        .load-more-btn.hidden { display: none !important; }

        /* ===== MODAL ===== */
        .modal-overlay {
            position:fixed; top:0; left:0; width:100%; height:100%;
            background:rgba(0,0,0,0.75); backdrop-filter:blur(8px);
            z-index:2000; display:flex; align-items:center; justify-content:center;
            opacity:0; visibility:hidden; transition:all 0.25s ease;
        }
        .modal-overlay.active { opacity:1; visibility:visible; }
        .modal-container {
            background:#fff; max-width:520px; width:90%; border-radius:36px;
            overflow:hidden; box-shadow:0 30px 40px rgba(0,0,0,0.3);
            transform:scale(0.95); transition:transform 0.2s ease;
        }
        .modal-overlay.active .modal-container { transform:scale(1); }
        .modal-img { width:100%; height:260px; object-fit:cover; }
        .modal-content { padding:1.8rem; }
        .modal-company {
            display:inline-flex; align-items:center; gap:10px;
            background:var(--bp); padding:6px 16px; border-radius:60px;
            font-size:13px; font-weight:700; color:var(--br); margin-bottom:12px;
        }
        .modal-company img { width:24px; height:24px; border-radius:50%; }
        .modal-name { font-size:26px; font-weight:900; color:var(--dark); margin-bottom:8px; }
        .modal-category { font-size:13px; color:var(--muted); margin-bottom:12px; display:flex; align-items:center; gap:6px; }
        .modal-price { font-size:24px; font-weight:900; color:var(--br); margin:12px 0 10px; }
        .modal-desc { font-size:14px; line-height:1.65; color:var(--text); background:var(--cream-light); padding:14px; border-radius:20px; margin:12px 0 18px; }
        .modal-close {
            background:var(--br); color:#fff; border:none; padding:12px 24px;
            border-radius:50px; font-weight:800; cursor:pointer; width:100%;
            font-family:inherit; font-size:14px; transition:0.2s;
        }
        .modal-close:hover { background:var(--dark); }

        /* ===== WHY US ===== */
        .why-bg { background:#fff; padding:3.5rem 0; }
        .why-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(210px,1fr)); gap:1.5rem; }
        .why-card { background:var(--cream-light); border-radius:24px; padding:1.6rem; text-align:center; transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease; }
        .why-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 12px 28px rgba(122,74,30,0.08); }
        .why-ico { width:56px; height:56px; background:#FDF0E0; border-radius:30px; display:flex; align-items:center; justify-content:center; margin:0 auto 12px; font-size:26px; color:var(--br); }

        /* ===== TESTIMONIALS ===== */
        .testi-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(270px,1fr)); gap:1.5rem; }
        .tcard { background:#fff; border-radius:24px; padding:1.5rem; border:1px solid var(--border); transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }
        .tcard:hover { transform: translateY(-4px); border-color: var(--bl); box-shadow: 0 8px 24px rgba(122,74,30,0.06); }

        /* ===== PROMO ===== */
        .promo {
            background:linear-gradient(115deg, var(--dark) 0%, #2f1a0a 100%);
            border-radius:40px; padding:2.2rem 2rem; margin:2rem 0 3rem;
        }

        /* ===== GALLERY WITH MILK WAVE ===== */
        .gallery-wrapper {
            position: relative;
            padding: 2rem 0;
            overflow: hidden;
        }
        .gallery-wave {
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 120px;
            pointer-events: none;
            z-index: 0;
        }
        .gallery-wave svg {
            width: 100%;
            height: 100%;
        }
        .gal-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            border-radius: 28px;
            overflow: hidden;
            position: relative;
            z-index: 1;
        }
        .gal-img {
            overflow: hidden;
            border-radius: 20px;
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .gal-img:hover { transform: scale(1.02); z-index: 2; }
        .gal-img img { transition: transform 0.6s ease; width:100%; height:100%; object-fit:cover; border-radius:20px; }
        .gal-img:hover img { transform: scale(1.08); }

      /* ===== CREATIVE DAIRY WAVE SYSTEM ===== */
.dairy-wave {
    position: relative;
    width: 100%;
    height: 140px;
    margin-top: -80px;
    margin-bottom: -80px;
    z-index: 5;
    pointer-events: none;
    overflow: hidden;
}
.dairy-wave svg {
    display: block;
    width: 100%;
    height: 100%;
}
.dairy-wave.flip { transform: scaleY(-1); }

/* Drip droplets that hang below the wave edge */
.dairy-wave .drip {
    animation: dripFall 4s ease-in-out infinite;
    transform-origin: top center;
}
.dairy-wave .drip:nth-child(2) { animation-delay: 0.6s; }
.dairy-wave .drip:nth-child(3) { animation-delay: 1.4s; }
.dairy-wave .drip:nth-child(4) { animation-delay: 2.1s; }
@keyframes dripFall {
    0%, 100% { transform: translateY(0) scaleY(1); opacity: 0.9; }
    50% { transform: translateY(6px) scaleY(1.15); opacity: 1; }
}

/* Subtle floating shimmer on the milk surface */
.dairy-wave .shimmer {
    animation: shimmerMove 6s ease-in-out infinite;
}
@keyframes shimmerMove {
    0%, 100% { opacity: 0.15; transform: translateX(0); }
    50% { opacity: 0.35; transform: translateX(20px); }
}

@media (max-width: 640px) {
    .dairy-wave { height: 80px; margin-top: -45px; margin-bottom: -45px; }
}

        /* ===== FOOTER ===== */
        .footer { background:#fff; padding:3rem 0 2rem; }
        .footer-inner { display:grid; grid-template-columns:2fr repeat(3,1fr); gap:2rem; }

        /* ===== ANIMATIONS ===== */
        .animate-on-load {
            opacity: 0;
            transform: translateY(40px) scale(0.96);
            transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .animate-on-load.show {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .brand-card {
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                        box-shadow 0.3s ease, border-color 0.3s ease;
        }
        .brand-card:hover {
            transform: translateY(-6px) scale(1.03);
            box-shadow: 0 16px 32px -8px rgba(122,74,30,0.12);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width:900px) {
            .hero-inner { grid-template-columns:1fr; }
            .footer-inner { grid-template-columns:1fr 1fr; }
            .brands-grid { justify-content:center; }
            .about-grid { grid-template-columns:1fr; gap:2rem; }
            .about-image { order:-1; }
            .about-float-icon { display:none; }
            .about-stats { gap:1.5rem; }
            .about-section { padding:2.5rem 0; }
            .gal-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width:640px) {
            .wrap { padding:0 1rem; }
            .prod-grid { grid-template-columns:repeat(2,1fr); gap:16px; }
            .filter-panel { flex-direction:column; align-items:stretch; }
            .product-search { width:100%; }
            .brand-card { min-width:80px; padding:8px 12px; }
            .brand-logo { width:50px; height:50px; }
            .gal-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
            .gallery-wave { height: 60px; }
        }
        /* ===== COLLAPSIBLE SOCIAL BUTTON ===== */
.social-collapse {
    position: fixed;
    bottom: 100px;       /* above the back‑to‑top button (gap of ~20px) */
    left: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 12px;
}

.social-toggle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--br);
    color: #fff;
    border: none;
    box-shadow: 0 4px 16px rgba(122, 74, 30, 0.25);
    cursor: pointer;
    font-size: 24px;
    transition: transform 0.3s ease, background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-toggle:hover {
    transform: scale(1.05);
    background: var(--dark);
}
.social-toggle i {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.social-toggle.open i {
    transform: rotate(45deg);
}
/* ===== CONTACT SECTION – CREATIVE ===== */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #faf6f0 0%, #f3ece3 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 40%;
    height: 120%;
    background: radial-gradient(circle, rgba(232,200,154,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-top: 2rem;
    align-items: stretch;
}

/* Left side */
.contact-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.contact-card {
    background: #fff;
    padding: 1.2rem 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(122,74,30,0.08);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--bp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--br);
    flex-shrink: 0;
}

.contact-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}
.contact-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.4;
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

/* Right side – Form */
.contact-right {
    display: flex;
    align-items: stretch;
}

.contact-form-wrapper {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 28px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border: 1px solid var(--border);
    width: 100%;
    transition: transform 0.3s ease;
}

.contact-form-wrapper h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.8rem;
}

/* Floating label form */
.contact-form .form-group {
    position: relative;
    margin-bottom: 1.8rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px 10px;
    border: 1px solid var(--border);
    border-radius: 16px;
    font-family: inherit;
    font-size: 15px;
    background: var(--cream-light);
    transition: 0.3s;
    outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--br);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(122,74,30,0.05);
}

.contact-form label {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 14px;
    color: var(--muted);
    transition: 0.2s;
    pointer-events: none;
    background: transparent;
    padding: 0 4px;
}
.contact-form input:focus ~ label,
.contact-form input:not(:placeholder-shown) ~ label,
.contact-form textarea:focus ~ label,
.contact-form textarea:not(:placeholder-shown) ~ label {
    top: -8px;
    right: 12px;
    font-size: 12px;
    color: var(--br);
    background: #fff;
    padding: 0 8px;
    border-radius: 8px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 14px;
    background: var(--br);
    color: #fff;
    border: none;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.contact-form .btn-primary:hover {
    background: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(122,74,30,0.2);
}
.contact-form .btn-primary i {
    font-size: 20px;
}

/* Alerts */
.contact-alert {
    padding: 12px 16px;
    border-radius: 16px;
    margin-bottom: 1.2rem;
    font-weight: 600;
}
.contact-alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}
.contact-alert-error {
    background: #fde8e5;
    color: #c0392b;
    border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-info-cards {
        grid-template-columns: 1fr 1fr;
    }
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 640px) {
    .contact-info-cards {
        grid-template-columns: 1fr;
    }
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

