/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --gold:     #b8860b;
    --gold-lt:  #d4a017;
    --dark:     #1a1208;
    --brown:    #3d2b1f;
    --cream:    #faf6ee;
    --white:    #ffffff;
    --text:     #3d3020;
    --text-muted: #7a6a56;
    --border:   #e8d9c0;
    --radius:   12px;
    --shadow:   0 4px 20px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4rem 0; }
.section.bg-light { background: var(--cream); }
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--brown); margin-bottom: 0.5rem; }
.section-header p { color: var(--text-muted); font-size: 1rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--brown); margin-bottom: 1.5rem; }

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.25s ease;
    text-align: center;
}
.btn-primary {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.btn-primary:hover { background: var(--brown); border-color: var(--brown); }

.btn-outline {
    background: transparent;
    color: var(--brown);
    border-color: var(--brown);
}
.btn-outline:hover { background: var(--brown); color: var(--white); }

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline-light:hover { background: var(--white); color: var(--brown); }

.btn-add-cart {
    width: 100%;
    background: var(--cream);
    color: var(--brown);
    border: 2px solid var(--border);
    padding: 0.6rem 1rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s;
    margin-top: 0.75rem;
}
.btn-add-cart:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

.btn-large { padding: 1rem 2rem; font-size: 1rem; width: 100%; }

/* ========== NAVBAR ========== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.nav-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    height: 70px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--brown);
    flex-shrink: 0;
}
.logo-icon { font-size: 1.6rem; }

.nav-links {
    display: flex;
    gap: 1.75rem;
    flex: 1;
}
.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s;
    position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--gold);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s;
    flex-shrink: 0;
}
.cart-btn:hover { background: var(--brown); }
.cart-badge {
    background: var(--white);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px; height: 20px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--brown);
    margin-left: auto;
}
.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 1rem 1.5rem;
    gap: 1rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 1rem; font-weight: 500; color: var(--text); padding: 0.4rem 0; border-bottom: 1px solid var(--border); }

/* ========== SIZE SELECTOR ========== */
.size-label { font-size: 0.82rem; font-weight: 600; color: var(--brown); margin-bottom: 0.4rem; }
.size-row {
    display: flex;
    flex-direction: row;
    gap: 0.4rem;
    flex-wrap: nowrap;
    margin-bottom: 0.6rem;
    overflow-x: auto;
}
.size-btn {
    flex-shrink: 0;
    padding: 0.3rem 0.65rem;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    background: var(--cream);
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.18s;
    white-space: nowrap;
}
.size-btn:hover { border-color: var(--gold); color: var(--gold); }
.size-btn.active { background: var(--gold); color: var(--white); border-color: var(--gold); }
.detail-sizes { gap: 0.6rem; margin-bottom: 1rem; }
.detail-sizes .size-btn { padding: 0.45rem 1rem; font-size: 0.88rem; border-radius: 8px; }

/* ========== WHY US ========== */
.why-us { background: var(--brown); padding: 1.5rem 0; }
.badges-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
}
.badge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
}
.badge-icon { font-size: 1.8rem; }
.badge-item strong { display: block; font-size: 0.9rem; }
.badge-item p { font-size: 0.8rem; color: rgba(255,255,255,0.7); }

