:root {
  --black: #090909;
  --cream: #fbf8f3;
  --paper: #fff;
  --gold: #bd9654;
  --ink: #151311;
  --muted: #746d64;
  --line: #e7ded2;
  --max: 1420px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin: auto;
}
header {
  height: 84px;
  background: #080808;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #191919;
}
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  flex-direction: column;
  min-width: 180px;
}
.logo b {
  font-size: 30px;
  letter-spacing: 0.18em;
  color: #d6ae67;
  font-weight: 500;
}
.logo span {
  font-size: 7px;
  letter-spacing: 0.45em;
  color: #d6ae67;
  margin: 4px 0 0 4px;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 11px;
  font-weight: 700;
}
nav .wa {
  color: #d6ae67;
}
.menu {
  display: none;
  background: none;
  color: #fff;
  border: 0;
  font-size: 26px;
  cursor: pointer;
}
.hero {
  background:
    linear-gradient(
      90deg,
      rgba(10, 8, 7, 0.97),
      rgba(19, 14, 11, 0.88) 48%,
      rgba(56, 36, 22, 0.43)
    ),
    url("https://images.unsplash.com/photo-1615634260167-c8cdede054de?auto=format&fit=crop&w=2200&q=90")
      center/cover no-repeat;
  color: #fff;
}
.hero-grid {
  min-height: 550px;
  display: flex;
  align-items: center;
}
.hero-copy {
  max-width: 720px;
}
.kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: #d7ae67;
  margin-bottom: 15px;
}
.hero h1 {
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.045em;
  margin: 0;
}
.hero h1 em {
  font-style: normal;
  color: #d4ab67;
  font-weight: 600;
}
.hero p {
  font-size: 16px;
  line-height: 1.8;
  color: #eee5d8;
  max-width: 570px;
  margin: 24px 0;
}
.actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.btn {
  border: 1px solid transparent;
  padding: 14px 23px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}
