/* =========================================================
   YOHE INTERNATIONAL — Home page styles
   Theme: Red | Fonts: Oswald (display) + Poppins (body)
   ========================================================= */

:root {
  --red: #e11b22;
  --red-dark: #b3141a;
  --red-soft: #ff3b41;
  --ink: #14161a;
  --ink-2: #23262d;
  --muted: #6b7280;
  --paper: #ffffff;
  --paper-2: #f5f6f8;
  --line: #e6e8ec;
  --shadow: 0 18px 45px -18px rgba(20, 22, 26, .28);
  --radius: 16px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, .brand-text, .navbar-brand {
  font-family: "Oswald", "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: .5px;
  line-height: 1.1;
}

a { text-decoration: none; color: inherit; transition: color .25s var(--ease); }
img { max-width: 100%; display: block; }
section { position: relative; }

.txt-accent { color: var(--red); }
.txt-outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--red);
  text-stroke: 2px var(--red);
}

/* ---------- Buttons ---------- */
.btn {
  font-family: "Oswald", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 999px;
  padding: .7rem 1.6rem;
  font-weight: 500;
  border: 2px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.btn:active { transform: scale(.97); }

.btn-yohe {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: 0 12px 25px -10px rgba(225, 27, 34, .7);
}
.btn-yohe:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 18px 32px -12px rgba(225, 27, 34, .85); }