/* ========== PRODUCTS GRID ========== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}
.products-grid.four-col {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.products-count { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.9rem; }

.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.product-img-wrap {
    position: relative;
    overflow: hidden;
    height: 230px;
    background: var(--cream);
}
.product-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }

.product-tag {
    position: absolute;
    top: 10px; left: 10px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.large-tag { font-size: 0.85rem; padding: 0.35rem 0.8rem; }

.product-info { padding: 1rem 1.1rem 1.1rem; }
.product-info h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 0.15rem;
    line-height: 1.3;
}
.product-info h3:hover { color: var(--gold); }
.product-subtitle { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.6rem; }

.product-price-row { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.price { font-size: 1.1rem; font-weight: 700; color: var(--brown); }
.original-price { font-size: 0.85rem; color: #aaa; text-decoration: line-through; }
.weight-tag { font-size: 0.72rem; background: var(--cream); color: var(--text-muted); padding: 0.15rem 0.4rem; border-radius: 4px; border: 1px solid var(--border); }

.view-all-wrap { text-align: center; margin-top: 2.5rem; }

/* ========== PROMO BANNER ========== */
.promo-banner {
    background: linear-gradient(135deg, var(--brown) 0%, #5c3d25 100%);
    padding: 3.5rem 0;
    color: var(--white);
}
.promo-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.promo-text h2 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 0.75rem; }
.promo-text p { color: rgba(255,255,255,0.8); max-width: 520px; margin-bottom: 1.5rem; }
.promo-img { font-size: 6rem; flex-shrink: 0; }

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.testimonial-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 0.75rem; }
.testimonial-card p { font-style: italic; color: var(--text); margin-bottom: 1rem; line-height: 1.7; }
.testimonial-card strong { font-size: 0.9rem; color: var(--brown); }

/* ========== PAGE BANNER ========== */
.page-banner {
    background: linear-gradient(135deg, var(--brown), #5c3d25);
    color: var(--white);
    padding: 3.5rem 0;
    text-align: center;
}
.page-banner h1 { font-family: 'Playfair Display', serif; font-size: 2.4rem; margin-bottom: 0.5rem; }
.page-banner p { color: rgba(255,255,255,0.8); font-size: 1rem; }
.page-title { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--brown); margin-bottom: 2rem; }

/* ========== PRODUCT DETAIL ========== */
.breadcrumb { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 2rem; }
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.detail-img-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}
.detail-img-wrap img { width: 100%; height: 480px; object-fit: cover; }

.detail-info h1 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--brown); margin-bottom: 0.4rem; line-height: 1.3; }
.detail-subtitle { color: var(--text-muted); font-size: 1rem; margin-bottom: 1.25rem; }

.detail-price-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.4rem; flex-wrap: wrap; }
.large-price { font-size: 1.8rem !important; }
.discount-badge {
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
}
.weight-note { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.detail-desc { color: var(--text); line-height: 1.8; margin-bottom: 1.5rem; }

.benefits-box {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}
.benefits-box h4 { font-size: 0.95rem; font-weight: 700; color: var(--brown); margin-bottom: 0.75rem; }
.benefits-box li { font-size: 0.9rem; color: var(--text); margin-bottom: 0.4rem; }

.add-cart-form { margin-bottom: 1.25rem; }
.qty-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.qty-row label { font-size: 0.9rem; font-weight: 600; color: var(--brown); }
.qty-input {
    width: 80px;
    padding: 0.5rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    text-align: center;
}
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.related-section { background: var(--cream); }

/* ========== CART ========== */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    align-items: start;
}
.cart-items { display: flex; flex-direction: column; gap: 1rem; }
.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
}
.cart-item-img { width: 80px; height: 80px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-info h3 { font-size: 0.95rem; font-weight: 700; color: var(--brown); margin-bottom: 0.25rem; }
.cart-item-weight, .cart-item-price { font-size: 0.82rem; color: var(--text-muted); }

.cart-item-controls { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.qty-btn {
    background: var(--cream);
    border: 1px solid var(--border);
    width: 28px; height: 28px;
    border-radius: 6px;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
}
.qty-btn:hover { background: var(--gold); color: var(--white); }
.qty-display { font-weight: 700; font-size: 1rem; width: 30px; text-align: center; }

.cart-item-subtotal { font-weight: 700; font-size: 1rem; color: var(--brown); flex-shrink: 0; min-width: 60px; text-align: right; }
.remove-btn {
    background: none;
    border: none;
    color: #ccc;
    font-size: 1rem;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}
.remove-btn:hover { color: #e53935; }

.cart-summary {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    position: sticky;
    top: 90px;
}
.cart-summary h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 1rem; color: var(--brown); }
.summary-row { display: flex; justify-content: space-between; font-size: 0.95rem; margin-bottom: 0.75rem; }
.summary-divider { border-top: 1px solid var(--border); margin: 0.75rem 0; }
.total-row { font-size: 1.1rem; }
.free-shipping-note { font-size: 0.8rem; color: var(--gold); margin-top: 0.5rem; text-align: center; }

.empty-cart { text-align: center; padding: 4rem 0; }
.empty-icon { font-size: 4rem; margin-bottom: 1rem; }
.empty-cart h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--brown); margin-bottom: 0.5rem; }
.empty-cart p { color: var(--text-muted); margin-bottom: 1.5rem; }

