/* ===== HEDIT Clone - Pure HTML/CSS/JS ===== */

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

:root {
    --bg-light: #ecf6d8;
    --bg-soft: #f4faea;
    --green: #547a2c;
    --green-dark: #3b6b1f;
    --green-deep: #1f3d10;
    --text: #1d2320;
    --text-soft: #5b6b58;
    --orange: #e89a3c;
    --gold: #f6a93b;
    --line: #d5e6b6;
    --white: #ffffff;
}

html { scroll-behavior: smooth; }
body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

#root { display: none; }

a { color: inherit; text-decoration: none; transition: color .25s ease; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 28px; }

/* ===== TOP BAR ===== */
.top-bar {
    background: #2a3d18;
    color: #d6e7b9;
    font-size: 13px;
    padding: 8px 0;
}
.top-bar-inner {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.top-bar-left span { margin-right: 20px; opacity: .9; }
.top-bar-right { display: flex; align-items: center; gap: 14px; }
.top-bar-right .tagline { opacity: .85; }
.top-bar-right a {
    width: 26px; height: 26px;
    border: 1px solid #5a7233;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 11px;
    transition: all .25s ease;
}
.top-bar-right a:hover { background: var(--gold); color: #1f3d10; border-color: var(--gold); }

/* ===== HEADER ===== */
.site-header {
    background: var(--bg-light);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 14px rgba(60, 80, 30, .06);
}
.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}
.logo {
    display: flex; align-items: center; gap: 10px;
}
.logo-mark { line-height: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--green-deep);
    letter-spacing: 4px;
    font-size: 22px;
}
.logo-sub {
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--text-soft);
    text-transform: uppercase;
    margin-top: 2px;
}
.brand-title { text-align: center; }
.brand-title h1 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--green-deep);
    letter-spacing: 2px;
}
.brand-title p {
    font-size: 11px;
    color: var(--text-soft);
    letter-spacing: 2.5px;
    margin-top: 2px;
    font-weight: 500;
}

.main-nav {
    display: flex; align-items: center; gap: 28px;
    font-size: 15px;
    font-weight: 500;
}
.main-nav a {
    position: relative; color: var(--text);
    padding: 6px 0;
}
.main-nav > a:hover, .main-nav > a.active,
.nav-dropdown:hover .nav-toggle { color: var(--green); }
.main-nav > a.active::after,
.main-nav > a:hover::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
    height: 2px; background: var(--gold); border-radius: 2px;
}
.nav-dropdown { position: relative; }
.nav-toggle { display: inline-flex; align-items: center; gap: 4px; }
.caret { font-size: 10px; }
.dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: -10px;
    background: #fff;
    min-width: 220px;
    padding: 10px 0;
    border-radius: 6px;
    box-shadow: 0 10px 36px rgba(40,60,20,.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .25s ease;
    z-index: 200;
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a {
    display: block;
    padding: 9px 18px;
    font-size: 14px;
    color: var(--text);
}
.dropdown-menu a:hover { background: var(--bg-soft); color: var(--green-dark); }

.menu-toggle {
    display: none;
    width: 38px; height: 38px;
    flex-direction: column; justify-content: center; gap: 5px;
}
.menu-toggle span {
    display: block; width: 24px; height: 2px; background: var(--green-deep); border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 78vh;
    background: var(--bg-light);
    overflow: hidden;
}
.hero-image {
    position: absolute; inset: 0;
    background-image: url('https://made4brand.in/user/thehedit/thehedit/banner.png');
    background-size: cover;
    background-position: center;
}
.hero-image::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(110deg, rgba(20, 30, 10, .55) 0%, rgba(40, 60, 20, .25) 50%, rgba(20, 30, 10, .15) 100%);
}
.hero-overlay {
    position: relative; z-index: 2;
    min-height: 78vh;
    display: flex; align-items: center;
    padding: 30px 0;
}
.hero-content {
    max-width: 640px;
    color: #fff;
    animation: fadeUp .9s ease both;
}
.hero-eyebrow {
    display: inline-block;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    color: #f4f0d8;
    font-size: 12px;
    letter-spacing: 3px;
    padding: 8px 18px;
    border-radius: 30px;
    text-transform: uppercase;
    margin-bottom: 22px;
    backdrop-filter: blur(6px);
}
.hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 22px;
    font-weight: 700;
    text-shadow: 0 4px 30px rgba(0,0,0,.25);
}
.hero-content p {
    font-size: 17px;
    margin-bottom: 32px;
    opacity: .94;
    max-width: 580px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 13px 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
    cursor: pointer;
}
.btn-primary { background: var(--green-dark); color: #fff; }
.btn-primary:hover { background: var(--green-deep); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(40,60,20,.25); }
.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}
.btn-outline:hover { background: #fff; color: var(--green-deep); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--green-deep); }
.btn-light:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }

/* ===== SECTIONS ===== */
.section { padding: 90px 0; }
.section-head { text-align: center; margin-bottom: 50px; }
.section-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: var(--green-deep);
    font-weight: 700;
}
.head-divider {
    display: inline-block;
    width: 60px; height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin-top: 14px;
}

/* ===== CATEGORIES ===== */
.categories { background: var(--bg-light); }
.categories-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
}
.cat-card {
    background: #fff;
    border-radius: 8px;
    padding: 18px;
    text-align: center;
    transition: transform .35s ease, box-shadow .35s ease;
    border: 1px solid transparent;
}
.cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(60,80,30,.14);
    border-color: var(--line);
}
.cat-img {
    aspect-ratio: 1/1;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    margin-bottom: 16px;
    transition: transform .5s ease;
}
.cat-card:hover .cat-img { transform: scale(1.04); }
.cat-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--green-deep);
    font-weight: 600;
}
.cat-card h3 span { color: var(--text-soft); font-weight: 400; font-size: 14px; }

/* ===== ABOUT ===== */
.about-section { background: var(--bg-soft); }
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: var(--green-deep);
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 14px;
}
.about-text h2::after {
    content: ''; position: absolute; left: 0; bottom: 0;
    width: 70px; height: 3px; background: var(--gold); border-radius: 2px;
}
.about-text p {
    margin-bottom: 16px;
    color: var(--text);
    font-size: 15.5px;
}
.about-text strong { color: var(--green-dark); }
.about-text .btn { margin-top: 18px; }
.about-image img {
    max-width: 100%;
    filter: drop-shadow(0 18px 40px rgba(60,80,30,.18));
    animation: floaty 7s ease-in-out infinite;
        width: -webkit-fill-available;
}

/* ===== ECO BANNER ===== */
.eco-banner {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(rgba(34, 60, 20, .68), rgba(20, 40, 10, .78)),
                url('https://images.unsplash.com/photo-1542838132-92c53300491e?w=1920&amp;auto=format&amp;fit=crop') center/cover;
    color: #fff;
}
.eco-banner-text {
    max-width: 640px;
    text-align: center;
    margin: 0 auto;
}
.eco-banner-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 18px;
}
.eco-banner-text p {
    font-size: 17px;
    margin-bottom: 28px;
    opacity: .94;
}