.btn-ghost {
  background: transparent;
  border-color: currentColor;
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: #fff; transform: translateY(-3px); }

.hero .btn-ghost, .cta-banner .btn-ghost { color: #fff; }
.hero .btn-ghost:hover, .cta-banner .btn-ghost:hover { background: #fff; color: var(--red); }

.btn-light:hover { transform: translateY(-3px); }

/* ---------- Preloader ---------- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  transition: opacity .6s var(--ease), visibility .6s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.loader-helmet {
  font-size: 60px;
  color: #fff;
  animation: bob 1s var(--ease) infinite alternate;
}
.loader-text {
  font-family: "Oswald", sans-serif;
  letter-spacing: 6px;
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #fff;
  animation: type 1.6s steps(19) infinite alternate;
}
@keyframes bob { to { transform: translateY(-14px) rotate(-8deg); } }
@keyframes type { from { width: 0; } to { width: 19ch; } }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, .8);
  font-size: 13px;
  padding: 8px 0;
}
.topbar a:hover { color: var(--red-soft); }
.topbar-left span { margin-right: 22px; }
.topbar-left i, .topbar-right i { color: var(--red-soft); margin-right: 6px; }
.topbar-right a {
  display: inline-grid;
  place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  margin-left: 6px;
}
.topbar-right a:hover { background: var(--red); color: #fff; }

/* ---------- Navbar ---------- */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  transition: padding .3s var(--ease), box-shadow .3s var(--ease);
}
.main-nav.scrolled { padding: 8px 0; box-shadow: var(--shadow); }
.navbar-brand { display: flex; align-items: center; gap: 12px; }
.navbar-brand img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; box-shadow: 0 6px 16px -6px rgba(225, 27, 34, .6); }
.brand-text { font-size: 22px; color: var(--ink); line-height: 1; }
.brand-text small { display: block; font-size: 10px; letter-spacing: 4px; color: var(--red); font-weight: 500; }

.main-nav .nav-link {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 15px;
  color: var(--ink-2);
  margin: 0 4px;
  position: relative;
}
.main-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 12px; right: 12px; bottom: 2px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.main-nav .nav-link:hover, .main-nav .nav-link.active { color: var(--red); }
.main-nav .nav-link:hover::after, .main-nav .nav-link.active::after { transform: scaleX(1); }

.navbar-toggler { border: 0; padding: 6px; }
.navbar-toggler:focus { box-shadow: none; }
.toggler-bar {
  display: block;
  width: 26px; height: 3px;
  background: var(--ink);
  border-radius: 3px;
  margin: 5px 0;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) { opacity: 0; }
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(1200px 600px at 15% 10%, #fff 0%, var(--paper-2) 55%, #eceef1 100%);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: .9;
}
.blob-1 {
  width: 620px; height: 620px;
  right: -180px; top: -160px;
  background: radial-gradient(circle at 30% 30%, var(--red-soft), var(--red-dark));
  animation: floaty 9s var(--ease) infinite alternate;
}
.blob-2 {
  width: 320px; height: 320px;
  left: -120px; bottom: -80px;
  background: radial-gradient(circle at 40% 40%, #ffd0d1, transparent 70%);
  animation: floaty 7s var(--ease) infinite alternate-reverse;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(60% 60% at 60% 40%, #000, transparent 80%);
  opacity: .5;
}
.speed-line {
  position: absolute;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: .0;
  animation: zoom 3.2s linear infinite;
}
.sl-1 { width: 220px; top: 30%; left: -220px; animation-delay: .0s; }
.sl-2 { width: 160px; top: 55%; left: -160px; animation-delay: 1s; }
.sl-3 { width: 280px; top: 75%; left: -280px; animation-delay: 2s; }
@keyframes zoom {
  0% { transform: translateX(0); opacity: 0; }
  10% { opacity: .8; }
  100% { transform: translateX(120vw); opacity: 0; }
}
@keyframes floaty { to { transform: translateY(40px) scale(1.06); } }

.hero-copy { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-2);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: var(--shadow);
  margin-bottom: 22px;
}
.hero-badge i { color: var(--red); }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-copy p { font-size: 1.08rem; color: var(--muted); max-width: 520px; margin-bottom: 28px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-stats { display: flex; gap: 34px; margin-top: 40px; flex-wrap: wrap; }
.hero-stats .stat { display: flex; flex-direction: column; }
.hero-stats .num {
  font-family: "Oswald", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.hero-stats small { color: var(--muted); text-transform: uppercase; letter-spacing: 1px; font-size: 11px; }

.hero-visual { position: relative; z-index: 2; min-height: 460px; display: grid; place-items: center; }
.hero-helmet {
  width: min(92%, 520px);
  border-radius: 24px;
  box-shadow: 0 40px 80px -30px rgba(20, 22, 26, .55);
  animation: hover-y 4s var(--ease) infinite alternate;
}
@keyframes hover-y { to { transform: translateY(-22px); } }
.hero-ring {
  position: absolute;
  width: 420px; height: 420px;
  border: 2px dashed rgba(225, 27, 34, .35);
  border-radius: 50%;
  animation: spin 22s linear infinite;
}
.hero-ring.ring-2 { width: 300px; height: 300px; border-style: solid; border-color: rgba(225, 27, 34, .12); animation-direction: reverse; animation-duration: 16s; }
@keyframes spin { to { transform: rotate(360deg); } }

.float-tag {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: hover-y 3.5s var(--ease) infinite alternate;
}
.float-tag i { color: var(--red); }
.tag-1 { top: 12%; right: 2%; }
.tag-2 { bottom: 14%; left: 0%; animation-delay: .6s; }

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: 26px; height: 44px;
  border: 2px solid var(--muted);
  border-radius: 14px;
  display: grid;
  place-items: start center;
  padding-top: 7px;
}
.scroll-hint span {
  width: 4px; height: 8px;
  background: var(--red);
  border-radius: 2px;
  animation: wheel 1.5s var(--ease) infinite;
}
@keyframes wheel { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--red);
  color: #fff;
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  animation: scroll-x 26s linear infinite;
}
.marquee-track span {
  font-family: "Oswald", sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 15px;
}
.marquee-track i { font-size: 9px; opacity: .8; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-alt { background: var(--paper-2); }
.section-head { max-width: 640px; margin: 0 auto 54px; }
.eyebrow {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  color: var(--red);
  margin-bottom: 10px;
}
.eyebrow::before { content: "// "; opacity: .6; }
.section-head h2, .cta-banner h2, #why h2, #sizechart h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}
.section-head p { color: var(--muted); }

/* ---------- Category cards ---------- */
.cat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 26px;
  height: 100%;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: "";
  position: absolute;
  inset: auto -40% -60% auto;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(225, 27, 34, .12), transparent 70%);
  transition: transform .4s var(--ease);
}
.cat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.cat-card:hover::before { transform: scale(1.6); }
.cat-card i {
  font-size: 30px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  width: 62px; height: 62px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 18px;
  box-shadow: 0 12px 24px -10px rgba(225, 27, 34, .7);
}
.cat-card h3 { font-size: 1.35rem; text-transform: uppercase; margin-bottom: 8px; }
.cat-card p { color: var(--muted); font-size: .95rem; margin-bottom: 14px; }
.cat-card a {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  color: var(--red);
}
.cat-card a i { all: unset; margin-left: 6px; transition: margin .25s var(--ease); }
.cat-card a:hover i { margin-left: 12px; }

/* ---------- Product cards ---------- */
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--paper-2);
  overflow: hidden;
}
.product-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.product-card:hover .product-media img { transform: scale(1.07); }
.badge-hot, .badge-new {
  position: absolute;
  top: 10px; left: 10px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  color: #fff;
  z-index: 2;
}
.badge-hot { background: var(--red); }
.badge-new { background: var(--ink); }

