/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, system-ui, sans-serif; color: #1a1a1a; background: #fff; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0,0,0,0.06); transition: box-shadow 0.3s; }
.header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.header__brand { display: flex; align-items: center; gap: 12px; }
.header__logo { width: 44px; height: 44px; background: #ff6b00; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 900; font-size: 18px; }
.header__name { font-size: 18px; font-weight: 800; }
.header__name span { color: #ff6b00; }
.header__tagline { font-size: 12px; color: #888; font-weight: 500; }
.header__nav { display: flex; gap: 28px; list-style: none; }
.header__nav a { font-size: 14px; font-weight: 600; color: #555; transition: color 0.2s; }
.header__nav a:hover { color: #ff6b00; }
.header__actions { display: flex; align-items: center; gap: 12px; }
.header__phone { font-size: 15px; font-weight: 700; color: #1a1a1a; white-space: nowrap; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 12px; font-size: 15px; font-weight: 700; border: none; cursor: pointer; transition: all 0.25s; white-space: nowrap; font-family: inherit; }
.btn-primary { background: #ff6b00; color: #fff; }
.btn-primary:hover { background: #e55f00; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,0,0.3); }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #20bd5a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }
.btn-outline { background: #fff; color: #333; border: 2px solid #e5e7eb; }
.btn-outline:hover { border-color: #ff6b00; color: #ff6b00; }
.btn-large { padding: 16px 32px; font-size: 16px; border-radius: 14px; }
.btn-white { background: #fff; color: #ff6b00; }
.btn-white:hover { background: #f9f9f9; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.btn-sm { padding: 10px 18px; font-size: 13px; }

/* ===== SECTIONS ===== */
.section-header { text-align: center; margin-bottom: 48px; }
.section-title { font-size: 36px; font-weight: 900; color: #1a1a1a; margin-bottom: 12px; letter-spacing: -0.5px; }
.section-subtitle { font-size: 16px; color: #888; }

/* ===== BREADCRUMBS ===== */
.breadcrumbs { padding: 16px 0; background: #fff; border-bottom: 1px solid #f0f0f0; margin-top: 72px; }
.breadcrumbs__list { display: flex; align-items: center; gap: 8px; list-style: none; font-size: 13px; color: #9ca3af; }
.breadcrumbs__list a { color: #6b7280; transition: color 0.2s; }
.breadcrumbs__list a:hover { color: #ff6b00; }
.breadcrumbs__sep { color: #d1d5db; }

/* ===== CATEGORY HERO ===== */
.cat-hero { padding: 60px 0; background: linear-gradient(135deg, #fafafa 0%, #fff5eb 100%); }
.cat-hero__grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.cat-hero__title { font-size: 42px; font-weight: 900; color: #111; letter-spacing: -1.5px; margin-bottom: 16px; line-height: 1.1; }
.cat-hero__title span { color: #ff6b00; }
.cat-hero__desc { font-size: 16px; color: #6b7280; line-height: 1.7; margin-bottom: 28px; max-width: 600px; }
.cat-hero__features { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 28px; }
.cat-hero__feat { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: #333; background: #fff; padding: 8px 16px; border-radius: 100px; border: 1px solid #e5e7eb; }
.cat-hero__feat-icon { font-size: 16px; }
.cat-hero__buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== CATEGORIES GRID ===== */
.categories { padding: 80px 0; background: #fafafa; }
.categories__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.category-card { background: #fff; border-radius: 20px; overflow: hidden; border: 1px solid #f0f0f0; transition: all 0.3s; cursor: pointer; }
.category-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); border-color: transparent; }
.category-card__img { height: 180px; background: linear-gradient(135deg, #f5f5f5, #eee); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.category-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.category-card:hover .category-card__img img { transform: scale(1.05); }
.category-card__placeholder { color: #ccc; font-size: 13px; text-align: center; padding: 20px; }
.category-card__body { padding: 20px; }
.category-card__title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.category-card__desc { font-size: 13px; color: #888; line-height: 1.5; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.category-card__price { font-size: 15px; font-weight: 800; color: #ff6b00; margin-bottom: 12px; }
.category-card__link { font-size: 13px; font-weight: 700; color: #ff6b00; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.category-card:hover .category-card__link { gap: 10px; }

/* ===== PRODUCTS GRID ===== */
.products { padding: 80px 0; background: #fff; }
.products__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card { background: #fff; border-radius: 16px; border: 1px solid #f0f0f0; overflow: hidden; transition: all 0.3s; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); border-color: transparent; }
.product-card__img { position: relative; height: 200px; background: #f8f8f8; overflow: hidden; }
.product-card__img img { width: 100%; height: 100%; object-fit: cover; }
.product-card__discount { position: absolute; top: 12px; left: 12px; background: #ff3b30; color: #fff; font-size: 12px; font-weight: 800; padding: 4px 10px; border-radius: 8px; }
.product-card__tag { position: absolute; top: 12px; right: 12px; background: rgba(0,0,0,0.7); color: #fff; font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 6px; }
.product-card__body { padding: 20px; }
.product-card__title { font-size: 14px; font-weight: 700; margin-bottom: 4px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card__desc { font-size: 12px; color: #aaa; margin-bottom: 16px; }
.product-card__prices { display: flex; align-items: baseline; gap: 8px; margin-bottom: 16px; }
.product-card__price { font-size: 22px; font-weight: 800; }
.product-card__price-unit { font-size: 13px; font-weight: 400; color: #aaa; }
.product-card__old-price { font-size: 14px; color: #ccc; text-decoration: line-through; }
.product-card__btn { display: block; width: 100%; padding: 12px; background: #ff6b00; color: #fff; border: none; border-radius: 10px; font-size: 14px; font-weight: 700; cursor: pointer; text-align: center; transition: all 0.2s; font-family: inherit; }
.product-card__btn:hover { background: #e55f00; }

/* ===== PROMO BANNER ===== */
.promo-banner { padding: 48px 0; background: linear-gradient(135deg, #ff6b00, #ff8533); text-align: center; color: #fff; }
.promo-banner__title { font-size: 28px; font-weight: 900; margin-bottom: 12px; }
.promo-banner__desc { font-size: 16px; color: rgba(255,255,255,0.85); margin-bottom: 28px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ===== WHY US ===== */
.why-us { padding: 80px 0; background: #111827; color: #fff; }
.why-us .section-title { color: #fff; }
.why-us .section-subtitle { color: rgba(255,255,255,0.5); }
.why-us__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-us__card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 32px; transition: all 0.3s; }
.why-us__card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.why-us__icon { width: 56px; height: 56px; background: rgba(255,107,0,0.15); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 20px; }
.why-us__card-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.why-us__card-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ===== FAQ ===== */
.faq { padding: 80px 0; background: #fafafa; }
.faq__list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: #fff; border-radius: 16px; border: 1px solid #f0f0f0; overflow: hidden; }
.faq__question { padding: 20px 24px; font-size: 16px; font-weight: 700; color: #1a1a1a; cursor: pointer; display: flex; justify-content: space-between; align-items: center; width: 100%; border: none; background: transparent; text-align: left; font-family: inherit; transition: background 0.2s; }
.faq__question:hover { background: #fafafa; }
.faq__chevron { font-size: 20px; color: #aaa; transition: transform 0.3s; flex-shrink: 0; }
.faq__item.open .faq__chevron { transform: rotate(180deg); }
.faq__answer { padding: 0 24px 20px; font-size: 15px; color: #6b7280; line-height: 1.7; display: none; }
.faq__item.open .faq__answer { display: block; }

/* ===== CTA STRIP ===== */
.cta-strip { padding: 60px 0; background: linear-gradient(135deg, #ff6b00, #ff8533); text-align: center; }
.cta-strip__title { font-size: 32px; font-weight: 900; color: #fff; margin-bottom: 12px; }
.cta-strip__desc { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 32px; }
.cta-strip .btn-white:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.cta-strip__buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== REVIEWS ===== */
.reviews { padding: 80px 0; background: #fafafa; }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { background: #fff; border-radius: 20px; padding: 32px; border: 1px solid #f0f0f0; }
.review-card__stars { color: #f59e0b; font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.review-card__text { font-size: 15px; color: #374151; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-card__author { display: flex; align-items: center; gap: 12px; }
.review-card__avatar { width: 44px; height: 44px; background: #ff6b00; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 16px; }
.review-card__name { font-size: 14px; font-weight: 700; }
.review-card__source { font-size: 12px; color: #9ca3af; }
.reviews__more { text-align: center; margin-top: 36px; }

/* ===== PROMOS ===== */
.promos { padding: 80px 0; background: #fff; }
.promos__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.promo-card { border-radius: 20px; padding: 36px; position: relative; overflow: hidden; color: #fff; min-height: 220px; display: flex; flex-direction: column; justify-content: flex-end; }
.promo-card--orange { background: linear-gradient(135deg, #ff6b00, #ff8533); }
.promo-card--dark { background: linear-gradient(135deg, #1e293b, #334155); }
.promo-card--green { background: linear-gradient(135deg, #059669, #10b981); }
.promo-card__badge { font-size: 40px; font-weight: 900; opacity: 0.2; position: absolute; top: 20px; right: 24px; }
.promo-card__title { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.promo-card__desc { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.5; }

/* ===== STEPS ===== */
.steps { padding: 80px 0; background: #fafafa; }
.steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step-card { text-align: center; }
.step-card__number { width: 72px; height: 72px; background: #ff6b00; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 900; color: #fff; margin: 0 auto 20px; }
.step-card__title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step-card__desc { font-size: 14px; color: #6b7280; line-height: 1.6; max-width: 300px; margin: 0 auto; }

/* ===== CONTACTS ===== */
.contacts { padding: 80px 0; background: #fff; }
.contacts__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contacts__title { font-size: 32px; font-weight: 900; margin-bottom: 8px; letter-spacing: -0.5px; }
.contacts__subtitle { font-size: 16px; color: #6b7280; margin-bottom: 36px; }
.contacts__list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.contacts__item { display: flex; align-items: flex-start; gap: 16px; }
.contacts__item-icon { width: 48px; height: 48px; background: #fff5eb; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.contacts__item-label { font-size: 12px; color: #9ca3af; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.contacts__item-value { font-size: 16px; font-weight: 600; color: #1a1a1a; margin-top: 2px; }
.contacts__item-value a { color: #ff6b00; }
.contacts__buttons { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.contacts__map { border-radius: 24px; overflow: hidden; height: 420px; background: #f0f0f0; border: 1px solid #e5e7eb; }
.contacts__map iframe { width: 100%; height: 100%; border: 0; }

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: #fff; border-radius: 20px; border: 1px solid #f0f0f0; overflow: hidden; transition: all 0.3s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.blog-card__img { height: 200px; background: linear-gradient(135deg, #f5f5f5, #eee); display: flex; align-items: center; justify-content: center; }
.blog-card__tag { display: inline-block; padding: 4px 12px; background: #fff5eb; color: #ff6b00; font-size: 11px; font-weight: 700; border-radius: 6px; text-transform: uppercase; }
.blog-card__body { padding: 24px; }
.blog-card__title { font-size: 17px; font-weight: 700; margin-bottom: 8px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card__excerpt { font-size: 14px; color: #6b7280; line-height: 1.6; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card__link { font-size: 14px; font-weight: 700; color: #ff6b00; display: inline-flex; align-items: center; gap: 6px; }
.blog-section { margin-bottom: 56px; }
.blog-section__title { font-size: 24px; font-weight: 800; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 2px solid #f0f0f0; }

/* ===== PRODUCT PAGE ===== */
.product-page { padding: 60px 0; }
.product-page__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.product-page__gallery { border-radius: 20px; overflow: hidden; background: #f8f8f8; }
.product-page__gallery img { width: 100%; height: 400px; object-fit: cover; }
.product-page__info {}
.product-page__title { font-size: 28px; font-weight: 900; margin-bottom: 8px; line-height: 1.2; }
.product-page__sku { font-size: 13px; color: #9ca3af; margin-bottom: 20px; }
.product-page__prices { display: flex; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.product-page__price { font-size: 36px; font-weight: 900; color: #ff6b00; }
.product-page__old { font-size: 20px; color: #ccc; text-decoration: line-through; }
.product-page__discount-badge { display: inline-block; background: #ff3b30; color: #fff; font-size: 14px; font-weight: 800; padding: 4px 12px; border-radius: 8px; margin-bottom: 20px; }
.product-page__meta { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; padding: 20px; background: #f9fafb; border-radius: 14px; }
.product-page__meta-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #374151; }
.product-page__meta-icon { font-size: 18px; }
.product-page__buttons { display: flex; gap: 12px; margin-bottom: 32px; }
.product-page__specs { margin-top: 40px; }
.product-page__specs table { width: 100%; border-collapse: collapse; }
.product-page__specs td { padding: 12px 16px; border-bottom: 1px solid #f0f0f0; font-size: 14px; }
.product-page__specs td:first-child { color: #6b7280; width: 40%; }
.product-page__specs td:last-child { font-weight: 600; }

/* ===== FOOTER ===== */
.footer { background: #111827; color: #fff; padding: 60px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer__brand-name { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.footer__brand-name span { color: #ff6b00; }
.footer__brand-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 20px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; transition: background 0.2s; color: rgba(255,255,255,0.6); }
.footer__social a:hover { background: #ff6b00; color: #fff; }
.footer__col-title { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; color: rgba(255,255,255,0.5); }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer__links a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer__links a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer__copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer__made { font-size: 12px; color: rgba(255,255,255,0.2); }

/* ===== FLOATING WHATSAPP ===== */
/* Legacy floating WA (kept for pages not yet updated) */
.floating-wa { position: fixed; bottom: 28px; right: 28px; z-index: 99; width: 60px; height: 60px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: all 0.3s; animation: float 3s ease-in-out infinite; }
.floating-wa:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.floating-wa svg { width: 30px; height: 30px; fill: #fff; }

/* Chat Widget (multi-button) */
.chat-widget { position: fixed; bottom: 28px; right: 28px; z-index: 99; }
.chat-widget__btn { width: 60px; height: 60px; background: #ff6b00; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(255,107,0,0.4); cursor: pointer; transition: all 0.3s; animation: float 3s ease-in-out infinite; border: none; }
.chat-widget__btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(255,107,0,0.5); }
.chat-widget__btn svg { width: 28px; height: 28px; fill: #fff; }
.chat-widget__menu { position: absolute; bottom: 72px; right: 0; display: flex; flex-direction: column; gap: 12px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s; }
.chat-widget.open .chat-widget__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.chat-widget.open .chat-widget__btn { background: #333; animation: none; }
.chat-widget__link { display: flex; align-items: center; gap: 12px; padding: 12px 20px; border-radius: 16px; font-size: 14px; font-weight: 700; color: #fff; white-space: nowrap; box-shadow: 0 4px 16px rgba(0,0,0,0.15); transition: transform 0.2s; text-decoration: none; }
.chat-widget__link:hover { transform: translateX(-4px); }
.chat-widget__link svg { width: 22px; height: 22px; fill: #fff; flex-shrink: 0; }
.chat-widget__link--phone { background: #ff6b00; }
.chat-widget__link--wa { background: #25d366; }
.chat-widget__link--tg { background: #2AABEE; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* ===== USP BAR ===== */
.usp-bar { background: #fff; border-bottom: 1px solid #f0f0f0; padding: 24px 0; }
.usp-bar__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.usp-bar__item { display: flex; align-items: center; gap: 14px; }
.usp-bar__icon { width: 48px; height: 48px; background: #fff5eb; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.usp-bar__text { font-size: 13px; font-weight: 600; color: #333; line-height: 1.4; }
.usp-bar__sub { font-size: 12px; color: #888; font-weight: 400; }

/* ===== MOBILE ===== */
.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
.mobile-toggle span { width: 24px; height: 2px; background: #1a1a1a; border-radius: 2px; }

/* ===== DELIVERY INFO GRID ===== */
.delivery-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.delivery-card { background: #fff; border-radius: 20px; padding: 32px; border: 1px solid #f0f0f0; }
.delivery-card__icon { font-size: 28px; margin-bottom: 12px; }
.delivery-card__title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.delivery-card__desc { font-size: 14px; color: #6b7280; line-height: 1.7; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .categories__grid { grid-template-columns: repeat(3, 1fr); }
    .products__grid { grid-template-columns: repeat(3, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .cat-hero__title { font-size: 34px; }
}
@media (max-width: 768px) {
    .header__nav, .header__phone { display: none; }
    .mobile-toggle { display: flex; }
    .header__inner { height: 64px; }
    .breadcrumbs { margin-top: 64px; }
    .section-title { font-size: 26px; }
    .categories, .products, .why-us, .reviews, .promos, .steps, .contacts, .faq, .blog-section { padding: 48px 0; }
    .categories__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .category-card__img { height: 140px; }
    .category-card__body { padding: 16px; }
    .category-card__desc { display: none; }
    .products__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .product-card__img { height: 160px; }
    .product-card__body { padding: 14px; }
    .product-card__price { font-size: 18px; }
    .why-us__grid { grid-template-columns: 1fr; gap: 12px; }
    .why-us__card { padding: 24px; }
    .reviews__grid { grid-template-columns: 1fr; }
    .promos__grid { grid-template-columns: 1fr; }
    .steps__grid { grid-template-columns: 1fr; gap: 24px; }
    .contacts__grid { grid-template-columns: 1fr; gap: 32px; }
    .contacts__map { height: 280px; }
    .footer__grid { grid-template-columns: 1fr; gap: 28px; }
    .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
    .usp-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .cat-hero__grid { grid-template-columns: 1fr; }
    .cat-hero__title { font-size: 30px; }
    .cat-hero__features { gap: 8px; }
    .cat-hero__feat { font-size: 12px; padding: 6px 12px; }
    .cat-hero__buttons { flex-direction: column; }
    .cat-hero__buttons .btn { justify-content: center; }
    .blog-grid { grid-template-columns: 1fr; }
    .product-page__grid { grid-template-columns: 1fr; }
    .product-page__gallery img { height: 280px; }
    .product-page__price { font-size: 28px; }
    .delivery-info { grid-template-columns: 1fr; gap: 12px; }
    .delivery-card { padding: 24px; }
}

/* Mobile menu active */
.header__nav.active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    gap: 16px;
    z-index: 99;
}
