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

:root {
    --primary:    #1a5c38;
    --primary-h:  #134827;
    --accent:     #e8a020;
    --text:       #1a1a1a;
    --text-muted: #666;
    --border:     #e0e0e0;
    --bg:         #f8f8f6;
    --white:      #ffffff;
    --radius:     10px;
    --shadow:     0 2px 12px rgba(0,0,0,.08);
    --shadow-h:   0 6px 24px rgba(0,0,0,.14);
}

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

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

/* === HEADER === */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--white); box-shadow: 0 1px 0 var(--border); }

.header-top {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 8px 16px;
    font-size: .8rem;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: 1.3rem;
    white-space: nowrap;
}
.logo-icon { font-size: 1.5rem; }
.logo-text strong { color: var(--primary); }

.nav-links {
    display: flex;
    gap: 1.5rem;
    flex: 1;
}
.nav-links a {
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color .2s;
}
.nav-links a:hover { color: var(--primary); }

.nav-actions { margin-left: auto; }

.cart-btn {
    position: relative;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: .3rem;
    padding: .4rem .8rem;
    border-radius: var(--radius);
    background: var(--bg);
    transition: background .2s;
}
.cart-btn:hover { background: var(--border); }

.cart-badge {
    position: absolute;
    top: -4px; right: -4px;
    background: var(--accent);
    color: var(--white);
    font-size: .7rem;
    font-weight: 700;
    border-radius: 50%;
    width: 18px; height: 18px;
    display: flex; align-items: center; justify-content: center;
}

.menu-toggle { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; }

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: .75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: .9rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .2s;
    text-align: center;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-h); }
.btn-outline { border-color: var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-add {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: .6rem;
    border-radius: var(--radius);
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
}
.btn-add:hover { background: var(--primary-h); }

/* === HERO === */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

.hero-badge {
    display: inline-block;
    background: #e8f5ee;
    color: var(--primary);
    font-size: .8rem;
    font-weight: 600;
    padding: .3rem .8rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.hero-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    margin-bottom: 1rem;
}
.hero-content h1 strong { color: var(--primary); }
.hero-content p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2rem; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero-stats {
    display: flex;
    gap: 2rem;
}
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 1.4rem; color: var(--primary); }
.stat span { font-size: .8rem; color: var(--text-muted); }

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-image img {
    width: 100%;
    max-width: 520px;
    height: 380px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0,0,0,.15);
}

/* === TRUST BAR === */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 1.5rem;
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.trust-item {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.trust-icon { font-size: 1.5rem; }
.trust-item div { display: flex; flex-direction: column; }
.trust-item strong { font-size: .9rem; }
.trust-item span { font-size: .8rem; color: var(--text-muted); }

/* === SECTIONS === */
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.section-header h2 { font-size: 1.7rem; }
.see-all { font-size: .9rem; color: var(--primary); font-weight: 600; }
.see-all:hover { text-decoration: underline; }

/* === CATEGORIES === */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
    padding: 2rem 1rem;
    background: var(--bg);
    border-radius: var(--radius);
    border: 2px solid transparent;
    transition: all .2s;
    text-align: center;
}
.category-card:hover {
    border-color: var(--primary);
    background: #e8f5ee;
    transform: translateY(-3px);
}
.cat-icon { font-size: 2.5rem; }
.category-card h3 { font-size: .95rem; font-weight: 600; }

/* === PRODUCTS GRID === */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow .2s, transform .2s;
}
.product-card:hover {
    box-shadow: var(--shadow-h);
    transform: translateY(-3px);
}