/* ========== ABOUT ========== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}
.about-img-wrap img { width: 100%; border-radius: var(--radius); height: 420px; object-fit: cover; }
.about-text h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--brown); margin-bottom: 1rem; }
.about-text p { color: var(--text); line-height: 1.8; margin-bottom: 1rem; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
}
.feature-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.feature-card h3 { font-size: 1rem; font-weight: 700; color: var(--brown); margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

.stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
}
.stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--gold); }
.stat-label { display: block; font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }

/* ========== CONTACT ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
}
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--brown); margin-bottom: 1rem; }
.contact-info > p { color: var(--text-muted); margin-bottom: 1.75rem; line-height: 1.7; }

.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.contact-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-detail strong { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 0.25rem; }
.contact-detail p, .contact-detail a { font-size: 0.95rem; color: var(--text); }
.contact-detail a:hover { color: var(--gold); }

.social-links-contact { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.social-links-contact a {
    background: var(--cream);
    border: 1px solid var(--border);
    color: var(--brown);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}
.social-links-contact a:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

.contact-form-wrap { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }
.contact-form h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--brown); margin-bottom: 1.5rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--brown); margin-bottom: 0.4rem; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    background: var(--white);
    color: var(--text);
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group textarea { resize: vertical; }
.form-group select { cursor: pointer; }

.success-msg {
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    color: #2e7d32;
    padding: 1.5rem;
    border-radius: var(--radius);
    font-size: 1rem;
    line-height: 1.6;
}

/* ========== FOOTER ========== */
.footer { background: var(--dark); color: rgba(255,255,255,0.8); padding: 3.5rem 0 0; }
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
}
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--white); margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.6); max-width: 300px; }

.footer-links h4, .footer-contact h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 1rem; font-weight: 700; letter-spacing: 0.03em; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-lt); }
.footer-contact p { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 0.4rem; }

