/* ═══════════════════════════════════════════════════════
   SAWON FURNITURE — Premium Design System
   Palette: Warm Ivory · Deep Espresso · Brass Gold
   Fonts: Playfair Display (headings) · DM Sans (body)
═══════════════════════════════════════════════════════ */

/* ── CSS Variables ─────────────────────────────────── */
:root {
  --ivory:        #f9f6f1;
  --ivory-dark:   #f0ebe2;
  --espresso:     #1c1410;
  --espresso-mid: #2e2218;
  --espresso-soft:#4a3728;
  --brass:        #c8a96e;
  --brass-light:  #dfc28e;
  --brass-dark:   #a88845;
  --wa-green:     #25d366;
  --wa-dark:      #128c7e;
  --text-main:    #2e2218;
  --text-muted:   #7a6a58;
  --text-light:   #a89880;
  --border:       #e8dfd0;
  --shadow-sm:    0 2px 12px rgba(28,20,16,.07);
  --shadow-md:    0 8px 32px rgba(28,20,16,.12);
  --shadow-lg:    0 20px 60px rgba(28,20,16,.18);
  --radius:       12px;
  --radius-sm:    8px;
  --radius-lg:    20px;
  --nav-h:        72px;
  --transition:   0.3s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ivory);
  color: var(--text-main);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Container ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Keyframes ─────────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.08); }
}

/* ══════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--espresso);
  color: var(--ivory);
}
.btn-primary:hover {
  background: var(--espresso-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.22);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--espresso);
  border: 2px solid var(--espresso);
}
.btn-outline:hover {
  background: var(--espresso);
  color: var(--ivory);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--wa-green);
  color: #fff;
}
.btn-whatsapp:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
}

.btn-white {
  background: #fff;
  color: var(--espresso);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--ivory);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(249,246,241,.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--espresso);
  color: var(--brass);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: background var(--transition);
}

.logo:hover .logo-mark { background: var(--brass); color: var(--espresso); }

.logo-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--espresso);
  line-height: 1.1;
}
.logo-text em {
  display: block;
  font-style: normal;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.logo--light .logo-mark { background: var(--brass); color: var(--espresso); }
.logo--light .logo-text  { color: var(--ivory); }
.logo--light .logo-text em { color: rgba(249,246,241,.6); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: all var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 2px;
  background: var(--brass);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--espresso);
}
.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
}

.nav-cta { margin-left: 12px; padding: 10px 20px; font-size: 0.85rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  padding: 6px; border-radius: 8px;
  transition: background var(--transition);
  margin-left: auto;
}
.hamburger:hover { background: var(--ivory-dark); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--espresso);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(249,246,241,.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px 28px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
  animation: slideDown 0.25s ease;
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 1rem;
}
.mobile-nav .btn { margin-top: 12px; }

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Fallback gradient when image is missing */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2e2218 0%, #4a3728 45%, #6b5040 100%);
  z-index: 0;
}

.hero-img { position: relative; z-index: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(28,20,16,.82) 0%,
    rgba(28,20,16,.55) 55%,
    rgba(28,20,16,.2) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-top: var(--nav-h);
  max-width: 660px;
  animation: fadeIn 0.9s ease both;
}

.hero-tag {
  display: inline-block;
  background: rgba(200,169,110,.2);
  border: 1px solid rgba(200,169,110,.4);
  color: var(--brass-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeIn 0.9s 0.1s ease both;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeIn 0.9s 0.2s ease both;
}
.hero-title em {
  font-style: italic;
  color: var(--brass-light);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.78);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.7;
  font-weight: 300;
  animation: fadeIn 0.9s 0.3s ease both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeIn 0.9s 0.4s ease both;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px; right: 48px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.5);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeIn 1s 0.8s ease both;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: pulse 2s infinite;
}

/* ══════════════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--espresso);
  padding: 28px 0;
  border-bottom: 1px solid rgba(200,169,110,.2);
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
}

.trust-item svg { color: var(--brass); flex-shrink: 0; }

.trust-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-item strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ivory);
  line-height: 1.2;
}
.trust-item span {
  font-size: 0.78rem;
  color: rgba(249,246,241,.5);
}

/* ══════════════════════════════════════════════════════
   SECTIONS SHARED
══════════════════════════════════════════════════════ */
.section {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-dark);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--espresso);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title em {
  font-style: italic;
  color: var(--brass-dark);
}

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
}

.section-cta {
  text-align: center;
  margin-top: 56px;
}

/* ══════════════════════════════════════════════════════
   PRODUCT GRID & CARDS
══════════════════════════════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

/* Elegant placeholder when image is missing */
.product-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #e8dfd0 0%, #d4c5b0 100%);
}
.product-img-wrap::after {
  content: '🪑';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  opacity: 0.3;
}

.product-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}
.product-card:hover .product-img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: var(--espresso);
  color: var(--brass-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}
.product-badge--new { background: var(--brass); color: var(--espresso); }
.product-badge--sofa { background: #2c5f8a; color: #fff; }

.product-info {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.product-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass-dark);
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--espresso);
  line-height: 1.25;
}

