/* =============================================
   BHABHI JI SAREE - Main Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Poppins:wght@300;400;500;600&display=swap');

:root {
    --primary: #8B1A1A;
    --primary-dark: #6B1414;
    --primary-light: #C0392B;
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --cream: #FDF6EC;
    --cream-dark: #F5E6D0;
    --text-dark: #1a1a1a;
    --text-mid: #4a4a4a;
    --text-light: #888;
    --border: #E8D5B7;
    --white: #fff;
    --shadow: 0 4px 20px rgba(139,26,26,0.12);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --radius: 10px;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ══════════════════════════════════════
   HEADER & NAVIGATION
══════════════════════════════════════ */

.topbar {
    background: var(--primary-dark);
    color: var(--gold-light);
    text-align: center;
    padding: 8px 20px;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
}

.topbar a { color: var(--gold-light); }

header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.header-main {
    max-width: 1300px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 1.7rem;
    color: var(--primary);
    font-weight: 700;
}

.logo-sub {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
}

.header-search {
    flex: 1;
    max-width: 460px;
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    overflow: hidden;
    background: var(--cream);
}

.header-search input {
    border: none;
    background: transparent;
    padding: 10px 18px;
    flex: 1;
    font-family: var(--font-body);
    font-size: 0.88rem;
    outline: none;
}

.header-search button {
    background: var(--primary);
    border: none;
    color: white;
    padding: 10px 18px;
    cursor: pointer;
    font-size: 1rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-actions a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: var(--text-mid);
    font-size: 0.7rem;
    transition: color 0.2s;
    position: relative;
}

.header-actions a:hover { color: var(--primary); }

.header-actions a .icon { font-size: 1.35rem; }

.wishlist-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--primary);
    color: white;
    font-size: 0.6rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav {
    background: var(--cream);
    border-top: 1px solid var(--border);
}

.nav-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-inner a {
    padding: 13px 18px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}

.nav-inner a:hover,
.nav-inner a.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* Mobile Menu Toggle */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

/* ══════════════════════════════════════
   HERO SLIDER
══════════════════════════════════════ */

.hero {
    position: relative;
    overflow: hidden;
    height: 520px;
    background: var(--cream-dark);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    display: flex;
    align-items: center;
}

.hero-slide.active { opacity: 1; }

.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 60px;
    color: white;
}

.hero-badge {
    display: inline-block;
    background: var(--gold);
    color: #1a1a1a;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 14px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 28px;
    max-width: 440px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: #1a1a1a;
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.2s;
}

.btn-hero:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

.hero-prev, .hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1.5px solid rgba(255,255,255,0.4);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-prev { left: 20px; }
.hero-next { right: 20px; }
.hero-prev:hover, .hero-next:hover { background: rgba(255,255,255,0.4); }

/* ══════════════════════════════════════
   SECTION STYLES
══════════════════════════════════════ */

.section {
    padding: 60px 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-eyebrow {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.section-divider::before,
.section-divider::after {
    content: '';
    width: 60px;
    height: 1.5px;
    background: var(--border);
}

.section-divider span {
    color: var(--gold);
    font-size: 1.1rem;
}

/* ══════════════════════════════════════
   CATEGORIES GRID
══════════════════════════════════════ */

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.category-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
    group: true;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card:hover img { transform: scale(1.06); }

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 50%);
}

.category-card-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px 16px;
    color: white;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
}

.category-card-count {
    font-family: var(--font-body);
    font-size: 0.75rem;
    opacity: 0.8;
    font-weight: 400;
}

/* ══════════════════════════════════════
   PRODUCT CARDS
══════════════════════════════════════ */

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.product-image-wrap {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--cream);
}

.product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image-wrap img { transform: scale(1.05); }

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.product-badge.gold { background: var(--gold); color: #1a1a1a; }
.product-badge.out { background: #888; }

.product-wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: white;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
    color: #ccc;
}

.product-wishlist-btn:hover,
.product-wishlist-btn.active { color: var(--primary); }

.product-info {
    padding: 14px;
}

.product-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-fabric {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.product-price {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.btn-inquire {
    display: block;
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
}

.btn-inquire:hover { background: var(--primary-dark); }

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    background: #25D366;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 6px;
    text-align: center;
}

.btn-whatsapp:hover { background: #1ebe5a; }

/* ══════════════════════════════════════
   BANNER / PROMO STRIP
══════════════════════════════════════ */

.promo-strip {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.promo-strip h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--gold-light);
}

.promo-strip p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.btn-light {
    display: inline-block;
    background: var(--gold);
    color: #1a1a1a;
    padding: 11px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.2s;
}

.btn-light:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ══════════════════════════════════════
   FEATURES STRIP
══════════════════════════════════════ */

.features-strip {
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 20px;
}

.features-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.feature-icon {
    font-size: 1.8rem;
    color: var(--primary);
    flex-shrink: 0;
}

.feature-text strong {
    display: block;
    font-size: 0.88rem;
    color: var(--text-dark);
}

.feature-text span {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* ══════════════════════════════════════
   FILTERS BAR
══════════════════════════════════════ */

.filters-bar {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid var(--border);
}

.filters-bar form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.filters-bar select,
.filters-bar input {
    padding: 9px 14px;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    background: white;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s;
}

.filters-bar select:focus,
.filters-bar input:focus { border-color: var(--primary); }

.btn-filter {
    background: var(--primary);
    color: white;
    border: none;
    padding: 9px 20px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-filter:hover { background: var(--primary-dark); }

/* ══════════════════════════════════════
   PRODUCT DETAIL PAGE
══════════════════════════════════════ */

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.gallery-main {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--cream);
    margin-bottom: 12px;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.gallery-thumb {
    aspect-ratio: 1;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s;
}

.gallery-thumb.active,
.gallery-thumb:hover { border-color: var(--primary); }

.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-detail-info h1 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.product-detail-fabric {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.product-detail-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
}

.product-detail-desc {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 24px;
}

.product-meta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.meta-item label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.meta-item span {
    font-size: 0.88rem;
    color: var(--text-dark);
    font-weight: 500;
}

.inquiry-form-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-top: 24px;
}

.inquiry-form-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-mid);
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    background: white;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--primary); }