.discount-tag {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 2;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  letter-spacing: .5px;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 8px 18px -8px rgba(225, 27, 34, .8);
  animation: tag-pop .4s var(--ease) both;
}
@keyframes tag-pop { from { transform: scale(.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.product-body { padding: 16px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.product-body .brand {
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
}
.product-body h3 { font-size: 1.15rem; text-transform: uppercase; margin: 0; }
.product-body .variant { font-size: .82rem; color: var(--muted); margin-bottom: 8px; }

.price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px; margin-top: auto; }
.price { font-family: "Oswald", sans-serif; font-size: 1.3rem; font-weight: 600; color: var(--ink); }
.price-old { font-size: .9rem; color: var(--muted); text-decoration: line-through; }

.pc-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.pc-actions .btn { padding: .55rem .4rem; font-size: 12px; }
.btn-buy {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 22px -12px rgba(20, 22, 26, .6);
}
.btn-buy:hover { background: var(--red); color: #fff; transform: translateY(-3px); }

.quick-add {
  position: absolute;
  right: 10px; bottom: 10px;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: var(--red);
  font-size: 15px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), background .25s var(--ease), color .25s var(--ease);
  z-index: 2;
}
.product-card:hover .quick-add { opacity: 1; transform: translateY(0); }
.quick-add:hover { background: var(--red); color: #fff; }
@media (hover: none) { .quick-add { opacity: 1; transform: none; } }

/* ---------- Navbar cart button ---------- */
.btn-cart {
  position: relative;
  background: transparent;
  border: 2px solid var(--line);
  color: var(--ink);
}
.btn-cart:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }
.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 20px; height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--muted);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  margin-left: 4px;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.cart-count.has { background: var(--red); }
.cart-count.bump { transform: scale(1.35); }

/* ---------- Cart drawer ---------- */
.cart-drawer { width: 400px; max-width: 92vw; }
.cart-drawer .offcanvas-header { border-bottom: 1px solid var(--line); }
.cart-drawer .offcanvas-title { text-transform: uppercase; letter-spacing: 1px; }
.cart-drawer .offcanvas-title i { color: var(--red); margin-right: 6px; }
.cart-drawer .offcanvas-body { padding: 0; }

.cart-empty { text-align: center; padding: 60px 24px; color: var(--muted); }
.cart-empty i { font-size: 46px; color: var(--line); margin-bottom: 14px; }
.cart-empty p { margin-bottom: 16px; }

.cart-items { list-style: none; margin: 0; padding: 8px 16px; }
.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item img { width: 64px; height: 64px; border-radius: 10px; object-fit: cover; background: var(--paper-2); }
.ci-info h6 { margin: 0 0 2px; font-family: "Oswald", sans-serif; font-size: .98rem; text-transform: uppercase; }
.ci-variant { display: block; font-size: .74rem; color: var(--muted); }
.ci-price { display: block; font-size: .85rem; color: var(--red); font-weight: 600; margin-top: 3px; }
.ci-price s { color: var(--muted); font-weight: 400; font-size: .78rem; margin-left: 4px; }
.ci-controls { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; }
.qty { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.qty button {
  width: 26px; height: 26px;
  border: 0;
  background: var(--paper-2);
  color: var(--ink);
  font-size: 14px;
  cursor: pointer;
}
.qty button:hover { background: var(--red); color: #fff; }
.qty span { min-width: 26px; text-align: center; font-size: .85rem; font-weight: 600; }
.ci-remove { border: 0; background: none; color: var(--muted); cursor: pointer; font-size: 13px; padding: 4px; }
.ci-remove:hover { color: var(--red); }

.offcanvas-footer { padding: 18px 16px; border-top: 1px solid var(--line); background: var(--paper-2); }
.cart-saved {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: #1a7f37;
  background: #e7f6ec;
  border-radius: 8px;
  padding: 6px 10px;
  margin-bottom: 8px;
}
.cart-saved strong { font-weight: 600; }
.cart-total { display: flex; justify-content: space-between; align-items: center; font-family: "Oswald", sans-serif; text-transform: uppercase; }
.cart-total strong { font-size: 1.4rem; color: var(--red); }
.cart-note { font-size: .74rem; color: var(--muted); margin: 6px 0 12px; }

/* ---------- Add-to-cart toast ---------- */
.cart-toast {
  position: fixed;
  left: 50%; bottom: 26px;
  transform: translate(-50%, 30px);
  background: var(--ink);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  z-index: 1200;
}
.cart-toast.show { opacity: 1; transform: translate(-50%, 0); }
.cart-toast i {
  color: #fff;
  background: #25d366;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: 10px;
  margin-right: 6px;
}

@media (max-width: 991.98px) {
  .btn-cart { width: 100%; margin-top: 8px; justify-content: center; display: flex; align-items: center; }
}

/* ---------- Feature cards ---------- */
.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  height: 100%;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature-card i { font-size: 26px; color: var(--red); margin-bottom: 12px; }
.feature-card h3 { font-size: 1.1rem; text-transform: uppercase; margin-bottom: 6px; }
.feature-card p { color: var(--muted); font-size: .92rem; margin: 0; }

/* ---------- Size chart ---------- */
.sizechart-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
  transition: transform .4s var(--ease);
}
.sizechart-frame:hover { transform: rotate(0); }
.check-list { list-style: none; padding: 0; margin: 18px 0 26px; }
.check-list li { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; color: var(--ink-2); }
.check-list i {
  color: #fff;
  background: var(--red);
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  flex-shrink: 0;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before, .cta-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 40px solid rgba(255, 255, 255, .06);
}
.cta-banner::before { width: 320px; height: 320px; top: -140px; left: -80px; }
.cta-banner::after { width: 260px; height: 260px; bottom: -140px; right: -60px; }
.cta-banner h2 { position: relative; }
.cta-banner .txt-outline { -webkit-text-stroke: 2px #fff; }
.cta-banner p { opacity: .9; margin-bottom: 26px; }

/* ---------- Contact ---------- */
.contact-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  height: 100%;
  box-shadow: var(--shadow);
}
.c-row { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px dashed var(--line); }
.c-row:last-child { border-bottom: 0; }
.c-row i {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.c-row h4 { font-size: .95rem; text-transform: uppercase; margin: 0 0 2px; }
.c-row p { margin: 0; color: var(--muted); font-size: .92rem; }
.c-row a:hover { color: var(--red); }
.map-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 380px;
}
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255, 255, 255, .7); padding: 64px 0 24px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { width: 44px; height: 44px; border-radius: 50%; }
.footer-brand span { font-family: "Oswald", sans-serif; font-size: 20px; color: #fff; letter-spacing: 1px; }
.footer-brand small { display: block; font-size: 9px; letter-spacing: 4px; color: var(--red-soft); }
.footer p { font-size: .92rem; }
.footer h5 { color: #fff; text-transform: uppercase; font-size: 1rem; margin-bottom: 16px; letter-spacing: 1px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 9px; }
.footer ul a:hover { color: var(--red-soft); padding-left: 5px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: grid;
  place-items: center;
  color: #fff;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.footer-social a:hover { background: var(--red); transform: translateY(-3px); }
.footer .btn { margin-top: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .82rem;
}

/* ---------- Floating action buttons ---------- */
.fab-whatsapp, .fab-top {
  position: fixed;
  right: 20px;
  z-index: 900;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
  box-shadow: 0 14px 30px -10px rgba(0, 0, 0, .4);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.fab-whatsapp {
  bottom: 84px;
  background: #25d366;
  color: #fff;
  font-size: 26px;
}
.fab-whatsapp::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: ping 1.8s var(--ease) infinite;
}
@keyframes ping { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.7); opacity: 0; } }
.fab-top {
  bottom: 20px;
  background: var(--red);
  color: #fff;
  font-size: 18px;
  opacity: 0;
  pointer-events: none;
}
.fab-top.show { opacity: 1; pointer-events: auto; }
.fab-whatsapp:hover, .fab-top:hover { transform: translateY(-4px) scale(1.05); }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    margin-top: 12px;
    box-shadow: var(--shadow);
  }
  .main-nav .nav-link { padding: 10px 6px; }
  .main-nav .nav-item .btn { margin-top: 8px; width: 100%; }
  .hero { text-align: center; }
  .hero-copy p { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-stats { justify-content: center; }
  .hero-visual { margin-top: 40px; min-height: 380px; }
  .hero-ring { width: 320px; height: 320px; }
  .hero-ring.ring-2 { width: 230px; height: 230px; }
  .float-tag { display: none; }
}

@media (max-width: 575.98px) {
  .section { padding: 64px 0; }
  .hero-stats { gap: 22px; }
  .hero-stats .num { font-size: 2rem; }
  .product-body h3 { font-size: 1rem; }
  .footer-bottom { justify-content: center; text-align: center; }
  .btn { padding: .65rem 1.3rem; font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