.gold {
  background: linear-gradient(90deg, #b68b43, #d5ae68);
  color: #fff;
}
.dark {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
}
.trust {
  background: #fffaf4;
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.trust-item {
  padding: 25px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}
.trust-icon {
  width: 44px;
  height: 44px;
  border: 1px solid #b48a48;
  color: #b48a48;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: none;
}
.trust-item strong {
  font-size: 11px;
  display: block;
  margin-bottom: 5px;
}
.trust-item span {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.5;
}
section {
  padding: 56px 0;
}
.section-head {
  text-align: center;
  margin-bottom: 28px;
}
.section-head h2 {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 0;
  text-transform: uppercase;
}
.section-head h2:after {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--gold);
  display: block;
  margin: 11px auto 0;
}
.featured {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 10px 12px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: 0.2s ease;
}
.card:hover {
  box-shadow: 0 14px 34px rgba(50, 37, 16, 0.1);
  transform: translateY(-2px);
}
.card-img {
  height: 220px;
  background: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.card-img img {
  width: 94%;
  height: 94%;
  object-fit: contain;
}
.card h3 {
  font-size: 15px;
  line-height: 1.25;
  margin: 10px 0 4px;
  text-align: center;
  font-weight: 600;
}
.brand {
  text-align: center;
  font-size: 10px;
  color: #6e675f;
  min-height: 24px;
}
.price {
  text-align: center;
  font-size: 11px;
  color: #8a6a39;
  margin: 7px 0;
  min-height: 18px;
}
.price b {
  color: #181510;
  font-weight: 600;
}
.sizes {
  display: flex;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
  margin: 7px 0 9px;
}
.sizes button {
  font-size: 9px;
  border: 1px solid rgba(221, 210, 195, 0.7);
  background: rgba(255, 250, 244, 0.5);
  padding: 5px 7px;
  border-radius: 5px;
  cursor: pointer;
}
.sizes button.active {
  background: #121212;
  color: #fff;
  border-color: #121212;
}
.order {
  margin-top: auto;
  background: linear-gradient(90deg, #ba8e47, #cca65f);
  color: #fff;
  border: 0;
  border-radius: 4px;
  padding: 10px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}
.all-link {
  text-align: center;
  margin-top: 24px;
}
.all-link button,
.toolbar button,
.price-arrow {
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(172, 154, 132, 0.38);
  padding: 11px 18px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 600;
  cursor: pointer;
}
.toolbar button.active {
  background: #111;
  color: #fff;
  border-color: #111;
}
.catalog {
  display: none;
  padding-top: 10px;
}
.catalog.open {
  display: block;
}
.catalog-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
.toolbar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.price-sort {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}
.price-sort span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #766d63;
}
.price-arrow.active {
  background: rgba(189, 150, 84, 0.12);
  border-color: var(--gold);
  color: #8e682e;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.banner {
  height: 250px;
  border-radius: 7px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  padding: 34px;
  cursor: pointer;
}
.banner:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.banner.male {
  color: #fff;
  background: #171513;
}
.banner.male:before {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.1));
}
.banner.female {
  background: #f7e9e5;
}
.banner.female:before {
  background: linear-gradient(
    90deg,
    rgba(255, 235, 228, 0.96),
    rgba(255, 239, 234, 0.12)
  );
}
.category-product {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  height: 94%;
  width: 46%;
  object-fit: contain;
}
.banner-content {
  position: relative;
  z-index: 2;
}
.banner h3 {
  font-size: 30px;
  font-weight: 500;
  margin: 0 0 18px;
}
.wa-strip {
  background: linear-gradient(90deg, #f5eee4, #fff);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 27px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.wa-strip h3 {
  font-size: 18px;
  margin: 0 0 5px;
}
.wa-strip p {
  font-size: 11px;
  color: var(--muted);
  margin: 0;
}
footer {
  background: #080808;
  color: #ddd;
  padding: 40px 0 22px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 35px;
}
footer h4 {
  font-size: 9px;
  color: #c9a35f;
}
footer a,
footer p {
  font-size: 10px;
  color: #bababa;
  display: block;
  margin: 7px 0;
}
.copy {
  text-align: center;
  color: #777;
  font-size: 9px;
  margin-top: 28px;
}
.float-wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #22c55e;
  color: #fff;
  border-radius: 99px;
  padding: 13px 18px;
  font-size: 11px;
  font-weight: 700;
  z-index: 60;
}
.product-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.63);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.product-modal.open {
  display: flex;
}
.dialog {
  width: min(1120px, 100%);
  max-height: calc(100dvh - 28px);
  overflow: auto;
  background: #fff;
  position: relative;
}
.close {
  position: absolute;
  right: 14px;
  top: 12px;
  z-index: 4;
  border: 0;
  background: #fff;
  width: 40px;
  height: 40px;
  font-size: 28px;
  cursor: pointer;
}
.detail {
  display: grid;
  grid-template-columns: 60% 40%;
  min-height: 650px;
}
.media {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  padding: 32px;
  background: #fff;
  border-right: 1px solid #eee;
}
.thumbs {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.thumb {
  height: 82px;
  border: 1px solid #ddd;
  background: #fff;
  padding: 4px;
  cursor: pointer;
}
.thumb.active {
  border: 2px solid #111;
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.stage {
  position: relative;
  min-width: 0;
  display: grid;
  place-items: center;
  background: #fff;
  overflow: hidden;
}
.stage img {
  width: 90%;
  height: 560px;
  object-fit: contain;
}
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  cursor: pointer;
}
.prev {
  left: 8px;
}
.next {
  right: 8px;
}
.count {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: #111;
  color: #fff;
  padding: 6px 10px;
  border-radius: 99px;
  font-size: 10px;
}
.info {
  padding: 68px 34px 34px;
}
.info-brand {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}
.info h2 {
  font-weight: 500;
  font-size: 34px;
  line-height: 1.12;
  margin: 9px 0;
}
.type {
  font-size: 12px;
  color: #777;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}
.modal-price {
  font-size: 17px;
  margin: 22px 0;
}
.info h4 {
  font-size: 10px;
  margin: 22px 0 10px;
}
.modal-sizes {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.modal-sizes button {
  background: #fff;
  border: 1px solid #ccc;
  padding: 10px 13px;
  cursor: pointer;
}
.modal-sizes button.active {
  border: 2px solid #111;
}
.modal-order {
  width: 100%;
  margin-top: 24px;
  background: #111;
  color: #fff;
  border: 0;
  padding: 15px;
  font-weight: 700;
  cursor: pointer;
}
@media (max-width: 1180px) {
  .featured {
    grid-template-columns: repeat(3, 1fr);
  }
  .catalog-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 900px) {
  header {
    height: 70px;
  }
  nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #090909;
    padding: 22px;
    flex-direction: column;
    align-items: flex-start;
  }
  nav.open {
    display: flex;
  }
  .menu {
    display: block;
  }
  .hero-grid {
    min-height: 500px;
    text-align: center;
    justify-content: center;
  }
  .hero p {
    margin: 22px auto;
  }
  .actions {
    justify-content: center;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-item + .trust-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .split {
    grid-template-columns: 1fr;
  }
  .detail {
    grid-template-columns: 1fr;
  }
  .media {
    border-right: 0;
    border-bottom: 1px solid #eee;
  }
}
@media (max-width: 650px) {
  .wrap {
    width: min(var(--max), calc(100% - 20px));
  }
  .featured,
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .card-img {
    height: 185px;
  }
  .catalog-controls {
    flex-direction: column;
    align-items: stretch;
  }
  .price-sort {
    width: 100%;
    margin-left: 0;
    justify-content: flex-end;
  }
  .wa-strip {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .product-modal {
    padding: 6px;
  }
  .media {
    grid-template-columns: 1fr;
    padding: 48px 12px 14px;
  }
  .thumbs {
    order: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .thumb {
    height: 74px;
  }
  .stage {
    order: 1;
  }
  .stage img {
    height: 370px;
  }
  .info {
    padding: 24px 18px 28px;
  }
  .info h2 {
    font-size: 28px;
  }
}
@media (max-width: 390px) {
  .featured,
  .catalog-grid {
    grid-template-columns: 1fr;
  }
  .card-img {
    height: 245px;
  }
}

/* CORREÇÃO SOLICITADA — apenas blocos de coleção e botões de preço */
.category-product {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: 42%;
  height: 82%;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border: 1px solid rgba(189, 150, 84, 0.22);
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}
.price-arrow.active {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(172, 154, 132, 0.38);
  color: inherit;
}
@media (max-width: 650px) {
  .category-product {
    right: 4%;
    width: 44%;
    height: 76%;
    padding: 7px;
  }
}