.form-group textarea { resize: vertical; min-height: 80px; }

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-info-card {
    background: var(--primary);
    color: white;
    padding: 36px;
    border-radius: var(--radius);
}

.contact-info-card h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--gold-light);
    margin-bottom: 8px;
}

.contact-info-card p {
    font-size: 0.88rem;
    opacity: 0.85;
    margin-bottom: 28px;
}

.contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

.contact-item-icon {
    font-size: 1.3rem;
    color: var(--gold-light);
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item-text strong { display: block; font-size: 0.8rem; opacity: 0.7; margin-bottom: 2px; }
.contact-item-text span { font-size: 0.9rem; }

.map-embed {
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 20px;
    border: 1px solid var(--border);
}

.map-embed iframe { display: block; }

/* ══════════════════════════════════════
   WISHLIST PAGE
══════════════════════════════════════ */

.wishlist-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-light);
}

.wishlist-empty .empty-icon { font-size: 4rem; margin-bottom: 16px; }
.wishlist-empty h2 { font-family: var(--font-display); font-size: 1.6rem; color: var(--text-mid); margin-bottom: 8px; }
.wishlist-empty p { font-size: 0.9rem; margin-bottom: 24px; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */

footer {
    background: #1a0808;
    color: rgba(255,255,255,0.8);
    margin-top: 60px;
}

.footer-top {
    max-width: 1300px;
    margin: 0 auto;
    padding: 50px 20px 30px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand .logo-main { color: var(--gold-light); font-family: var(--font-display); font-size: 1.6rem; }
.footer-brand .logo-sub { color: var(--gold); font-size: 0.6rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 14px; }
.footer-brand p { font-size: 0.82rem; opacity: 0.7; line-height: 1.8; margin-bottom: 20px; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    transition: background 0.2s;
    color: white;
}
.footer-social a:hover { background: var(--gold); color: #1a1a1a; }

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold-light);
    margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.82rem; opacity: 0.7; transition: opacity 0.2s; }
.footer-col ul li a:hover { opacity: 1; color: var(--gold-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 16px 20px;
    text-align: center;
    font-size: 0.75rem;
    opacity: 0.5;
}

/* ══════════════════════════════════════
   BREADCRUMB
══════════════════════════════════════ */

.breadcrumb {
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 12px 20px;
}

.breadcrumb-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-light);
}

.breadcrumb-inner a { color: var(--text-light); }
.breadcrumb-inner a:hover { color: var(--primary); }
.breadcrumb-inner .sep { opacity: 0.5; }
.breadcrumb-inner .current { color: var(--primary); font-weight: 500; }

/* ══════════════════════════════════════
   MODALS
══════════════════════════════════════ */

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active { display: flex; }

.modal-box {
    background: white;
    border-radius: var(--radius);
    max-width: 480px;
    width: 100%;
    overflow: hidden;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
    background: var(--primary);
    color: white;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 { font-family: var(--font-display); font-size: 1.1rem; }
.modal-close { background: none; border: none; color: white; font-size: 1.4rem; cursor: pointer; }
.modal-body { padding: 24px; }

/* Toast */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #1a1a1a;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-left: 3px solid #27ae60; }
.toast.error { border-left: 3px solid #e74c3c; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .features-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .header-main { flex-wrap: wrap; gap: 12px; }
    .header-search { order: 3; max-width: 100%; flex: 0 0 100%; }
    .hamburger { display: block; }
    .nav-inner { display: none; flex-direction: column; }
    .nav-inner.open { display: flex; }
    .nav-inner a { padding: 12px 20px; border-bottom: 1px solid var(--border); }
    .hero { height: 380px; }
    .hero-content h1 { font-size: 2rem; }
    .hero-content { padding: 0 30px; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .product-detail-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .section-title { font-size: 1.6rem; }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .hero { height: 300px; }
    .hero-content h1 { font-size: 1.6rem; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .header-actions { gap: 14px; }
}
