:root {
  color-scheme: light;
  --black: #070707;
  --charcoal: #252525;
  --ink: #141414;
  --muted: #717171;
  --line: #e5e5e5;
  --soft: #f4f4f4;
  --white: #fff;
  --accent: #8f32d5;
  --accent-bright: #cb3bdc;
  --whatsapp: #20c968;
  --max: 1180px;
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 140px; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--black);
  color: var(--white);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.announcement {
  display: grid;
  min-height: 31px;
  place-items: center;
  background: var(--black);
  color: #d8d8d8;
}
.announcement p {
  margin: 0;
  padding: 6px 18px;
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .04em;
  text-align: center;
}
.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .08);
  backdrop-filter: blur(14px);
}
.header-main {
  display: grid;
  grid-template-columns: auto auto minmax(260px, 570px) auto;
  width: min(var(--max), calc(100% - 42px));
  min-height: 82px;
  margin-inline: auto;
  align-items: center;
  gap: 24px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  color: var(--black);
  font-size: 1.5rem;
  font-weight: 950;
  letter-spacing: -.075em;
  white-space: nowrap;
}
.wordmark span:last-child {
  margin-left: .1em;
  padding: .06em .16em .1em;
  background: var(--black);
  color: var(--white);
  letter-spacing: -.05em;
}
.menu-button {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 10px;
  align-content: center;
  gap: 4px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-button span:not(.sr-only) { display: block; height: 2px; border-radius: 10px; background: var(--ink); }
.header-search { position: relative; }
.header-search input {
  width: 100%;
  min-height: 52px;
  padding: 0 58px 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  outline: 0;
  background: #f1f1f1;
  color: var(--ink);
}
.header-search input:focus { border-color: #c8c8c8; box-shadow: 0 0 0 3px rgba(143, 50, 213, .12); }
.header-search input::placeholder { color: #8a8a8a; }
.header-search svg {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 21px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-width: 2;
  transform: translateY(-50%);
  pointer-events: none;
}
.header-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 800;
}
.header-whatsapp svg { width: 27px; fill: none; stroke: var(--ink); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }
.category-navigation { background: var(--charcoal); color: var(--white); }
.navigation-inner {
  display: flex;
  width: min(var(--max), calc(100% - 42px));
  min-height: 54px;
  margin-inline: auto;
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
}
.navigation-inner a { font-size: .84rem; font-weight: 750; }
.navigation-inner a:hover { color: #e6b7ff; }
.nav-featured { margin-left: auto; }
.nav-featured span { margin-right: 7px; color: var(--accent-bright); }

main > section { width: min(var(--max), calc(100% - 42px)); margin-inline: auto; }
.hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  margin-top: 30px;
  border-radius: var(--radius);
  background: #050505;
  color: var(--white);
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0, 0, 0, .96) 0%, rgba(0, 0, 0, .79) 36%, rgba(0, 0, 0, .04) 73%); }
.hero-copy {
  position: relative;
  z-index: 1;
  width: min(590px, 57%);
  padding: clamp(60px, 8vw, 94px);
}
.eyebrow {
  margin-bottom: 15px;
  color: #dca9f0;
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--accent); }
.hero h1 {
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 6.2vw, 5.9rem);
  line-height: .91;
  letter-spacing: -.07em;
}
.hero h1 span { background: linear-gradient(90deg, #fff 0%, #df93ff 70%, #c446df 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-copy > p:not(.eyebrow) { max-width: 500px; margin-bottom: 30px; color: #d5d5d5; font-size: 1.05rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  min-height: 48px;
  padding: 12px 21px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white);
  border-radius: 7px;
  font-size: .85rem;
  font-weight: 850;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-light { background: var(--white); color: var(--black); }
.button-outline { background: rgba(0, 0, 0, .2); color: var(--white); }
.hero-dots { position: absolute; z-index: 2; bottom: 22px; left: 50%; display: flex; gap: 7px; transform: translateX(-50%); }
.hero-dots span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255, 255, 255, .35); }
.hero-dots .active { width: 25px; border-radius: 99px; background: var(--white); }