/* ===== FEATURES STRIP ===== */
.features-strip { background: #fff; padding: 60px 0; }
.features-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px;
}
.feature-item {
    display: flex; gap: 16px; align-items: flex-start;
}
.feature-icon {
    flex-shrink: 0;
    width: 60px; height: 60px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.feature-item h4 {
    font-family: 'Playfair Display', serif;
    color: var(--green-deep);
    font-size: 17px;
    margin-bottom: 4px;
}
.feature-item p { color: var(--text-soft); font-size: 14px; line-height: 1.55; }

/* ===== FOOTER ===== */
.site-footer {
    background: #1f3d10;
    color: #cfdcb3;
    padding: 70px 0 0;
}
.footer-grid {
    display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 50px;
    padding-bottom: 50px;
}
.footer-col h4 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 20px;
    margin-bottom: 8px;
}
.footer-line { width: 40px; height: 2px; background: var(--gold); margin-bottom: 18px; }
.footer-col p { margin-bottom: 8px; font-size: 15px; }
.footer-col .city { font-weight: 600; color: #fff; font-size: 17px; }
.footer-col .phone, .footer-col .email { color: #cfdcb3; }
.footer-col .email { color: var(--gold); }
.newsletter { display: flex; margin-top: 16px; max-width: 380px; }
.newsletter input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    outline: none;
}
.newsletter input::placeholder { color: rgba(255,255,255,.5); }
.newsletter input:focus { border-color: var(--gold); }
.newsletter button {
    padding: 0 22px;
    background: var(--gold);
    color: #1f3d10;
    font-weight: 600;
    border-radius: 0 4px 4px 0;
    transition: background .25s ease;
}
.newsletter button:hover { background: #ffbf52; }
.socials { display: flex; gap: 12px; }
.socials a {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    transition: all .25s ease;
}
.socials a:hover { background: var(--gold); color: #1f3d10; transform: translateY(-3px); }
.lang-switcher { position: relative; margin-top: 22px; }
.lang-btn {
    color: #fff; font-size: 14px;
    border: 1px solid rgba(255,255,255,.2);
    padding: 8px 16px;
    border-radius: 4px;
}
.lang-switcher ul {
    position: absolute; bottom: calc(100% + 6px); left: 0;
    background: #fff; min-width: 130px; border-radius: 4px;
    list-style: none; padding: 6px 0;
    opacity: 0; visibility: hidden;
    transform: translateY(8px);
    transition: all .25s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
}
.lang-switcher:hover ul { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-switcher ul a { display: block; padding: 8px 14px; color: var(--text); font-size: 14px; }
.lang-switcher ul a:hover { background: var(--bg-soft); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 22px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,.6);
}

/* ===== WHATSAPP BTN ===== */
.whatsapp-btn {
    position: fixed; bottom: 24px; left: 24px;
    width: 56px; height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 28px rgba(37, 211, 102, .4);
    z-index: 90;
    transition: transform .25s ease;
}
.whatsapp-btn:hover { transform: scale(1.08); }

/* ===== TOAST ===== */
.toast {
    position: fixed;
    bottom: 30px; right: 30px;
    background: var(--green-deep);
    color: #fff;
    padding: 14px 22px;
    border-radius: 6px;
    font-size: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,.2);
    opacity: 0;
    transform: translateY(20px);
    transition: all .35s ease;
    z-index: 200;
    pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* ===== PAGE BANNER ===== */
.page-banner {
    background: #edffe3;
    color: #000;
    padding: 80px 0;
    text-align: center;
}
.page-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 14px;
}
.breadcrumb {
    display: flex; gap: 8px; justify-content: center;
    list-style: none; font-size: 14px;
}
.breadcrumb li:not(:last-child)::after {
    content: '/'; margin-left: 8px; opacity: .6;
}
.breadcrumb a { color: var(--gold); }

/* ===== VALUES ===== */
.values-section { background: var(--bg-light); }
.values-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px;
}
.value-card {
    background: #fff;
    padding: 30px 24px;
    border-radius: 8px;
    text-align: center;
    transition: transform .35s ease, box-shadow .35s ease;
    border-top: 4px solid var(--gold);
}
.value-card:hover { transform: translateY(-6px); box-shadow: 0 18px 30px rgba(60,80,30,.12); }
.value-icon {
    width: 70px; height: 70px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
}
.value-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    color: var(--green-deep);
    margin-bottom: 8px;
}
.value-card p { color: var(--text-soft); font-size: 14px; }

/* ===== CONTACT ===== */
.contact-section { background: var(--bg-soft); }
.contact-grid {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(60,80,30,.08);
}
.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--green-deep);
    margin-bottom: 12px;
}
.contact-info .lead { font-size: 15px; color: var(--text-soft); margin-bottom: 28px; }
.contact-info h4 {
    font-size: 16px; margin-bottom: 14px; color: var(--green-deep);
}
.info-row { margin-bottom: 12px; font-size: 15px; }
.info-row .info-label { color: var(--green-dark); font-weight: 600; margin-right: 6px; }
.info-row a { color: var(--text); }
.info-row a:hover { color: var(--green-dark); }
.map-wrap {
    margin-top: 22px; height: 200px;
    border-radius: 8px; overflow: hidden;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
.contact-form .form-row { margin-bottom: 18px; }
.contact-form label {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
    color: var(--text-soft);
    font-weight: 500;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d8e3c4;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    background: #fbfdf6;
    outline: none;
    transition: border-color .25s ease, background .25s ease;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--green-dark); background: #fff; }
.contact-form textarea { resize: vertical; min-height: 120px; }

/* ===== SHOP ===== */
.shop-section { background: var(--bg-soft); }
.shop-grid { display: grid; grid-template-columns: 280px 1fr; gap: 40px; }
.shop-sidebar .sidebar-block {
    background: #fff;
    padding: 22px;
    border-radius: 8px;
    margin-bottom: 22px;
    box-shadow: 0 6px 20px rgba(60,80,30,.06);
}
.sidebar-block h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--green-deep);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
}
.cat-list { list-style: none; }
.cat-list li {
    padding: 8px 0;
    border-bottom: 1px solid #ecf3df;
    cursor: pointer;
    font-size: 14px;
    transition: color .25s ease, padding-left .25s ease;
    display: flex; justify-content: space-between;
}
.cat-list li:last-child { border-bottom: 0; }
.cat-list li:hover, .cat-list li.active {
    color: var(--green-dark); padding-left: 6px;
}
.cat-list li span { color: var(--text-soft); font-size: 13px; }