.product-img {
    position: relative;
    aspect-ratio: 1;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.img-placeholder { font-size: 4rem; opacity: .4; }

.badge-promo {
    position: absolute;
    top: 8px; left: 8px;
    background: #d62b2b;
    color: var(--white);
    font-size: .75rem;
    font-weight: 700;
    padding: .2rem .5rem;
    border-radius: 4px;
}

.product-info { padding: 1rem; }
.product-info h3 { font-size: .9rem; margin-bottom: .5rem; line-height: 1.3; }
.product-info h3 a:hover { color: var(--primary); }

.product-price {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .75rem;
}
.product-price strong { font-size: 1rem; color: var(--primary); }
.product-price s { font-size: .85rem; color: var(--text-muted); }

/* === TWINT BANNER === */
.twint-banner {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 1.25rem;
    font-size: 1rem;
}

/* === FOOTER === */
.site-footer {
    background: #111;
    color: #ccc;
    padding: 3rem 1.5rem 1.5rem;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #333;
}
.footer-brand .logo-text { color: var(--white); font-size: 1.2rem; }
.footer-brand p { margin-top: .75rem; font-size: .85rem; color: #999; line-height: 1.5; }
.footer-links h4, .footer-payments h4 { color: var(--white); margin-bottom: 1rem; font-size: .9rem; }
.footer-links ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .85rem; color: #999; }
.footer-links a:hover { color: var(--white); }

.payment-badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: .75rem; }
.badge {
    background: #222;
    border: 1px solid #444;
    color: #ccc;
    font-size: .75rem;
    font-weight: 600;
    padding: .3rem .6rem;
    border-radius: 4px;
}
.footer-trust { font-size: .8rem; color: #777; }

.footer-bottom {
    max-width: 1200px;
    margin: 1.5rem auto 0;
    display: flex;
    justify-content: space-between;
    font-size: .8rem;
    color: #666;
    flex-wrap: wrap;
    gap: .5rem;
}
.footer-bottom a { color: #888; }
.footer-bottom a:hover { color: var(--white); }

/* === PAGE CONTAINER === */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

.breadcrumb {
    font-size: .85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.breadcrumb a:hover { color: var(--primary); text-decoration: underline; }

.page-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.page-header h1 { font-size: 1.8rem; }
.product-count {
    background: var(--bg);
    border: 1px solid var(--border);
    font-size: .8rem;
    padding: .2rem .6rem;
    border-radius: 20px;
    color: var(--text-muted);
}

.empty-state {
    text-align: center;
    padding: 5rem 1rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.1rem;
}

/* === PRODUCT DETAIL === */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.product-detail-img {
    position: relative;
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.img-placeholder-lg { font-size: 8rem; opacity: .3; }

.badge-promo-lg { font-size: .9rem; padding: .3rem .8rem; }

.product-category-tag {
    display: inline-block;
    background: #e8f5ee;
    color: var(--primary);
    font-size: .8rem;
    font-weight: 600;
    padding: .25rem .6rem;
    border-radius: 20px;
    margin-bottom: .75rem;
}

.product-detail-info h1 { font-size: 1.8rem; margin-bottom: 1rem; line-height: 1.2; }

.product-price-lg strong { font-size: 1.6rem; }
.product-price-lg s { font-size: 1rem; }
.saving { font-size: .85rem; color: #d62b2b; font-weight: 600; }

.product-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin: 1.25rem 0;
}
.product-badges span {
    background: var(--bg);
    border: 1px solid var(--border);
    font-size: .8rem;
    padding: .3rem .7rem;
    border-radius: 20px;
}

.product-description {
    margin: 1.25rem 0;
    color: var(--text-muted);
    line-height: 1.7;
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
}

/* === VARIANTS === */
.variant-selector { margin: 1.25rem 0; }
.variant-selector label { font-size: .9rem; display: block; margin-bottom: .75rem; }
.variant-options { display: flex; flex-wrap: wrap; gap: .5rem; }
.variant-btn {
    padding: .4rem .9rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    font-size: .85rem;
    font-family: inherit;
    cursor: pointer;
    transition: all .2s;
}
.variant-btn:hover { border-color: var(--primary); color: var(--primary); }
.variant-btn.active { border-color: var(--primary); background: var(--primary); color: var(--white); }

.variant-tag {
    display: inline-block;
    background: #e8f5ee;
    color: var(--primary);
    font-size: .75rem;
    padding: .15rem .5rem;
    border-radius: 4px;
    font-weight: 500;
}

.add-to-cart-form { margin: 1.5rem 0; }

.qty-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.qty-row label { font-weight: 500; font-size: .9rem; }

.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.qty-btn {
    background: var(--bg);
    border: none;
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background .2s;
}
.qty-btn:hover { background: var(--border); }
.qty-control input[type="number"] {
    width: 50px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    height: 36px;
    font-size: .95rem;
    -moz-appearance: textfield;
}
.qty-control input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; }

.btn-full { width: 100%; display: block; }

.shipping-info {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: .4rem;
    font-size: .85rem;
    color: var(--text-muted);
}

/* === 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: grid;
    grid-template-columns: 80px 1fr auto auto auto;
    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;
    background: var(--bg);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.img-placeholder-sm { font-size: 2rem; opacity: .4; }

.cart-item-info { display: flex; flex-direction: column; gap: .25rem; font-size: .9rem; color: var(--text-muted); }
.cart-item-info a:hover { color: var(--primary); }

.cart-qty-form .qty-control { transform: scale(.9); }

.cart-item-subtotal { font-weight: 700; font-size: .95rem; white-space: nowrap; }

.btn-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    padding: .3rem;
    transition: color .2s;
}
.btn-remove:hover { color: #d62b2b; }

.cart-summary {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    position: sticky;
    top: 90px;
}
.cart-summary h2 { font-size: 1.2rem; margin-bottom: 1.25rem; }

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .9rem;
    padding: .5rem 0;
    border-bottom: 1px solid var(--border);
    gap: .5rem;
}
.summary-line small { display: block; font-size: .75rem; color: var(--text-muted); }

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    padding: 1rem 0;
    margin-top: .25rem;
}
.summary-total strong { font-size: 1.3rem; color: var(--primary); }

@media (max-width: 900px) {
    .product-detail { grid-template-columns: 1fr; }
    .cart-layout { grid-template-columns: 1fr; }
    .cart-item { grid-template-columns: 70px 1fr auto; }
    .cart-item-subtotal, .cart-qty-form { display: none; }
}

/* === CHECKOUT === */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2rem;
    align-items: start;
    margin-top: 1.5rem;
}

.form-section {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.25rem;
}
.form-section h2 { font-size: 1.1rem; margin-bottom: 1.25rem; }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-full { grid-column: 1 / -1; }

.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .85rem; font-weight: 500; }
.form-group input,
.form-group select {
    padding: .6rem .85rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: .95rem;
    font-family: inherit;
    transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.payment-notice {
    background: #e8f5ee;
    border: 1px solid #b8ddc8;
    border-radius: var(--radius);
    padding: 1rem;
    font-size: .9rem;
    color: var(--primary);
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.btn-lg { padding: 1rem 1.5rem; font-size: 1rem; }

/* === SHIPPING OPTIONS === */
.shipping-loading { color: var(--text-muted); font-size: .9rem; }

.tracking-result { margin-top: 2rem; padding: 1.5rem; background: #f9f9f9; border-radius: 12px; max-width: 500px; }
.tracking-box { margin-top: 1rem; padding: 1rem; background: #fff; border: 1px solid #e0e0e0; border-radius: 8px; }
.shipping-unavailable { color: #c0392b; font-size: .9rem; font-weight: 500; }
#submit-btn:disabled { opacity: .5; cursor: not-allowed; }

.shipping-option-list { display: flex; flex-direction: column; gap: .5rem; }

.shipping-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .85rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all .2s;
}
.shipping-option:hover { border-color: var(--primary); }
.shipping-option.selected { border-color: var(--primary); background: #e8f5ee; }
.shipping-option input[type="radio"] { accent-color: var(--primary); width: 16px; height: 16px; flex-shrink: 0; }
.shipping-option-info { flex: 1; display: flex; flex-direction: column; gap: .15rem; }
.shipping-option-info strong { font-size: .9rem; }
.shipping-option-info span { font-size: .8rem; color: var(--text-muted); }
.shipping-option-price { font-weight: 700; color: var(--primary); white-space: nowrap; font-size: .95rem; }

.order-summary {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    position: sticky;
    top: 90px;
}
.order-summary h2 { font-size: 1.1rem; margin-bottom: 1rem; }

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .9rem;
    padding: .4rem 0;
    gap: .5rem;
}
.order-item-name em { color: var(--text-muted); font-style: normal; }

.order-divider { border-top: 1px solid var(--border); margin: .75rem 0; }

.order-line {
    display: flex;
    justify-content: space-between;
    font-size: .9rem;
    padding: .3rem 0;
    color: var(--text-muted);
}
.order-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.05rem;
    padding: .75rem 0 0;
    border-top: 2px solid var(--border);
    margin-top: .5rem;
}
.order-total strong { color: var(--primary); font-size: 1.2rem; }

/* === CONFIRMATION === */
.confirmation-box {
    max-width: 680px;
    margin: 2rem auto;
    text-align: center;
    padding: 2rem;
}
.confirmation-icon { font-size: 4rem; margin-bottom: 1rem; }
.confirmation-box h1 { font-size: 2rem; margin-bottom: .75rem; }
.confirmation-subtitle { font-size: 1.1rem; margin-bottom: .5rem; }
.confirmation-box > p { color: var(--text-muted); margin-bottom: 2rem; }

.confirmation-details {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: left;
    margin-bottom: 1.5rem;
}
.confirmation-details h2 { font-size: 1rem; margin-bottom: 1rem; }

.confirmation-address {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.confirmation-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
}
.confirmation-table th {
    text-align: left;
    padding: .5rem;
    background: var(--border);
    font-size: .8rem;
}
.confirmation-table td { padding: .5rem; border-bottom: 1px solid var(--border); }
.confirmation-table tfoot td { font-size: 1rem; border-bottom: none; padding-top: .75rem; }

.confirmation-next {
    background: #e8f5ee;
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: .4rem;
    font-size: .9rem;
    color: var(--primary);
}

@media (max-width: 900px) {
    .checkout-layout { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .form-full { grid-column: 1; }
}

/* === 404 === */
.error-page {
    text-align: center;
    padding: 5rem 1rem;
    max-width: 500px;
    margin: 0 auto;
}
.error-icon { font-size: 5rem; margin-bottom: 1rem; }
.error-page h1 { font-size: 6rem; font-weight: 700; color: var(--primary); line-height: 1; }
.error-page h2 { font-size: 1.5rem; margin: .5rem 0 1rem; }
.error-page p { color: var(--text-muted); margin-bottom: 2rem; line-height: 1.7; }
.error-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* === TOAST === */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #1a1a1a;
    color: #fff;
    padding: .75rem 1.5rem;
    border-radius: 30px;
    font-size: .9rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity .25s, transform .25s;
    z-index: 9999;
    pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* === FLASH MESSAGES === */
.flash { padding: 1rem 1.5rem; border-radius: var(--radius); margin: 1rem; }
.flash-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.flash-error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* === FAQ === */
.faq-title { font-size: 2rem; margin-bottom: .5rem; }
.faq-subtitle { color: var(--text-muted); margin-bottom: 3rem; }
.faq-subtitle a { color: var(--primary); }

.faq-wrap { display: flex; flex-direction: column; gap: 2.5rem; }

.faq-section h2 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 1rem;
    padding-bottom: .5rem;
    border-bottom: 2px solid #e8f5ee;
}

.faq-list { display: flex; flex-direction: column; gap: .5rem; }

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: var(--white);
    border: none;
    padding: 1rem 1.25rem;
    text-align: left;
    font-size: .95rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background .2s;
}
.faq-question:hover { background: var(--bg); }
.faq-question[aria-expanded="true"] { background: #e8f5ee; color: var(--primary); }

.faq-icon {
    font-size: 1.2rem;
    font-weight: 300;
    flex-shrink: 0;
    transition: transform .2s;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-answer {
    display: none;
    padding: 1rem 1.25rem;
    background: var(--bg);
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.7;
    border-top: 1px solid var(--border);
}
.faq-answer.open { display: block; }

/* === LEGAL PAGES === */
.legal-page { max-width: 760px; }
.legal-page h1 { font-size: 1.8rem; margin-bottom: .25rem; }
.legal-date { color: var(--text-muted); font-size: .85rem; margin-bottom: 2.5rem; }

.legal-page section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}
.legal-page section:last-child { border-bottom: none; }
.legal-page h2 { font-size: 1.1rem; margin-bottom: .75rem; }
.legal-page p { font-size: .95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: .5rem; }
.legal-page ul { margin: .5rem 0 .5rem 1.5rem; display: flex; flex-direction: column; gap: .3rem; }
.legal-page ul li { font-size: .95rem; color: var(--text-muted); list-style: disc; }
.legal-page a { color: var(--primary); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
    .categories-grid, .products-grid { grid-template-columns: repeat(2, 1fr); }
    .hero { grid-template-columns: 1fr; text-align: center; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-image { display: none; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .nav-links { display: none; }
    .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 1rem 1.5rem; box-shadow: var(--shadow); }
    .menu-toggle { display: block; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-bar { gap: 1rem; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}