.promo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; padding-block: 66px 84px; }
.promo-card {
  position: relative;
  overflow: hidden;
  min-height: 315px;
  padding: 46px;
  border-radius: var(--radius);
  color: var(--white);
  isolation: isolate;
}
.promo-card::before, .promo-card::after { position: absolute; z-index: -1; border-radius: 50%; content: ""; filter: blur(2px); }
.promo-repair { background: radial-gradient(circle at 85% 20%, #7e1db3 0, #250d32 28%, #060606 63%); }
.promo-repair::before { width: 210px; height: 210px; right: -55px; bottom: -45px; border: 34px solid rgba(255, 255, 255, .08); }
.promo-accessories { background: radial-gradient(circle at 82% 68%, #3c3c3c 0, #151515 35%, #050505 70%); }
.promo-accessories::before { width: 150px; height: 150px; right: 40px; top: 32px; border: 1px solid rgba(255, 255, 255, .2); }
.promo-accessories::after { width: 74px; height: 74px; right: 78px; top: 70px; background: linear-gradient(135deg, #8d29b8, #da54ee); box-shadow: 0 0 55px rgba(205, 64, 229, .55); }
.promo-card > p { margin-bottom: 9px; color: #d5b3e4; font-size: .74rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.promo-card h2 { max-width: 390px; margin-bottom: 15px; font-size: clamp(2.2rem, 4vw, 3.7rem); line-height: .95; letter-spacing: -.055em; }
.promo-card > span { display: block; max-width: 340px; margin-bottom: 52px; color: #bdbdbd; }
.promo-card a { border-bottom: 1px solid currentColor; font-size: .85rem; font-weight: 800; }

.catalog { padding-block: 28px 110px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 34px; }
.section-heading h2 { margin: 0; font-size: clamp(2.1rem, 4vw, 3.4rem); line-height: 1; letter-spacing: -.055em; }
.section-link { padding-bottom: 5px; border-bottom: 1px solid #bbb; color: #4b4b4b; font-size: .85rem; font-weight: 750; }
.section-link span { margin-left: 8px; }
.category-list { display: flex; overflow-x: auto; gap: 9px; padding: 2px 0 20px; scrollbar-width: thin; }
.category-list button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 8px 18px;
  border: 1px solid #d6d6d6;
  border-radius: 999px;
  background: var(--white);
  color: #525252;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 750;
}
.category-list button:hover, .category-list button[aria-pressed="true"] { border-color: var(--black); background: var(--black); color: var(--white); }
.catalog-status { min-height: 26px; margin: 0 0 22px; color: var(--muted); font-size: .88rem; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.product-card { display: grid; min-height: 100%; border: 1px solid transparent; border-radius: 16px; background: var(--white); transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.product-card:hover { border-color: var(--line); transform: translateY(-4px); box-shadow: 0 18px 44px rgba(0, 0, 0, .08); }
.product-image { display: grid; overflow: hidden; aspect-ratio: 1; place-items: center; border-radius: 15px; background: #f3f3f3; }
.product-image img { width: 100%; height: 100%; padding: 10px; object-fit: contain; }
.product-placeholder { color: #c0c0c0; font-size: 3rem; font-weight: 950; letter-spacing: -.09em; }
.product-copy { display: grid; min-height: 188px; padding: 18px 10px 8px; align-content: start; }
.product-category { color: #8a8a8a; font-size: .69rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.product-copy h3 { margin: 7px 0 14px; font-size: 1rem; line-height: 1.3; }
.product-price { margin-top: auto; font-size: 1.22rem; }
.product-copy .button { width: 100%; margin-top: 15px; border-color: var(--black); background: var(--black); color: var(--white); }
.empty-state {
  grid-column: 1 / -1;
  display: grid;
  min-height: 260px;
  padding: 48px;
  align-content: center;
  border-radius: var(--radius);
  background: linear-gradient(120deg, #f4f4f4, #fff 55%, #f4eafb);
}
.empty-state strong { display: block; margin-bottom: 9px; font-size: 1.5rem; letter-spacing: -.03em; }
.empty-state p { max-width: 590px; margin: 0; color: var(--muted); }

.process { padding-block: 90px 110px; border-top: 1px solid var(--line); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: var(--radius); }
.process-grid article { min-height: 270px; padding: 34px; border-right: 1px solid var(--line); }
.process-grid article:last-child { border-right: 0; }
.process-grid strong { color: var(--accent); font-size: .77rem; letter-spacing: .12em; }
.process-grid h3 { margin: 70px 0 10px; font-size: 1.25rem; letter-spacing: -.03em; }
.process-grid p { margin: 0; color: var(--muted); }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  max-width: none;
  padding: 0 max(20px, calc((100vw - var(--max)) / 2));
  border-block: 1px solid #3d3d3d;
  background: var(--charcoal);
  color: var(--white);
}
.trust-strip article { display: flex; min-height: 126px; padding: 24px; align-items: center; gap: 15px; border-right: 1px solid #444; }
.trust-strip article:last-child { border-right: 0; }
.trust-strip article > span { display: grid; flex: 0 0 38px; width: 38px; height: 38px; place-items: center; border: 1px solid #777; border-radius: 50%; color: #e1a3ff; font-weight: 850; }
.trust-strip strong { display: block; margin-bottom: 2px; font-size: .87rem; }
.trust-strip p { margin: 0; color: #aaa; font-size: .74rem; }

footer {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  width: 100%;
  padding: 76px max(24px, calc((100vw - var(--max)) / 2)) 30px;
  background: #111;
  color: #bcbcbc;
}
.footer-wordmark { margin-bottom: 20px; color: var(--white); }
.footer-wordmark span:last-child { background: var(--white); color: var(--black); }
.footer-brand p { max-width: 320px; }
footer h2 { margin-bottom: 18px; color: var(--white); font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; }
footer div > a, footer div > p { display: block; margin: 0 0 9px; font-size: .84rem; }
footer div > a:hover { color: var(--white); }
.footer-credit { grid-column: 1 / -1; margin: 32px 0 0; padding-top: 24px; border-top: 1px solid #303030; color: #727272; font-size: .73rem; }
.floating-whatsapp {
  position: fixed;
  z-index: 50;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--whatsapp);
  box-shadow: 0 8px 26px rgba(0, 0, 0, .24);
}
.floating-whatsapp svg { width: 31px; fill: none; stroke: var(--white); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }

@media (max-width: 980px) {
  .header-main { grid-template-columns: auto auto 1fr auto; }
  .header-whatsapp span { display: none; }
  .navigation-inner { gap: 26px; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-strip article:nth-child(2) { border-right: 0; }
  .trust-strip article:nth-child(-n+2) { border-bottom: 1px solid #444; }
}
@media (max-width: 760px) {
  html { scroll-padding-top: 96px; }
  .announcement { display: none; }
  .header-main { grid-template-columns: auto 1fr auto; width: min(100% - 28px, var(--max)); min-height: 68px; gap: 10px; }
  .menu-button { grid-column: 3; }
  .header-search { grid-column: 1 / -1; grid-row: 2; margin-bottom: 12px; }
  .header-whatsapp { grid-column: 2; grid-row: 1; justify-self: end; }
  .category-navigation { display: none; }
  .category-navigation.is-open { display: block; }
  .navigation-inner { display: grid; width: 100%; padding: 12px 20px 20px; gap: 0; }
  .navigation-inner a { padding: 13px 4px; border-bottom: 1px solid #454545; }
  .nav-featured { margin-left: 0; }
  main > section { width: min(100% - 28px, var(--max)); }
  .hero { min-height: 570px; margin-top: 15px; }
  .hero-image { object-position: 64% center; }
  .hero-shade { background: linear-gradient(180deg, rgba(0, 0, 0, .62), rgba(0, 0, 0, .95) 72%); }
  .hero-copy { position: absolute; bottom: 0; width: 100%; padding: 35px 28px 55px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.8rem); }
  .hero-copy > p:not(.eyebrow) { font-size: .98rem; }
  .promo-grid { grid-template-columns: 1fr; padding-block: 38px 70px; }
  .promo-card { min-height: 285px; padding: 34px 28px; }
  .section-heading { display: grid; align-items: start; }
  .section-link { justify-self: start; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { min-height: 210px; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-grid article:last-child { border-bottom: 0; }
  .process-grid h3 { margin-top: 38px; }
  footer { grid-template-columns: 1fr 1fr; }
  .footer-brand, .footer-credit { grid-column: 1 / -1; }
}
@media (max-width: 500px) {
  .wordmark { font-size: 1.28rem; }
  .hero { min-height: 540px; border-radius: 18px; }
  .hero-copy { padding-inline: 22px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .product-grid { grid-template-columns: 1fr; }
  .empty-state { padding: 35px 25px; }
  .trust-strip { grid-template-columns: 1fr; padding-inline: 20px; }
  .trust-strip article { border-right: 0; border-bottom: 1px solid #444; }
  .trust-strip article:nth-child(3) { border-bottom: 1px solid #444; }
  .trust-strip article:last-child { border-bottom: 0; }
  footer { grid-template-columns: 1fr; padding-top: 56px; }
  .footer-brand, .footer-credit { grid-column: auto; }
  .floating-whatsapp { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
