/* =========================================================
   PIE FASHION — Modern Sober Design System
   Aesthetic: Swiss Editorial Minimalism
   Palette: Near-black, warm white, graphite, amber & blue accents
   Fonts: Syne (display) + Figtree (body)
   ========================================================= */

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

/* ── TOKENS ── */
:root {
  --ink:        #111110;
  --ink-soft:   #3a3936;
  --ink-muted:  #6b6963;
  --ink-faint:  #a09c96;
  --surface:    #F8F7F4;
  --surface-2:  #F0EDE8;
  --surface-3:  #E8E4DD;
  --line:       rgba(17,17,16,.1);
  --line-strong:rgba(17,17,16,.18);
  --white:      #FFFFFF;

  --amber:      #E8910A;
  --amber-bg:   rgba(232,145,10,.1);
  --blue:       #2563EB;
  --blue-bg:    rgba(37,99,235,.1);
  --wa-green:   #25D366;

  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  16px;
  --ease:  cubic-bezier(.4,0,.2,1);
  --t:     .28s;

  --font-display: 'Syne', sans-serif;
  --font-body:    'Figtree', sans-serif;
}

html { scroll-behavior: smooth; font-size: 15px; }

body {
  font-family: var(--font-body);
  background: var(--surface);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }

/* Noise texture */
.noise {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── LAYOUT ── */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.section { padding: 104px 0; }

/* ── TYPE ── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 14px;
}
.eyebrow--light { color: rgba(255,255,255,.5); }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
}
.section-heading.light { color: var(--white); }

.body-text { color: var(--ink-soft); line-height: 1.8; font-size: 15px; }
.body-text.light { color: rgba(255,255,255,.65); }

.section-head {
  display: flex;
  flex-direction: column;
  margin-bottom: 56px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .2px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--t) var(--ease);
  white-space: nowrap;
}
.btn--fill  { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn--fill:hover { background: var(--ink-soft); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(17,17,16,.2); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--white); }

.btn--light { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn--light:hover { background: var(--surface-2); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }

.btn--light-ghost { background: transparent; color: rgba(255,255,255,.75); border-color: rgba(255,255,255,.3); }
.btn--light-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); color: var(--white); }

.btn--wa { background: var(--wa-green); color: var(--white); border-color: var(--wa-green); }
.btn--wa:hover { background: #1dba59; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(37,211,102,.4); }

.btn--amber { border-color: var(--amber); color: var(--amber); }
.btn--amber:hover { background: var(--amber); color: var(--white); }

.btn--blue { border-color: var(--blue); color: var(--blue); }
.btn--blue:hover { background: var(--blue); color: var(--white); }

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

/* ── HEADER ── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--t) var(--ease);
}
.header.scrolled { box-shadow: 0 1px 0 var(--line), 0 4px 24px rgba(17,17,16,.05); }

.header-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; gap: 40px;
  height: 68px;
}

.logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--ink);
  display: flex; align-items: center; gap: 9px;
  flex-shrink: 0;
}
.logo em { font-style: normal; color: var(--ink-muted); font-weight: 600; }
.logo--light { color: rgba(255,255,255,.9); }
.logo--light em { color: rgba(255,255,255,.5); }
.logo img {
  height: 50px;
}
.nav { display: flex; align-items: center; gap: 2px; flex: 1; }
.nav-link {
  font-size: 13px;
  color: var(--ink-muted);
  padding: 6px 14px;
  border-radius: var(--r-sm);
  transition: all var(--t) var(--ease);
  font-weight: 400;
}
.nav-link:hover, .nav-link.active {
  color: var(--ink);
  background: var(--surface-2);
}

.header-right { display: flex; align-items: center; gap: 8px; margin-left: auto; }

.header-store-btn {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500;
  color: var(--ink-soft);
  padding: 6px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  transition: all var(--t) var(--ease);
}
.header-store-btn:hover { border-color: var(--ink); color: var(--ink); background: var(--surface-2); }

.dot {
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
}
.dot--amber { background: var(--amber); }
.dot--blue  { background: var(--blue); }

.hamburger {
  display: none;
  flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer;
  padding: 8px; border-radius: var(--r-sm);
}
.hamburger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--ink);
  transition: all var(--t) var(--ease);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed; top: 68px; inset-inline: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  z-index: 999;
  padding: 28px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: all var(--t) var(--ease);
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-menu-inner nav { display: flex; flex-direction: column; gap: 0; }
.mobile-link {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.02em;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: color var(--t);
}
.mobile-link:hover { color: var(--ink-muted); }
.mobile-stores { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }

/* ── HERO ── */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}