input[type=range] {
    width: 100%;
    accent-color: var(--green-dark);
}
.price-label { margin-top: 8px; font-size: 13px; color: var(--text-soft); }

.mini-product {
    display: flex; gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}
.mini-img {
    width: 50px; height: 50px;
    background-size: cover; background-position: center;
    border-radius: 4px;
}
.mini-name { font-size: 14px; color: var(--text); font-weight: 500; }
.mini-price { font-size: 12px; color: var(--text-soft); }

.shop-toolbar {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 26px;
    background: #fff;
    padding: 14px 20px;
    border-radius: 6px;
    box-shadow: 0 4px 14px rgba(60,80,30,.06);
}
.shop-result { font-size: 14px; color: var(--text-soft); }
.shop-sort label { margin-right: 8px; font-size: 14px; color: var(--text-soft); }
.shop-sort select {
    padding: 8px 14px;
    border: 1px solid #d8e3c4;
    border-radius: 4px;
    background: #fbfdf6;
    font-family: inherit;
    font-size: 14px;
    outline: none;
}

.products-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease;
    text-align: center;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 30px rgba(60,80,30,.14);
}
.product-img {
    aspect-ratio: 1/1;
    background-size: cover;
    background-position: center;
    background-color: #fafdf2;
    transition: transform .5s ease;
}
.product-card:hover .product-img { transform: scale(1.05); }
.product-info { padding: 18px; }
.product-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    color: var(--green-deep);
    margin-bottom: 10px;
}
.product-info .read-more {
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1.5px solid var(--gold);
    padding-bottom: 2px;
}
.product-info .read-more:hover { color: var(--green-deep); }

.pagination {
    display: flex; gap: 8px; justify-content: center;
    margin-top: 40px;
}
.pagination button {
    width: 40px; height: 40px;
    background: #fff;
    border-radius: 4px;
    color: var(--text);
    font-weight: 600;
    transition: all .25s ease;
    border: 1px solid #e1ead0;
}
.pagination button.active,
.pagination button:hover { background: var(--green-dark); color: #fff; border-color: var(--green-dark); }

/* ===== BLOGS ===== */
.blog-section { background: var(--bg-light); }
.blog-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}
.blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 18px 36px rgba(60,80,30,.14); }
.blog-img {
    aspect-ratio: 16/10;
    background-size: cover;
    background-position: center;
}
.blog-body { padding: 22px; }
.blog-meta {
    font-size: 12px;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}
.blog-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    color: var(--green-deep);
    margin-bottom: 10px;
    line-height: 1.3;
}
.blog-body p { color: var(--text-soft); font-size: 14px; margin-bottom: 14px; }
.blog-body a {
    color: var(--green-dark);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1.5px solid var(--gold);
    padding-bottom: 2px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .header-inner { grid-template-columns: auto auto; }
    .brand-title { display: none; }
    .main-nav { gap: 18px; font-size: 14px; }
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
    .menu-toggle { display: inline-flex; }
    .main-nav {
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        align-items: flex-start;
        background: #fff;
        padding: 18px 28px;
        gap: 14px;
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease;
        box-shadow: 0 14px 30px rgba(0,0,0,.08);
    }
    .main-nav.open { max-height: 500px; }
    .nav-dropdown { width: 100%; }
    .dropdown-menu {
        position: static;
        opacity: 1; visibility: visible; transform: none;
        box-shadow: none;
        padding-left: 14px;
        display: none;
    }
    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown.open .dropdown-menu { display: block; }
    .hero-content h2 { font-size: 36px; }
    .about-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .contact-grid { grid-template-columns: 1fr; padding: 30px; }
    .shop-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .features-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .hero-content h2 { font-size: 28px; }
    .section { padding: 60px 0; }
    .top-bar-right .tagline { display: none; }
    .top-bar-left span { display: block; margin-right: 0; margin-bottom: 4px; }
}
