:root {
  --black: #0d0d0d;
  --carbon: #1a1a1a;
  --white: #ffffff;
  --gold: #ffc107;
  --gray: #f5f5f5;
  --line: rgba(255, 255, 255, .12);
  --ink: #141414;
  --muted: #6b6b6b;
  --shadow: 0 24px 60px rgba(0, 0, 0, .20);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--gray);
  color: var(--ink);
  font-family: Poppins, Montserrat, Arial, sans-serif;
}

a,
button {
  font: inherit;
}

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

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px clamp(22px, 4vw, 64px);
  background: rgba(13, 13, 13, .94);
  border-bottom: 1px solid rgba(255, 193, 7, .18);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 260px;
}

.brand img,
.footer-brand img {
  width: clamp(172px, 18vw, 288px);
  height: auto;
  display: block;
}

.brand span {
  max-width: 170px;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2.1vw, 36px);
  color: var(--white);
  font-weight: 600;
}

.main-nav a,
.main-nav button,
.footer nav a,
.footer nav button {
  background: transparent;
  border: 0;
  color: inherit;
}

.main-nav a,
.main-nav button {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after,
.main-nav button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.main-nav a:hover::after,
.main-nav button:hover::after {
  transform: scaleX(1);
}

.main-nav .whatsapp {
  padding: 12px 18px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  color: var(--white);
}

.main-nav .whatsapp::after {
  display: none;
}

.hero {
  min-height: min(850px, calc(100vh - 92px));
  display: grid;
  grid-template-columns: minmax(330px, 45%) minmax(420px, 55%);
  align-items: stretch;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 42%, rgba(255, 193, 7, .12), transparent 22%),
    linear-gradient(110deg, #070707 0%, #101010 42%, #191919 100%);
  color: var(--white);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
  padding: clamp(58px, 8vw, 128px) clamp(28px, 5vw, 86px);
}

.edition,
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.edition::after {
  content: "";
  display: inline-block;
  width: 42px;
  height: 2px;
  margin-left: 12px;
  vertical-align: middle;
  background: var(--gold);
}

.hero h1 {
  margin: 0;
  font-family: Montserrat, Poppins, Arial, sans-serif;
  font-size: clamp(48px, 5.6vw, 106px);
  line-height: .96;
  text-transform: uppercase;
}

.hero h1 span,
.hero h1 strong,
.hero h1 small {
  display: block;
}

.hero h1 strong {
  color: var(--gold);
  font-weight: 900;
}

.hero h1 small {
  max-width: 680px;
  margin-top: 14px;
  color: var(--white);
  font-family: Poppins, Montserrat, Arial, sans-serif;
  font-size: clamp(18px, 2vw, 34px);
  font-weight: 800;
  line-height: 1.12;
}

.hero-text {
  max-width: 610px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(16px, 1.3vw, 22px);
  line-height: 1.6;
}

.hero-text b {
  color: var(--gold);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 8px;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover,
.filters button:hover,
.product-card:hover,
.floating-actions a:hover,
.floating-actions button:hover {
  transform: translateY(-2px);
}

.primary {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}

.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .42);
}

.icon {
  font-size: 18px;
}