.hero-slider { position: absolute; inset: 0; }
.slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s ease;
}
.slide.active { opacity: 1; }

/* Gradient overlay — bottom heavy for legibility */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17,17,16,.15) 0%,
    rgba(17,17,16,.05) 40%,
    rgba(17,17,16,.7) 100%
  );
  pointer-events: none;
}

.hero-ui {
  position: relative; z-index: 2;
  width: 100%; padding: 0 28px 56px;
  max-width: 1240px; margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-meta {
  display: flex; gap: 16px; margin-bottom: 28px;
}
.label {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,.6);
  font-family: var(--font-body);
  border: 1px solid rgba(255,255,255,.2);
  padding: 4px 12px; border-radius: 100px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 8vw, 7.5rem);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 40px;
  display: flex; flex-direction: column; gap: 0;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .italic { font-style: italic; font-weight: 600; opacity: .75; }

.hero-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}

.hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; }

.slide-counter {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; color: rgba(255,255,255,.5);
  font-family: var(--font-body); font-weight: 500;
  letter-spacing: 1px;
}
.slide-progress {
  width: 80px; height: 1px;
  background: rgba(255,255,255,.2);
  border-radius: 1px; overflow: hidden;
}
.slide-bar {
  height: 100%; background: var(--white);
  width: 0; transition: width 5s linear;
}

.hero-scroll {
  position: absolute; right: 40px; bottom: 56px; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,.45);
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  font-family: var(--font-body);
  animation: scrollFloat 3s ease-in-out infinite;
}
@keyframes scrollFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* ── CATEGORY STRIP ── */
.cat-strip {
  background: var(--surface-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 28px;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-strip::-webkit-scrollbar { display: none; }
.cat-strip-inner {
  display: flex; gap: 12px;
  max-width: 1240px; margin: 0 auto;
}

.cat-pill {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 18px 8px 8px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  background: var(--white);
  font-size: 13px; font-weight: 500;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: all var(--t) var(--ease);
  flex-shrink: 0;
}
.cat-pill img {
  width: 32px; height: 32px; border-radius: 50%; object-fit: cover;
}
.cat-pill:hover { border-color: var(--ink); color: var(--ink); background: var(--surface-3); }

/* ── ABOUT ── */
.about { background: var(--surface); }

.about-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: center;
}

.about-img-stack {
  position: relative;
}
.img-main {
  width: 100%; height: 540px;
  object-fit: cover;
  border-radius: var(--r-lg);
}
.img-accent {
  position: absolute;
  width: 42%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--r-md);
  bottom: -24px;
  right: -24px;
  border: 4px solid var(--surface);
  box-shadow: 0 12px 40px rgba(17,17,16,.12);
}
.about-year {
  position: absolute;
  top: 24px; left: -16px;
  width: 72px; height: 72px;
  background: var(--ink);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-size: 11px; line-height: 1.3;
  letter-spacing: .5px;
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(17,17,16,.2);
}

.about-right { display: flex; flex-direction: column; }

.pillars { display: flex; flex-direction: column; gap: 20px; margin: 32px 0; }
.pillar {
  display: flex; gap: 20px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--white);
  transition: all var(--t) var(--ease);
}
.pillar:hover { border-color: var(--line-strong); box-shadow: 0 4px 16px rgba(17,17,16,.06); }
.pillar-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-faint);
  flex-shrink: 0;
  padding-top: 2px;
}
.pillar strong { display: block; font-size: 14px; margin-bottom: 4px; color: var(--ink); }
.pillar p { font-size: 13px; color: var(--ink-muted); line-height: 1.6; }

.avail-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  font-size: 12px;
  color: var(--ink-soft);
  padding: 6px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  background: var(--surface-2);
  font-weight: 500;
  letter-spacing: .2px;
}

/* STATS BAR */
.stats-bar {
  margin-top: 80px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
}
.stats-inner {
  display: flex; align-items: center;
  padding: 48px 28px;
  gap: 0;
}
.stat {
  flex: 1; text-align: center;
  display: flex; flex-direction: column; gap: 6px;
}
.stat-n {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
}
.stat-sym { font-size: 2rem; font-weight: 700; color: var(--amber); }
.stat p { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-muted); }
.stat-divider { width: 1px; height: 48px; background: var(--line-strong); flex-shrink: 0; margin: 0 16px; }

/* ── CATALOG ── */
.catalog { background: var(--white); }

.filter-row { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 48px; }
.f-btn {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid var(--line-strong);
  background: transparent;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 500;
  color: var(--ink-muted);
  cursor: pointer;
  transition: all var(--t) var(--ease);
}
.f-btn:hover { color: var(--ink); border-color: var(--ink); }
.f-btn.active { background: var(--ink); color: var(--white); border-color: var(--ink); }

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

