/* =========================================================
   Enquiry Website — Premium Boutique Theme
   Light cream body + dark navbar/hero + gold accents
   ========================================================= */

:root {
    --gold: #B8924A;
    --gold-light: #D4A96A;
    --gold-dark: #8A6A2E;
    --gold-pale: #F5ECD7;
    --bg-page: #FAFAF8;
    --bg-card: #FFFFFF;
    --bg-card2: #F5F3EF;
    --bg-alt: #F2EFE9;
    --bg-dark: #1b1b1b;
    --bg-dark-2: #221c14;
    --text-primary: #1A1714;
    --text-secondary: #3D3530;
    --text-muted: #8C7D6E;
    --text-light: #B8A898;
    --border: rgba(184,146,74,0.22);
    --border-soft: rgba(0,0,0,0.07);
    --border-mid: rgba(0,0,0,0.12);
    --shadow-gold: 0 8px 32px rgba(184,146,74,0.14);
    --shadow-card: 0 2px 20px rgba(0,0,0,0.06);
    --shadow-hover: 0 8px 40px rgba(0,0,0,0.11);
    --radius: 4px;
    --radius-lg: 12px;
    --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-ui: 'Inter', sans-serif;
    --success: #2d7a3a;
    --error: #c0392b;
}
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.7;
    background: var(--bg-page);
}

h1, h2, h3, h4 { font-family: var(--font-ui); font-weight: 600; line-height: 1.25; color: var(--text-primary); }

a { text-decoration: none; color: var(--gold); }
a:hover { color: var(--gold-dark); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 70px 0; }