.product-specs {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 4px 0;
}
.product-specs li {
  font-size: 0.83rem;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
}
.product-specs li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--brass);
  font-weight: 700;
}

.product-info .btn-whatsapp {
  margin-top: auto;
  padding: 11px 20px;
  font-size: 0.85rem;
}

/* ══════════════════════════════════════════════════════
   ABOUT STRIP
══════════════════════════════════════════════════════ */
.about-strip {
  padding: 96px 0;
  background: var(--ivory-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-img-col {
  position: relative;
}

.about-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/4;
  box-shadow: var(--shadow-lg);
  background: var(--ivory);
}

/* Fallback for missing about image */
.about-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #d4c5b0 0%, #b8a898 100%);
  z-index: 0;
}

.about-img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  transition: transform 0.5s ease;
}
.about-img:hover { transform: scale(1.03); }

.about-accent-block {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--espresso);
  color: var(--ivory);
  padding: 22px 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 1;
}
.about-accent-block strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--brass-light);
  line-height: 1;
}
.about-accent-block span {
  font-size: 0.78rem;
  color: rgba(249,246,241,.65);
  letter-spacing: 0.04em;
}

.about-text-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-text-col p {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 1rem;
}
.about-text-col .section-title { margin-bottom: 0; }
.about-text-col .btn { align-self: flex-start; margin-top: 8px; }

/* ══════════════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--espresso) 0%, var(--espresso-soft) 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(200,169,110,.08);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(200,169,110,.06);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--ivory);
  font-weight: 700;
}

.cta-inner p {
  color: rgba(249,246,241,.7);
  font-size: 1.05rem;
  max-width: 420px;
  line-height: 1.6;
}

.cta-inner .btn { margin-top: 8px; }

/* ══════════════════════════════════════════════════════
   PAGE HERO (Products page)
══════════════════════════════════════════════════════ */
.page-hero {
  padding: calc(var(--nav-h) + 56px) 0 56px;
  background: var(--espresso);
  text-align: center;
}
.page-hero .section-tag { color: var(--brass-light); }
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--ivory);
  font-weight: 700;
  margin: 8px 0 16px;
  line-height: 1.15;
}
.page-hero-title em { font-style: italic; color: var(--brass-light); }
.page-hero p {
  color: rgba(249,246,241,.65);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
  font-weight: 300;
}

/* ══════════════════════════════════════════════════════
   FILTER BAR
══════════════════════════════════════════════════════ */
.filter-bar {
  padding: 28px 0;
  background: var(--ivory);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--nav-h);
  z-index: 50;
  backdrop-filter: blur(12px);
}

.filter-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--border);
  background: #fff;
  color: var(--text-muted);
  transition: all var(--transition);
}
.filter-btn:hover {
  border-color: var(--espresso);
  color: var(--espresso);
}
.filter-btn.active {
  background: var(--espresso);
  border-color: var(--espresso);
  color: var(--ivory);
}

/* Category header on products page */
.category-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}
.category-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--espresso);
  white-space: nowrap;
}
.category-title em { font-style: italic; color: var(--brass-dark); }
.category-line { flex: 1; height: 1px; background: var(--border); }

.gallery-section { padding: 64px 0 96px; }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.footer {
  background: var(--espresso-mid);
  padding-top: 72px;
}

.footer-layout {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(249,246,241,.1);
}

.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand .logo { margin-bottom: 4px; }
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(249,246,241,.5);
  line-height: 1.7;
  max-width: 280px;
}
.footer-brand .btn-whatsapp { align-self: flex-start; font-size: 0.85rem; padding: 10px 18px; }

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(249,246,241,.55);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--ivory); }

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(249,246,241,.55);
}
.footer-contact li svg { color: var(--brass); flex-shrink: 0; }
.footer-contact li a { font-size: 0.88rem; transition: color var(--transition); }
.footer-contact li a:hover { color: var(--ivory); }

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(249,246,241,.3);
}

/* ══════════════════════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  width: 58px; height: 58px;
  background: var(--wa-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: all var(--transition);
}
.wa-float:hover {
  background: var(--wa-dark);
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,.6);
}
.wa-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.35);
  animation: pulse 2.5s infinite;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .about-layout { grid-template-columns: 1fr; gap: 56px; }
  .about-img-col { max-width: 540px; }
  .footer-layout { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-content { max-width: 100%; }
  .hero-actions { flex-direction: column; }
  .hero-scroll-hint { display: none; }

  .trust-grid { grid-template-columns: 1fr 1fr; }

  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }

  .section { padding: 64px 0; }

  .about-layout { grid-template-columns: 1fr; }
  .about-accent-block { right: -12px; bottom: -16px; }

  .footer-layout { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 520px) {
  .product-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.4rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .filter-buttons { gap: 8px; }
  .filter-btn { padding: 8px 16px; font-size: 0.82rem; }
  .container { padding: 0 16px; }
}