.p-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  display: flex; flex-direction: column;
  transition: all var(--t) var(--ease);
}
.p-card:hover { border-color: var(--line-strong); box-shadow: 0 8px 32px rgba(17,17,16,.1); transform: translateY(-3px); }
.p-card.hidden { display: none; }

.p-img {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4;
}
.p-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.p-card:hover .p-img img { transform: scale(1.05); }

.p-cat {
  position: absolute; top: 12px; left: 12px;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  background: rgba(17,17,16,.65);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 4px 10px; border-radius: 100px;
  font-weight: 500;
}

.p-hover-actions {
  position: absolute; inset: 0;
  background: rgba(17,17,16,.5);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity var(--t) var(--ease);
}
.p-card:hover .p-hover-actions { opacity: 1; }

.p-hbtn {
  padding: 9px 18px; border-radius: var(--r-sm);
  font-size: 12px; font-weight: 600;
  cursor: pointer; transition: all var(--t) var(--ease);
  border: 1.5px solid transparent;
}
.p-hbtn.amber { background: var(--amber); color: var(--white); border-color: var(--amber); }
.p-hbtn.amber:hover { background: #d17f09; }
.p-hbtn.blue  { background: var(--blue); color: var(--white); border-color: var(--blue); }
.p-hbtn.blue:hover { background: #1d4ed8; }

.p-info {
  padding: 18px;
  display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.p-info h3 {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  letter-spacing: -.01em;
  color: var(--ink);
}
.p-info p {
  font-size: 12.5px; color: var(--ink-muted);
  line-height: 1.5; flex: 1;
}

.p-btns { display: flex; gap: 6px; margin-top: auto; }
.p-btn {
  flex: 1; text-align: center;
  padding: 8px 6px;
  font-size: 11.5px; font-weight: 600;
  border-radius: var(--r-sm);
  transition: all var(--t) var(--ease);
  border: 1.5px solid;
}
.p-btn.amber {
  background: var(--amber-bg); color: var(--amber);
  border-color: rgba(232,145,10,.3);
}
.p-btn.amber:hover { background: var(--amber); color: var(--white); }
.p-btn.blue {
  background: var(--blue-bg); color: var(--blue);
  border-color: rgba(37,99,235,.25);
}
.p-btn.blue:hover { background: var(--blue); color: var(--white); }

/* ── WHOLESALE ── */
.wholesale {
  background: var(--ink);
  padding: 100px 0;
}
.wholesale-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: center;
}
.w-img-col { position: relative; }
.w-img-col img {
  width: 100%; height: 560px;
  object-fit: cover;
  border-radius: var(--r-lg);
  filter: brightness(.75) saturate(.8);
}
.w-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--r-md);
  text-align: center;
}
.w-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800;
  color: var(--amber);
  letter-spacing: -0.04em;
  line-height: 1;
}
.w-badge span {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink-muted);
}

.w-content { display: flex; flex-direction: column; }

.w-features {
  display: flex; flex-direction: column; gap: 0;
  margin: 32px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.w-feat {
  display: flex; gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.w-feat-num {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,.25);
  flex-shrink: 0; padding-top: 2px;
  letter-spacing: .5px;
}
.w-feat strong { display: block; font-size: 14px; color: var(--white); margin-bottom: 4px; }
.w-feat p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.5; }

