:root {
  --bg: #050505;
  --panel: #101010;
  --panel-2: #181818;
  --text: #f8f8f8;
  --muted: #b7b7b7;
  --line: #2a2a2a;
  --accent: #2df06f;
  --accent-2: #f4d03f;
  --danger: #ff4d4d;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(5, 5, 5, 0.84);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 22px;
  justify-content: space-between;
  left: 0;
  padding: 12px clamp(16px, 4vw, 54px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: flex;
  gap: 10px;
  min-width: max-content;
}

.brand img {
  border: 1px solid #fff;
  border-radius: 50%;
  height: 44px;
  object-fit: cover;
  width: 44px;
}

.brand span,
h1,
h2,
.category-card strong,
.price {
  font-family: Archivo, Impact, sans-serif;
}

.brand span {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: clamp(12px, 2.2vw, 28px);
}

.main-nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--text);
}

.header-whatsapp,
.btn,
.filter,
.icon-button,
.floating-cart {
  border: 0;
  cursor: pointer;
  font-weight: 800;
}

.header-whatsapp {
  background: var(--accent);
  border-radius: 8px;
  color: #041408;
  padding: 11px 16px;
}

.hero {
  height: clamp(390px, 45vw, 620px);
  overflow: hidden;
  position: relative;
}

.slider,
.slide {
  inset: 0;
  position: absolute;
}

.slide {
  opacity: 0;
  transition: opacity 420ms ease;
}

.slide.is-active {
  opacity: 1;
}

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

.hero::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.04)), linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent 55%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-panel {
  bottom: 28px;
  left: clamp(18px, 6vw, 74px);
  max-width: 620px;
  position: absolute;
  z-index: 2;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.2rem, 4.2vw, 4.1rem);
  line-height: 0.92;
  margin: 0;
  max-width: 9ch;
  text-transform: uppercase;
}

.hero-panel p:not(.eyebrow) {
  color: #e4e4e4;
  font-size: clamp(1rem, 1.8vw, 1.24rem);
  line-height: 1.55;
  max-width: 580px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
}

.btn.primary {
  background: var(--accent);
  color: #061306;
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
}

.slider-dots {
  bottom: 24px;
  display: flex;
  gap: 10px;
  left: clamp(18px, 6vw, 74px);
  position: absolute;
  z-index: 3;
}

.dot {
  background: rgba(255, 255, 255, 0.4);
  border: 0;
  border-radius: 999px;
  height: 9px;
  width: 34px;
}

.dot.is-active {
  background: var(--accent);
}

.trust-strip {
  border-block: 1px solid var(--line);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
}

.trust-strip span {
  background: #0d0d0d;
  color: #ededed;
  font-weight: 800;
  padding: 18px;
  text-align: center;
  text-transform: uppercase;
}

.section {
  padding: clamp(44px, 7vw, 86px) clamp(16px, 4vw, 54px);
}

.section-heading {
  margin-bottom: 26px;
}

.section-heading.wide {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.95;
  margin: 0;
  text-transform: uppercase;
}

.category-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-card,
.product-card,
.drawer-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.category-card {
  display: grid;
  min-height: 190px;
  padding: 22px;
}

.category-card span {
  color: var(--accent-2);
  font-weight: 900;
}

.category-card strong {
  align-self: end;
  font-size: 2rem;
  text-transform: uppercase;
}

.category-card small {
  color: var(--muted);
  line-height: 1.45;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.filter {
  background: #181818;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #dedede;
  padding: 10px 12px;
}

.filter.is-active {
  background: var(--text);
  color: #050505;
}

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

.product-card {
  overflow: hidden;
}

.product-media {
  align-items: center;
  aspect-ratio: 4 / 5;
  background: linear-gradient(145deg, #202020, #090909);
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.product-media img {
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  width: 100%;
}

.product-info {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.product-top {
  align-items: start;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.product-top h3 {
  font-size: 1rem;
  line-height: 1.25;
  margin: 0;
}

.tag {
  background: rgba(45, 240, 111, 0.12);
  border: 1px solid rgba(45, 240, 111, 0.38);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  padding: 5px 8px;
}

.price {
  font-size: 1.15rem;
  font-weight: 900;
}

.sizes {
  color: var(--muted);
  font-size: 0.86rem;
}

.product-actions {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
}

.product-actions .btn {
  min-height: 42px;
  padding-inline: 12px;
}

.promo-band {
  align-items: center;
  background: #f5f5f5;
  color: #050505;
  display: grid;
  gap: clamp(24px, 5vw, 60px);
  grid-template-columns: 0.75fr 1.25fr;
  padding: clamp(42px, 7vw, 82px) clamp(16px, 4vw, 54px);
}

.promo-band .eyebrow {
  color: #09752b;
}

.promo-band p:not(.eyebrow) {
  color: #303030;
  line-height: 1.6;
}

.promo-band img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  max-height: 620px;
  object-fit: cover;
  object-position: top;
  width: 100%;
}

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

.contact-copy {
  max-width: 720px;
}

.contact-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.6;
}

.order-drawer {
  background: rgba(0, 0, 0, 0.68);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 220ms ease;
  z-index: 50;
}

.order-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-panel {
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
  margin-left: auto;
  max-width: 430px;
  padding: 20px;
  width: min(100%, 430px);
}

.drawer-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.icon-button {
  background: #242424;
  border-radius: 8px;
  color: var(--text);
  height: 38px;
  width: 38px;
}

.order-items {
  display: grid;
  gap: 10px;
  overflow: auto;
}

.order-item {
  align-items: center;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr auto;
  padding: 12px;
}

.order-item strong {
  display: block;
  line-height: 1.25;
}

.order-item small {
  color: var(--muted);
}

.remove-item {
  background: transparent;
  border: 0;
  color: var(--danger);
  cursor: pointer;
  font-weight: 900;
}

.order-total {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
}

.full {
  width: 100%;
}

.floating-cart,
.floating-whatsapp {
  align-items: center;
  bottom: 18px;
  box-shadow: var(--shadow);
  display: inline-flex;
  justify-content: center;
  position: fixed;
  z-index: 30;
}

.floating-cart {
  background: var(--text);
  border-radius: 999px;
  color: #050505;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  right: 78px;
}

.floating-cart span {
  align-items: center;
  background: var(--accent);
  border-radius: 50%;
  display: inline-flex;
  height: 24px;
  justify-content: center;
  min-width: 24px;
  padding: 0 6px;
}

.floating-whatsapp {
  background: #25d366;
  border-radius: 50%;
  bottom: 16px;
  color: #03220e;
  font-weight: 900;
  height: 52px;
  right: 18px;
  width: 52px;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .trust-strip,
  .category-grid,
  .product-grid,
  .promo-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading.wide,
  .contact {
    align-items: start;
    flex-direction: column;
  }

  .filters {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .header-whatsapp {
    display: none;
  }

  .hero {
    height: 560px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.9));
  }

  .hero-panel {
    bottom: 38px;
    left: 18px;
    padding: 18px;
    position: absolute;
  }

  h1 {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

  .trust-strip,
  .category-grid,
  .product-grid,
  .promo-band {
    grid-template-columns: 1fr;
  }

  .trust-strip span {
    padding: 13px;
  }

  .category-card {
    min-height: 150px;
  }

  .product-actions {
    grid-template-columns: 1fr;
  }

  .promo-band img {
    max-height: none;
  }

  .floating-cart {
    bottom: 78px;
    right: 16px;
  }
}