.hero-media {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.hero-media::before {
  content: "T";
  position: absolute;
  right: 8%;
  top: 18%;
  z-index: -1;
  width: 300px;
  height: 300px;
  display: grid;
  place-items: center;
  border: 16px solid rgba(255, 255, 255, .09);
  border-radius: 50%;
  color: rgba(255, 255, 255, .09);
  font-family: Georgia, serif;
  font-size: 210px;
  font-weight: 900;
}

.hero-media img {
  width: min(98%, 880px);
  aspect-ratio: 830 / 485;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  filter: drop-shadow(0 34px 46px rgba(0, 0, 0, .55));
}

.hero-badge {
  position: absolute;
  right: clamp(24px, 6vw, 110px);
  bottom: clamp(36px, 8vw, 116px);
  width: 148px;
  height: 148px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  text-align: center;
  text-transform: uppercase;
  background: rgba(13, 13, 13, .72);
}

.hero-badge span,
.hero-badge b {
  display: block;
  font-size: 13px;
  line-height: 1.15;
}

.hero-badge b {
  color: var(--white);
}

.benefits,
.catalog-section,
.branches-section,
.trust,
.footer {
  width: min(100% - 44px, 1680px);
  margin-inline: auto;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: -42px;
  position: relative;
  z-index: 4;
  background: var(--white);
  border: 1px solid rgba(13, 13, 13, .10);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.benefits article {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 122px;
  padding: 24px 28px;
}

.benefits article + article {
  border-left: 1px solid rgba(13, 13, 13, .10);
}

.benefit-icon {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-size: 24px;
  font-weight: 900;
}

.benefits h2,
.trust h2,
.footer h2 {
  margin: 0;
  font-size: 17px;
  line-height: 1.22;
}

.benefits p,
.trust p,
.footer p {
  margin: 5px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.catalog-section {
  padding: 58px 0 70px;
}

.branches-section {
  padding: 0 0 70px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.section-head h2 {
  margin: 0;
  font-family: Montserrat, Poppins, Arial, sans-serif;
  font-size: clamp(28px, 3vw, 48px);
  text-transform: uppercase;
}

.section-count {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.text-link {
  color: var(--black);
  font-weight: 800;
  border-bottom: 2px solid var(--gold);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.filters button {
  min-width: 150px;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid rgba(13, 13, 13, .14);
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.filters button.active {
  background: var(--gold);
  border-color: var(--gold);
}

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

.product-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(13, 13, 13, .10);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .07);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.product-card:hover {
  border-color: rgba(255, 193, 7, .8);
  box-shadow: 0 24px 46px rgba(0, 0, 0, .12);
}

.product-image {
  aspect-ratio: 1.72 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: linear-gradient(180deg, #fff, #f8f8f8);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 9px;
  border-radius: 5px;
  background: var(--gold);
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.fav {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(13, 13, 13, .12);
  border-radius: 50%;
  background: rgba(255, 255, 255, .88);
}

.product-info {
  padding: 18px;
}

.product-info h3 {
  margin: 0;
  min-height: 48px;
  font-size: 18px;
  line-height: 1.15;
}

.meta {
  margin: 5px 0 12px;
  color: var(--carbon);
  font-weight: 500;
}

.product-code {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.sizes {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 16px;
}

.sizes span {
  min-width: 32px;
  padding: 4px 7px;
  border: 1px solid rgba(13, 13, 13, .12);
  border-radius: 5px;
  text-align: center;
  font-size: 13px;
}

.sizes em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.card-actions a,
.card-actions button {
  min-height: 44px;
  padding: 0 12px;
  border-radius: 7px;
  border: 1px solid rgba(13, 13, 13, .13);
  background: var(--white);
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
}

.card-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--gold);
  border-color: var(--gold);
}

.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 52px;
  background: var(--carbon);
  color: var(--white);
  border-radius: 8px;
  overflow: hidden;
}

.trust article {
  padding: 34px 30px;
}

.trust article + article {
  border-left: 1px solid var(--line);
}

.trust span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 900;
}

.trust p,
.footer p {
  color: rgba(255, 255, 255, .68);
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.branch-card {
  min-height: 250px;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(13, 13, 13, .10);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .07);
}

.branch-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-weight: 900;
}

.branch-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.18;
}

.branch-card p {
  margin: 6px 0;
  color: var(--muted);
  line-height: 1.45;
}

.branch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.branch-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(13, 13, 13, .13);
  border-radius: 7px;
  color: var(--black);
  font-size: 13px;
  font-weight: 800;
}

.branch-actions a:last-child {
  background: var(--gold);
  border-color: var(--gold);
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 38px;
  padding: 36px clamp(24px, 4vw, 52px);
  margin-bottom: 34px;
  background: var(--black);
  color: var(--white);
  border-radius: 8px;
}

.footer-brand img {
  max-width: 240px;
}

.footer nav {
  display: grid;
  gap: 9px;
  align-content: start;
}

.footer nav a,
.footer nav button {
  width: fit-content;
  padding: 0;
  color: rgba(255, 255, 255, .78);
  text-align: left;
}

.wholesale .btn {
  margin-top: 18px;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.floating-actions a,
.floating-actions button {
  min-width: 122px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 193, 7, .54);
  border-radius: 8px;
  background: rgba(13, 13, 13, .88);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(10px);
  transition: transform .2s ease, background .2s ease;
}

.floating-actions a:last-child {
  background: var(--gold);
  color: var(--black);
}

@media (max-width: 1180px) {
  .site-header,
  .main-nav {
    flex-wrap: wrap;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    max-width: none;
    padding-bottom: 28px;
  }

  .hero-media {
    min-height: 390px;
    padding: 0 24px 48px;
  }

  .benefits,
  .trust,
  .branch-grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(13, 13, 13, .10);
  }

  .benefits article:nth-child(4) {
    border-top: 1px solid rgba(13, 13, 13, .10);
  }

  .trust article:nth-child(3) {
    border-left: 0;
  }

  .trust article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand {
    min-width: 0;
    width: 100%;
    justify-content: space-between;
  }

  .brand span {
    text-align: right;
  }

  .main-nav {
    width: 100%;
    gap: 10px 18px;
    font-size: 14px;
  }

  .hero-copy {
    padding: 46px 22px 20px;
  }

  .hero-actions,
  .section-head {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-media {
    min-height: 290px;
  }

  .hero-media::before,
  .hero-badge {
    display: none;
  }

  .benefits,
  .trust,
  .branches-section,
  .branch-grid,
  .product-grid,
  .footer {
    width: min(100% - 28px, 1680px);
    grid-template-columns: 1fr;
  }

  .benefits {
    margin-top: -20px;
  }

  .benefits article,
  .benefits article + article,
  .trust article,
  .trust article + article {
    border-left: 0;
    border-top: 1px solid rgba(13, 13, 13, .10);
  }

  .benefits article:first-child,
  .trust article:first-child {
    border-top: 0;
  }

  .filters {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .filters button {
    min-width: 0;
  }

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

  .floating-actions {
    left: 14px;
    right: 14px;
    bottom: 12px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }

  .floating-actions a,
  .floating-actions button {
    min-width: 0;
    padding: 0 6px;
    font-size: 10px;
  }
}