.w-ctas { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── SOCIAL ── */
.social-sec { background: var(--surface-2); }

.social-cards {
  display: flex; gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.s-card {
  flex: 1; min-width: 200px;
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-strong);
  background: var(--white);
  transition: all var(--t) var(--ease);
  cursor: pointer;
}
.s-card svg { width: 28px; height: 28px; flex-shrink: 0; }
.s-card-info { flex: 1; }
.s-card-info strong { display: block; font-size: 14px; color: var(--ink); margin-bottom: 2px; }
.s-card-info span { font-size: 12px; color: var(--ink-muted); }
.s-arrow { font-size: 18px; color: var(--ink-faint); transition: transform var(--t); }
.s-card:hover .s-arrow { transform: translate(2px, -2px); }
.s-card:hover { box-shadow: 0 4px 20px rgba(17,17,16,.08); transform: translateY(-2px); }

.s-card--wa  svg { color: var(--wa-green); }
.s-card--wa:hover  { border-color: var(--wa-green); }
.s-card--ig  svg { color: #E1306C; }
.s-card--ig:hover  { border-color: #E1306C; }
.s-card--fb  svg { color: #1877F2; }
.s-card--fb:hover  { border-color: #1877F2; }

/* Instagram mosaic */
.insta-mosaic {
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.mosaic-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
}
.mosaic-profile { display: flex; align-items: center; gap: 12px; }
.mosaic-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: var(--white); font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.mosaic-profile strong { display: block; font-size: 13px; color: var(--ink); }
.mosaic-profile span { font-size: 11.5px; color: var(--ink-muted); }

.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 160px);
  gap: 2px;
}
.mosaic-item { position: relative; overflow: hidden; cursor: pointer; }
.mosaic-item.tall { grid-row: span 2; }
.mosaic-item.wide { grid-column: span 2; }
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.mosaic-item:hover img { transform: scale(1.06); }
.mosaic-over {
  position: absolute; inset: 0;
  background: rgba(17,17,16,.45);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--white);
  opacity: 0; transition: opacity var(--t);
}
.mosaic-item:hover .mosaic-over { opacity: 1; }

/* ── CONTACT ── */
.contact-sec { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.c-info { display: flex; flex-direction: column; gap: 0; margin-top: 32px; }
.c-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: color var(--t);
}
.c-row:hover { color: var(--ink); }
.c-icon {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--ink-soft);
}
.c-row strong { display: block; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 2px; }
.c-row span, .c-row a { font-size: 14px; color: var(--ink); }

/* Form */
.c-form { display: flex; flex-direction: column; gap: 16px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.f-group { display: flex; flex-direction: column; gap: 6px; }
.f-group label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-muted); font-weight: 500; }
.f-group input, .f-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-md);
  background: var(--surface);
  font-family: var(--font-body);
  font-size: 14px; color: var(--ink);
  outline: none;
  transition: border-color var(--t) var(--ease);
  resize: vertical;
}
.f-group input::placeholder, .f-group textarea::placeholder { color: var(--ink-faint); }
.f-group input:focus, .f-group textarea:focus {
  border-color: var(--ink);
  background: var(--white);
}
.f-success {
  display: none; padding: 12px 16px;
  background: rgba(37,211,102,.08);
  border: 1px solid rgba(37,211,102,.3);
  border-radius: var(--r-md);
  color: #166534; font-size: 13px; text-align: center;
}
.f-success.show { display: block; }

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

/* ── FOOTER ── */
.footer {
  background: var(--ink);
  padding: 72px 0 0;
}
.footer-inner { }

.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand p {
  font-size: 13px; color: rgba(255,255,255,.45);
  margin-top: 16px; max-width: 260px; line-height: 1.7;
}
.footer-socials {
  display: flex; gap: 8px; margin-top: 20px;
}
.footer-socials a {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all var(--t);
}
.footer-socials a:hover { background: rgba(255,255,255,.14); color: var(--white); }
.footer-socials svg { width: 15px; height: 15px; }

.footer-col { display: flex; flex-direction: column; gap: 0; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 16px; font-weight: 600;
}
.footer-col a {
  font-size: 13px; color: rgba(255,255,255,.5);
  padding: 5px 0;
  transition: color var(--t);
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
  font-size: 12px; color: rgba(255,255,255,.25);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,.25); transition: color var(--t); }
.footer-legal a:hover { color: rgba(255,255,255,.55); }

/* ── WA FAB ── */
.wa-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 998;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--wa-green);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: all var(--t) var(--ease);
}
.wa-fab:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.55); }
.wa-fab svg { width: 26px; height: 26px; }

/* ── SCROLL REVEAL ── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
  transition-delay: var(--delay, 0s);
}
.fade-up.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid, .wholesale-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .img-accent { display: none; }
  .img-main { height: 380px; }
  .w-img-col img { height: 340px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .mosaic-grid { grid-template-rows: repeat(2, 140px); }
}

@media (max-width: 860px) {
  .nav, .header-store-btn { display: none; }
  .hamburger { display: flex; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { flex-wrap: wrap; gap: 24px; }
  .stat-divider { display: none; }
  .stat { min-width: calc(50% - 12px); }
  .mosaic-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 120px); }
  .mosaic-item.wide { grid-column: span 2; }
  .hero-title { font-size: clamp(3rem, 10vw, 5rem); }
  .hero-scroll { display: none; }
}

@media (max-width: 600px) {
  .section { padding: 72px 0; }
  .wrap { padding: 0 18px; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .p-info { padding: 14px; }
  .p-btns { flex-direction: column; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .f-row { grid-template-columns: 1fr; }
  .social-cards { flex-direction: column; }
  .s-card { min-width: unset; }
  .cat-strip { padding: 16px 18px; }
  .mosaic-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 120px); }
  .mosaic-item.tall { grid-row: span 2; }
  .mosaic-item.wide { grid-column: span 1; }
}