.section-tagline {
    display: block;
    text-align: center;
    color: var(--gold);
    font-family: var(--font-ui);
    letter-spacing: 4px;
    font-size: 11px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 600;
}
.section-title {
    text-align: center;
    font-size: clamp(26px, 3.5vw, 30px);
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}
.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 18px auto 40px;
}
.text-center { text-align: center; margin-top: 30px; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 2px;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-align: center;
}
.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { background: var(--gold-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-outline { background: transparent; border: 1px solid var(--gold); color: var(--gold); font-weight: 500; }
.btn-outline:hover { background: var(--gold); color: #fff; }
.btn-enquire { background: transparent; border: 1px solid var(--border-mid);      justify-content: center;  color: var(--text-secondary); width: 100%; margin-top: 14px; border-radius: var(--radius); padding: 11px; }
.btn-enquire:hover { color: #fff; border-color: var(--gold); background: var(--gold); }
.btn-large { font-size: 12px; padding: 15px 36px; margin: 22px 0; }
.btn-full { width: 100%; justify-content: center; }

/* ===== Top Bar ===== */
.top-bar { background: #000; color: rgba(255,255,255,0.7);     font-size: 11.5px !important; padding: 8px 0; font-family: var(--font-body); border-bottom: 1px solid #414141; overflow: hidden; }
.top-bar-inner {
    display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 6px;
    font-size: 10px;
    color: #d0d0d0;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-weight: 600;
}
.top-bar-contact span { margin-right: 18px; }
.top-bar-social a { margin-left: 14px; color: rgba(255,255,255,0.7); }
.top-bar-social a:hover { color: var(--gold-light); }

/* Marquee track (mobile-only ticker, see media query below) */
.top-bar-marquee { display: none; }
.top-bar-marquee-track {
    display: inline-flex;
    white-space: nowrap;
    will-change: transform;
}
.top-bar-marquee-track span { display: inline-flex; align-items: center; padding-right: 40px; font-weight:500; font-size: 0.7rem; letter-spacing:0.5px; }

/* ===== Header ===== */
.site-header { background: var(--bg-dark); border-bottom: 1px solid rgba(184,146,74,0.16); position: sticky; top: 0; z-index: 200; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; gap: 20px; }
.logo { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: #fff; letter-spacing: 3px; white-space: nowrap; }
.main-nav ul { display: flex; gap: 6px; }
.main-nav a {
    font-family: var(--font-ui);
    font-weight: 500;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    padding: 10px 14px;
    position: relative;
    display: block;
}
.main-nav a:hover { color: var(--gold-light); }
.has-dropdown { position: relative; }
.dropdown {
    display: block;
    opacity: 0;
    visibility: hidden;
    flex-direction: column;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-card);
    border-top: 2px solid var(--gold);
    box-shadow: var(--shadow-hover);
    min-width: 220px;
    border-radius: 0 0 6px 6px;
    overflow: hidden;
    padding: 8px 0;
    transition: opacity 0.18s ease, visibility 0.18s ease;
    z-index: 250;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.dropdown li a { display: block; padding: 10px 18px; text-transform: uppercase; letter-spacing: 0; font-size: 12px; color: var(--text-secondary); }
.dropdown li a:hover { background: var(--bg-card2); color: var(--gold); }

.search-form { display: flex; }
.search-form input { padding: 10px 14px; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.06); color: #fff; border-radius: 2px 0 0 2px; outline: none; width: 190px; font-family: var(--font-body); }
.search-form input::placeholder { color: rgba(255,255,255,0.4); }
.search-form button { padding: 10px 16px; border: none; background: var(--gold); color: #fff; border-radius: 0 2px 2px 0; cursor: pointer; }
.hamburger { display: none; font-size: 24px; background: none; border: none; cursor: pointer; color: #fff; position: relative; z-index: 310; }
.nav-close { display: none; }
.nav-overlay { display: none; }

/* ===== Hero Carousel (full-screen, fading slides) ===== */
.hero-carousel { position: relative; width: 100%; height: 84vh; min-height: 560px; overflow: hidden; background: var(--bg-dark); }
.hero-slide {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity 1.4s ease;
    z-index: 1;
}
.hero-slide picture, .hero-slide img { display: block; width: 100%; height: 100%; object-fit: cover; }
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(0,0,0,0.72) 0%, rgba(10,8,0,0.5) 45%, rgba(0,0,0,0.2) 100%);
    z-index: 3;
}
.hero-content {
    position: absolute; top: 50%; left: 8%; transform: translateY(-50%);
    z-index: 4; max-width: 600px;
}
.hero-tagline { color: var(--gold-light); font-family: var(--font-ui); letter-spacing: 5px; text-transform: uppercase; font-size: 11px; font-weight: 600; margin-bottom: 22px; display: block; }
.hero-content h1 { font-size: clamp(34px, 5.5vw, 60px); font-weight: 400; line-height: 1.12; color: #f5f0e8; margin-bottom: 22px; }
.hero-content h1 em { color: var(--gold-light); font-style: italic; }
.hero-content p { font-family: var(--font-body); color: rgba(245,240,232,0.78); margin-bottom: 34px; font-size: 17px; line-height: 1.8; max-width: 480px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-dots { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 10px; }
.hero-dot { width: 28px; height: 3px; background: rgba(255,255,255,0.3); border: none; border-radius: 2px; cursor: pointer; transition: 0.35s; padding: 0; }
.hero-dot.active { width: 48px; background: var(--gold-light); }

.hero-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
    width: 50px; height: 50px; border-radius: 50%;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25); color: #fff;
    display: flex; align-items: center; justify-content: center; font-size: 18px;
    cursor: pointer; transition: 0.3s; backdrop-filter: blur(6px);
}
.hero-arrow:hover { background: rgba(184,146,74,0.35); border-color: var(--gold-light); }
.hero-prev { left: 28px; }
.hero-next { right: 28px; }

@media (max-width: 768px) {
    .hero-carousel {        height: 45vh;
        min-height: auto;}
    .hero-content { left: 6%; max-width: 90%; }
    .hero-arrow { display: none; }
}

/* ===== Trust Badges Row ===== */
.trust-row { background: var(--bg-card); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); padding: 26px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 12px; padding: 0 16px; text-align: left; }
.trust-item .trust-icon { flex-shrink: 0; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; }
.trust-item .trust-icon img { width: 32px; height: 32px; display: block; }
.trust-item h4 { font-family: var(--font-ui); font-size: 13px; font-weight: 600; color: var(--text-primary); margin-bottom: 2px; }
.trust-item p { font-size: 12px; color: var(--text-muted); margin: 0; }

/* ===== Category Grid ===== */
.category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 26px; }
.category-card { background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; box-shadow: var(--shadow-card); transition: all var(--transition); }
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--border); }
.category-icon img {margin: 0 auto 10px;}
.category-card h3 { font-size: 16px; color: var(--text-primary); }

/* ===== Product Grid & Card ===== */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 28px; }
.product-card { background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); transition: all var(--transition); display: flex; flex-direction: column; }
.product-card:hover { border-color: var(--border); transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.product-image { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--bg-card2); }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.product-card:hover .product-image img { transform: scale(1.06); }
.badge { position: absolute; top: 12px; left: 12px; background: var(--gold); color: #fff; padding: 4px 10px; font-size: 9px; border-radius: 2px; font-weight: 700; font-family: var(--font-ui); text-transform: uppercase; letter-spacing: 1px; }
.product-info { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.product-category { font-family: var(--font-ui); font-size: 10px; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; }
.product-title { font-size: 15px; margin: 8px 0; font-family: var(--font-ui); }
.product-title a { color: var(--text-primary); }
.product-title a:hover { color: var(--gold); }
.product-desc { font-family: var(--font-body); font-size: 13px; color: var(--text-muted); flex: 1; margin-bottom: 12px; }
.product-price { font-family: var(--font-ui); font-size: 15px; font-weight: 700; color: var(--gold); }
.product-price-large { font-size: 24px; margin: 16px 0; color: var(--gold); }

/* ===== Why Us ===== */
.why-us-section { background: var(--bg-alt); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.why-us-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.why-us-card { background: var(--bg-card); border: 1px solid var(--border-soft); padding: 32px 24px; border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow-card); }
.why-icon { font-size: 30px; margin-bottom: 14px; color: var(--gold); }
.why-us-card h3 { font-size: 17px; }
.why-us-card p { font-family: var(--font-body); color: var(--text-muted); font-size: 14px; margin-top: 10px; }

/* ===== Testimonials ===== */
.testimonials-section { background: var(--bg-page); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.testimonial-card { background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-card); }
.testimonial-stars { color: var(--gold); font-size: 13px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-family: var(--font-body); color: var(--text-secondary); font-size: 14px; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gold-pale); color: var(--gold-dark); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; font-family: var(--font-display); }
.testimonial-author-name { font-family: var(--font-ui); font-size: 13px; font-weight: 600; color: var(--text-primary); }
.testimonial-author-loc { font-size: 12px; color: var(--text-light); }

/* ===== Page Banner ===== */
.page-banner { background: var(--bg-dark); color: #fff; padding: 20px 0; text-align: center; }
.page-banner h1 { font-size: 32px; margin-bottom: 10px; color: #f5f0e8; }
.breadcrumb { font-family: var(--font-ui); color: rgba(255,255,255,0.5); font-size: 12px; letter-spacing: 1px; }
.breadcrumb a { color: var(--gold-light); font-weight: 500; }
.breadcrumb a:hover { color: var(--gold); }

/* ===== Products Layout ===== */
.products-layout { display: grid; grid-template-columns: 250px 1fr; gap: 36px; align-items: start; }
.products-sidebar { background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-card); }
.products-sidebar h3 { margin-bottom: 16px; font-size: 12px; font-family: var(--font-ui); text-transform: uppercase; letter-spacing: 2px; color: var(--gold); }
.filter-list li a { display: block; padding: 9px 0; color: var(--text-muted); font-size: 14px; border-bottom: 1px solid var(--border-soft); }
.filter-list li:last-child a { border-bottom: none; }
.filter-list li a:hover, .filter-list li a.active { color: var(--gold); font-weight: 600; }
.no-results { color: var(--text-muted); padding: 30px 0; }
.search-result-text { margin-bottom: 20px; color: var(--text-muted); }
.category-description { color: var(--text-muted); margin-bottom: 26px; max-width: 700px; }

/* ===== Product Detail ===== */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.product-detail-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-hover); width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.product-detail-info h1 { font-size: 30px; margin: 10px 0; }
.product-sku { font-family: var(--font-ui); color: var(--text-light); font-size: 12px; letter-spacing: 0.5px; }
.product-full-desc { font-family: var(--font-body); color: var(--text-muted); margin: 16px 0 4px; line-height: 1.8; }
.product-meta-box { background: var(--bg-alt); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 18px 22px; margin-top: 22px; font-size: 14px; }
.product-meta-box p { margin-bottom: 8px; color: var(--text-muted); }
.related-section { background: var(--bg-alt); border-top: 1px solid var(--border-soft); }

/* ===== About / Contact ===== */
.about-grid, .contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-hover); }
.about-text h2 { margin-bottom: 16px; }
.about-text h3 { margin: 20px 0 10px; color: var(--gold); font-size: 18px; }
.about-text p { font-family: var(--font-body); color: var(--text-muted); margin-bottom: 12px; }
.contact-details li { font-family: var(--font-body); margin: 12px 0; color: var(--text-muted); }
.contact-form-box { background: var(--bg-card); border: 1px solid var(--border-soft); padding: 32px; border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }

/* ===== Forms ===== */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-family: var(--font-ui); font-size: 11px; letter-spacing: 0.5px; font-weight: 600; margin-bottom: 7px; color: var(--text-muted); text-transform: uppercase; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 12px 16px; border: 1px solid var(--border-mid); background: var(--bg-card);
    color: var(--text-primary); border-radius: var(--radius); font-family: var(--font-body); font-size: 14px;
    outline: none; transition: border-color var(--transition);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-light); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,146,74,0.1); }

#enquiryFormMsg, #contactFormMsg { margin-top: 12px; font-size: 14px; font-weight: 500; font-family: var(--font-ui); }
.msg-success { color: var(--success); }
.msg-error { color: var(--error); }

/* ===== Modal ===== */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(15,12,8,0.55); z-index: 999; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(2px); }
.modal-overlay.active { display: flex; }
.modal-box { background: var(--bg-card); border-radius: var(--radius-lg); padding: 36px; max-width: 460px; width: 100%; position: relative; max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-hover); }
.modal-close { position: absolute; top: 14px; right: 18px; background: none; border: none; font-size: 26px; cursor: pointer; color: var(--text-light); }
.modal-close:hover { color: var(--gold); }
.modal-box h2 { color: var(--text-primary); }
.modal-product-name { color: var(--gold); font-weight: 600; margin-bottom: 18px; font-family: var(--font-ui); font-size: 13px; }

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; background: #25d366;
    color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 26px; box-shadow: 0 4px 16px rgba(37,211,102,0.4); z-index: 500; transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }

/* ===== Footer ===== */
.site-footer { background: var(--text-primary); color: rgba(255,255,255,0.66); padding: 60px 0 0; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 34px; padding-bottom: 34px; }
.footer-col h3 { font-family: var(--font-ui); color: var(--gold-light); margin-bottom: 18px; font-size: 11px; text-transform: uppercase; letter-spacing: 3px; }
.footer-col p, .footer-col li { font-family: var(--font-body); font-size: 14px; margin-bottom: 9px; color: rgba(255,255,255,0.66); }
.footer-col ul li a { color: rgba(255,255,255,0.66); }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); text-align: center; padding: 20px 0; font-family: var(--font-body); font-size: 13px; color: rgba(255,255,255,0.5); }

/* ===== Legal Pages (Terms, Privacy, Disclaimer) ===== */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-updated { font-family: var(--font-ui); font-size: 13px; color: var(--text-light); margin-bottom: 30px; }
.legal-content h2 { font-size: 20px; margin: 34px 0 12px; color: var(--text-primary); }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { font-family: var(--font-body); color: var(--text-muted); margin-bottom: 14px; line-height: 1.85; }
.legal-list { margin: 0 0 14px 22px; list-style: disc; }
.legal-list li { font-family: var(--font-body); color: var(--text-muted); margin-bottom: 8px; line-height: 1.7; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .product-detail, .about-grid, .contact-layout { grid-template-columns: 1fr; }
    .products-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .product-section
    {
        padding-top:25px;
    }
    .top-bar-contact span:last-child { display: none; }

    /* Marquee: top bar text scrolls smoothly right-to-left on mobile */
    .top-bar-inner { display: none; }
    .top-bar-marquee { display: block; overflow: hidden; }
    .top-bar-marquee-track {
        animation: topBarMarquee 14s linear infinite;
    }
    @keyframes topBarMarquee {
        0%   { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

.main-nav {
        position: fixed; top: 0; right: -280px; width: 260px; height: 100vh;
        background: var(--bg-dark); box-shadow: -4px 0 20px rgba(0,0,0,0.4);
        transition: right 0.3s ease;         padding: 70px 14px 20px; z-index: 300;
        overflow-y: auto;
    }
    .main-nav .dropdown a
    {
        color:white;
                font-weight: 500;
        font-size: 11.5px;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    .main-nav.active { right: 0; z-index:9999;}
    .nav-close {
        display: block; position: absolute; top: 18px; right: 20px;
        background: none; border: none; color: #fff; font-size: 30px;
        line-height: 1; cursor: pointer; z-index: 320;

    }
    .nav-close:hover { color: var(--gold-light); }
    .nav-overlay {
        display: none; position: fixed; inset: 0;
        background: rgba(0,0,0,0.6);
        -webkit-backdrop-filter: blur(6px);
        backdrop-filter: blur(6px);
        z-index: 290; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .nav-overlay.active { display: block; opacity: 1; visibility: visible; }
    .main-nav ul { flex-direction: column; gap: 4px; }
    .dropdown { position: static; box-shadow: none; opacity: 1; visibility: visible; pointer-events: none; max-height: 0; padding: 0 0 0 12px; background: transparent; border: none; transition: max-height 0.25s ease; overflow: hidden; }
    .has-dropdown:hover .dropdown { max-height: 0; }
    .has-dropdown.open .dropdown { max-height: 400px; pointer-events: auto; padding: 8px 0 8px 12px; }
    .search-form { display: none; }
    .hamburger { display: block; }
    .hero-inner { flex-direction: column; }
    .trust-item { flex-direction: column; text-align: center; gap: 8px; }
}