.social-icons { display: flex; gap: 0.75rem; margin-top: 1.25rem; flex-wrap: wrap; }
.social-icon {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    color: rgba(255,255,255,0.7);
    transition: all 0.2s;
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover { background: var(--gold); color: var(--white); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.25rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* ========== RESPONSIVE ========== */

/* --- Tablet (≤900px) --- */
@media (max-width: 900px) {
    /* Navbar */
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .nav-inner { gap: 1rem; }

    /* (hero removed) */

    /* Sections */
    .section { padding: 3rem 0; }
    .section-header h2 { font-size: 1.75rem; }

    /* Products grid → 2 columns */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .products-grid.four-col {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Product detail → stack */
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .detail-img-wrap img { height: 320px; }
    .detail-info h1 { font-size: 1.5rem; }

    /* Cart → stack */
    .cart-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .cart-summary { position: static; }

    /* About → stack */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-img-wrap img { height: 280px; }

    /* Contact → stack */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Promo banner */
    .promo-inner { flex-direction: column; text-align: center; }
    .promo-img { font-size: 4rem; }
    .promo-text h2 { font-size: 1.6rem; }

    /* Footer → 2 cols */
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }

    /* Page banner */
    .page-banner { padding: 2.5rem 0; }
    .page-banner h1 { font-size: 1.9rem; }

    /* Badges */
    .badges-row { gap: 1.5rem; justify-content: flex-start; padding: 0.5rem 1rem; }

    /* Stats */
    .stats-row { gap: 1.5rem; }

    /* Features */
    .features-grid { grid-template-columns: repeat(2, 1fr); }

    /* Testimonials */
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Mobile (≤600px) --- */
@media (max-width: 600px) {
    /* Navbar */
    .nav-inner { height: 60px; }
    .logo { font-size: 1.15rem; }
    .logo-icon { font-size: 1.3rem; }
    .cart-btn { padding: 0.4rem 0.75rem; font-size: 0.82rem; }

    /* (hero removed) */
    .hero-content h1 { font-size: 1.8rem; }
    .hero-sub { font-size: 0.92rem; margin-bottom: 1.5rem; }
    .hero-label { font-size: 0.82rem; }
    .hero-btns { flex-direction: column; gap: 0.75rem; }
    .hero-btns .btn { width: 100%; text-align: center; }

    /* Sections */
    .section { padding: 2.25rem 0; }
    .section-header h2 { font-size: 1.45rem; }
    .section-header p { font-size: 0.9rem; }
    .section-title { font-size: 1.3rem; }

    /* Products grid → 2 slim columns */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .products-grid.four-col {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .product-img-wrap { height: 160px; }
    .product-info { padding: 0.75rem; }
    .product-info h3 { font-size: 0.82rem; }
    .product-subtitle { font-size: 0.7rem; }
    .price { font-size: 0.95rem; }
    .original-price { font-size: 0.75rem; }
    .weight-tag { display: none; }
    .btn-add-cart { font-size: 0.78rem; padding: 0.5rem 0.5rem; margin-top: 0.5rem; }

    /* Why us badges → 2 col grid */
    .why-us { padding: 1.25rem 0; }
    .badges-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    .badge-item { gap: 0.5rem; }
    .badge-icon { font-size: 1.4rem; }
    .badge-item strong { font-size: 0.78rem; }
    .badge-item p { font-size: 0.7rem; }

    /* Promo banner */
    .promo-banner { padding: 2rem 0; }
    .promo-text h2 { font-size: 1.35rem; }
    .promo-text p { font-size: 0.88rem; }
    .promo-img { font-size: 3rem; }

    /* Testimonials → 1 col */
    .testimonials-grid { grid-template-columns: 1fr; }

    /* Page banner */
    .page-banner { padding: 2rem 0; }
    .page-banner h1 { font-size: 1.5rem; }
    .page-banner p { font-size: 0.88rem; }
    .page-title { font-size: 1.5rem; margin-bottom: 1.25rem; }

    /* Product detail */
    .detail-img-wrap img { height: 240px; }
    .detail-info h1 { font-size: 1.3rem; }
    .large-price { font-size: 1.4rem !important; }
    .detail-meta { flex-direction: column; gap: 0.5rem; }

    /* Cart items */
    .cart-item {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    .cart-item-img { width: 65px; height: 65px; }
    .cart-item-info { flex: 1; min-width: 0; }
    .cart-item-info h3 { font-size: 0.85rem; }
    .cart-item-controls { order: 3; }
    .cart-item-subtotal { order: 4; }
    .remove-btn { order: 5; }

    /* About */
    .about-img-wrap img { height: 220px; }
    .about-text h2 { font-size: 1.4rem; }
    .features-grid { grid-template-columns: 1fr; }

    /* Stats → 2 col */
    .stats-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .stat-num { font-size: 2rem; }

    /* Contact */
    .contact-form-wrap { padding: 1.25rem; }
    .social-links-contact { gap: 0.5rem; }
    .social-links-contact a { font-size: 0.78rem; padding: 0.4rem 0.75rem; }

    /* Footer → 1 col */
    .footer { padding: 2.5rem 0 0; }
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding-bottom: 2rem;
    }
    .footer-brand p { max-width: 100%; }
    .footer-bottom { font-size: 0.78rem; padding: 1rem 0; }

    /* Breadcrumb */
    .breadcrumb { font-size: 0.78rem; }

    /* Empty cart */
    .empty-cart { padding: 2.5rem 0; }
    .empty-icon { font-size: 3rem; }
    .empty-cart h2 { font-size: 1.4rem; }
}

/* --- Very small phones (≤380px) --- */
@media (max-width: 380px) {
    .products-grid { grid-template-columns: 1fr; }
    .products-grid.four-col { grid-template-columns: 1fr; }
    .product-img-wrap { height: 200px; }
    .badges-row { grid-template-columns: 1fr; }
}
