:root {
  --black: #050505;
  --black2: #090909;
  --card: #131313;
  --white: #f7f3ed;
  --gray: #9b9b9b;
  --muted: #5c5c5c;
  --line: rgba(255, 255, 255, .1);
  --red: #b20000;
  --red2: #d00000;
  --radius: 24px;
  --shadow: 0 34px 90px rgba(0, 0, 0, .58);
  --t: .32s ease;
  --container: min(1180px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Courier New", Courier, monospace;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: var(--container);
  margin: auto;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: .035;

  background-image:
    radial-gradient(
      circle,
      rgba(255, 255, 255, .8) 0 1px,
      transparent 1px
    );

  background-size: 9px 9px;
  mix-blend-mode: screen;
}


/* =========================================================
   HEADER
========================================================= */

.header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(5, 5, 5, .78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.brand-name {
  font-size: 13px;
  letter-spacing: 9px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 34px;
}

.nav-links a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  transition: var(--t);
}

.nav-links a:hover {
  color: var(--white);
}

.cart-btn {
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  padding: 0 16px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.5px;
  transition: var(--t);
}

.cart-btn strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  margin-left: 8px;
  background: var(--red);
  border-radius: 50%;
  font-size: 11px;
}

.cart-btn:hover {
  background: var(--white);
  color: var(--black);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--white);
  margin: 5px auto;
}


/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  padding: 86px 0 116px;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 82% 16%,
      rgba(178, 0, 0, .18),
      transparent 28%
    ),
    radial-gradient(
      circle at 6% 90%,
      rgba(255, 255, 255, .06),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #030303,
      #090909 46%,
      #111
    );
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      rgba(255, 255, 255, .025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, .025) 1px,
      transparent 1px
    );

  background-size: 84px 84px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.hero-bg-mark {
  position: absolute;
  left: -110px;
  top: 80px;
  width: 520px;
  height: 520px;
  opacity: .035;
}

.hero-bg-mark span {
  position: absolute;
  background: var(--white);
  border-radius: 10px;
}

.hero-bg-mark span:nth-child(1) {
  width: 8px;
  height: 420px;
  left: 190px;
  top: 42px;
}

.hero-bg-mark span:nth-child(2) {
  width: 440px;
  height: 8px;
  left: 38px;
  top: 330px;
}

.hero-bg-mark span:nth-child(3) {
  width: 8px;
  height: 380px;
  left: 300px;
  top: 64px;
  transform: rotate(-36deg);
  transform-origin: top;
}

.hero-bg-mark span:nth-child(4) {
  width: 240px;
  height: 8px;
  left: 214px;
  top: 246px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 78px;
  align-items: center;
}

.kicker,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--red2);
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.kicker:before,
.section-label:before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--red2);
}

.hero h1 {
  max-width: 760px;
  font-family: Georgia, serif;
  font-size: clamp(54px, 7vw, 104px);
  line-height: .9;
  letter-spacing: -4px;
}

.hero h1 em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1px rgba(247, 243, 237, .92);
}

.hero p {
  max-width: 560px;
  margin-top: 30px;
  color: var(--gray);
  font-size: 17px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 12px;
  letter-spacing: 2.3px;
  text-transform: uppercase;
  transition: var(--t);
}

.primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.primary:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-2px);
}

.secondary {
  border-color: var(--line);
  color: var(--white);
}

.secondary:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}

.hero-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 640px;
  margin-top: 58px;
}

.hero-specs div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.hero-specs strong {
  display: block;
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 7px;
}

.hero-specs span {
  font-size: 13px;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  min-height: 710px;
}

.photo-card {
  position: absolute;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 50% 30%,
      rgba(255, 255, 255, .08),
      transparent 42%
    ),
    #101010;

  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card figcaption {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  color: var(--gray);
  font-size: 12px;
  text-align: center;
  background: #101010;
}

.photo-card img:not([style*="display: none"]) + figcaption {
  display: none;
}

.main-photo {
  right: 0;
  top: 0;
  width: min(520px, 100%);
  height: 690px;
  border-radius: 34px;
}

.main-photo:after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      transparent 45%,
      rgba(0, 0, 0, .6)
    ),
    linear-gradient(
      to right,
      rgba(0, 0, 0, .22),
      transparent 46%
    );

  pointer-events: none;
}

.mini-photo {
  left: 0;
  bottom: 28px;
  width: 280px;
  height: 280px;
  border-radius: 28px;
}

.blood-line {
  position: absolute;
  right: 34px;
  bottom: 52px;
  z-index: 4;

  display: flex;
  align-items: center;
  gap: 13px;

  padding: 14px 18px;

  border: 1px solid var(--line);
  border-radius: 999px;

  background: rgba(5, 5, 5, .68);
  backdrop-filter: blur(14px);

  font-size: 11px;
  letter-spacing: 5px;
}

.blood-line span {
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(178, 0, 0, .9);
}


/* =========================================================
   MARQUEE
========================================================= */

.marquee {
  overflow: hidden;
  background: var(--red);
  padding: 26px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 62px;
  animation: marquee 20s linear infinite;
}

.marquee span {
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 6px;
  text-transform: uppercase;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}


/* =========================================================
   SEÇÕES
========================================================= */

.section {
  padding: 112px 0;
}

.collection {
  background:
    radial-gradient(
      circle at top right,
      rgba(178, 0, 0, .1),
      transparent 30%
    ),
    #070707;
}

.section-head {
  margin-bottom: 44px;
}

.split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 34px;
}

.section-head h2 {
  font-family: Georgia, serif;
  font-size: clamp(38px, 5vw, 72px);
  line-height: .95;
  letter-spacing: -2px;
}

.section-head p,
.collection p {
  max-width: 520px;
  color: var(--gray);
  line-height: 1.8;
}


/* =========================================================
   COLEÇÃO
========================================================= */

.collection-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.collection-cards article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, .045),
      rgba(255, 255, 255, .012)
    );

  transition: var(--t);
}

.collection-cards article:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, .22);
}

.collection-cards span {
  color: var(--red2);
  letter-spacing: 4px;
  font-size: 12px;
}

.collection-cards h3 {
  margin-top: 80px;
  margin-bottom: 12px;
  font-size: 25px;
}

.collection-cards p {
  color: var(--gray);
  line-height: 1.7;
}


/* =========================================================
   FILTROS
========================================================= */

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filters button {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 11px;
  transition: var(--t);
}

.filters button:hover,
.filters button.active {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}


/* =========================================================
   PRODUTOS
========================================================= */

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product-card {
  overflow: hidden;

  display: flex;
  flex-direction: column;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background: linear-gradient(
    180deg,
    #151515,
    #080808
  );

  transition: var(--t);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, .22);
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 5;

  background:
    radial-gradient(
      circle at center,
      rgba(255, 255, 255, .08),
      transparent 42%
    ),
    #111;

  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .55s ease;
}

.product-card:hover img {
  transform: scale(1.06);
}

.product-fallback {
  position: absolute;
  inset: 0;

  display: grid;
  place-items: center;

  text-align: center;

  padding: 22px;

  color: var(--gray);
  font-size: 12px;
}

.product-media img:not([style*="display: none"]) + .product-fallback {
  display: none;
}

.product-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;

  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.product-badges span {
  min-height: 28px;
  padding: 8px 10px;

  border-radius: 999px;

  background: rgba(5, 5, 5, .72);
  backdrop-filter: blur(10px);

  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.product-badges .red {
  background: var(--red);
}

.product-info {
  padding: 20px;

  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-line {
  color: var(--red2);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 10px;
  margin-bottom: 8px;
}

.product-name {
  font-size: 18px;
  margin-bottom: 9px;
}

.product-description {
  min-height: 44px;
  color: var(--gray);
  line-height: 1.6;
  font-size: 13px;
}

.size-row {
  display: flex;
  gap: 7px;
  margin-top: 16px;
}

.size-option {
  width: 34px;
  height: 32px;

  border: 1px solid var(--line);
  border-radius: 10px;

  background: transparent;
  color: var(--gray);

  font-size: 11px;

  transition: var(--t);
}

.size-option:hover,
.size-option.active {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;

  margin-top: auto;
  padding-top: 20px;
}

.price {
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
  white-space: nowrap;
}

.add-btn {
  height: 44px;
  padding: 0 18px;

  border: 0;
  border-radius: 999px;

  background: var(--white);
  color: var(--black);

  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 10px;
  white-space: nowrap;

  transition: var(--t);
}

.add-btn:hover {
  background: var(--red);
  color: #fff;
}


/* =========================================================
   DETALHES
========================================================= */

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

.details-grid article {
  position: relative;
  min-height: 480px;
  overflow: hidden;

  border: 1px solid var(--line);
  border-radius: var(--radius);

  background: #111;
}

.details-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.details-grid article:after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      transparent 44%,
      rgba(0, 0, 0, .82)
    );
}

.details-grid div {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
}

.details-grid h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.details-grid p {
  color: var(--gray);
  line-height: 1.5;
}


/* =========================================================
   ESSÊNCIA
========================================================= */

.essence {
  background:
    radial-gradient(
      circle at 15% 80%,
      rgba(178, 0, 0, .12),
      transparent 30%
    ),
    #080808;
}

.essence-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 64px;
  align-items: center;
}

.essence-photo {
  position: relative;

  min-height: 620px;

  overflow: hidden;

  border: 1px solid var(--line);
  border-radius: 34px;

  background: #111;
  box-shadow: var(--shadow);
}

.essence-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.essence-photo figcaption {
  position: absolute;
  inset: 0;

  display: grid;
  place-items: center;

  color: var(--gray);
  background: #111;
}

.essence-photo img:not([style*="display: none"]) + figcaption {
  display: none;
}

.essence-copy h2 {
  font-family: Georgia, serif;
  font-size: clamp(38px, 5vw, 72px);
  line-height: .95;
}

.essence-copy p {
  max-width: 620px;
  margin-top: 24px;

  color: var(--gray);

  line-height: 1.9;
  font-size: 17px;
}

.essence-copy blockquote {
  margin: 34px 0;
  padding-left: 24px;

  border-left: 2px solid var(--red);

  font-family: Georgia, serif;
  font-size: 26px;
  line-height: 1.25;
}

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

.values div {
  padding: 20px;

  border: 1px solid var(--line);
  border-radius: 18px;

  background: rgba(255, 255, 255, .03);
}

.values strong {
  display: block;
  margin-bottom: 8px;

  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
}

.values span {
  color: var(--gray);
  font-size: 13px;
}


/* =========================================================
   CTA FINAL
========================================================= */

.final-cta {
  padding: 70px 0;
  background: linear-gradient(90deg, #8c0000, #d00000);
}

.final-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.final-grid h2 {
  font-family: Georgia, serif;
  font-size: clamp(42px, 6vw, 80px);
  line-height: .95;
}


/* =========================================================
   CARRINHO
========================================================= */

.cart-drawer {
  position: fixed;
  top: 0;
  right: -440px;
  z-index: 120;

  width: min(440px, 100%);
  height: 100vh;
  padding: 26px;

  display: flex;
  flex-direction: column;

  background: #080808;
  border-left: 1px solid var(--line);

  transition: var(--t);
}

.cart-drawer.active {
  right: 0;
}

.cart-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 26px;
}

.cart-head span {
  color: var(--red2);
  letter-spacing: 3px;
  font-size: 11px;
  text-transform: uppercase;
}

.cart-head h3 {
  font-size: 25px;
  margin-top: 5px;
}

.cart-head button {
  width: 44px;
  height: 44px;

  border: 1px solid var(--line);
  border-radius: 50%;

  background: transparent;
  color: var(--white);

  font-size: 28px;
}

.cart-items {
  flex: 1;
  overflow: auto;
}

.empty-cart {
  color: var(--gray);
  line-height: 1.6;
  padding: 24px 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  align-items: center;

  padding: 15px 0;

  border-bottom: 1px solid var(--line);
}

.cart-thumb {
  width: 72px;
  height: 86px;

  border-radius: 14px;

  background: #121212;
  overflow: hidden;
}

.cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-info h4 {
  font-size: 14px;
  margin-bottom: 5px;
}

.cart-info span {
  display: block;

  color: var(--gray);

  font-size: 12px;

  margin-bottom: 4px;
}

.cart-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.qty-btn,
.remove-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  border-radius: 9px;
  min-width: 28px;
  height: 28px;
}

.remove-btn {
  color: var(--red2);
  padding: 0 8px;
  font-size: 11px;
}

.cart-price {
  font-weight: 800;
  white-space: nowrap;
}

.cart-footer {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  font-size: 20px;
}

.checkout {
  width: 100%;
  min-height: 54px;

  border: 0;
  border-radius: 999px;

  background: var(--red);
  color: #fff;

  text-transform: uppercase;
  letter-spacing: 2px;

  transition: var(--t);
}

.checkout:hover {
  background: var(--white);
  color: var(--black);
}

.cart-footer small {
  display: block;
  margin-top: 12px;

  color: var(--muted);

  line-height: 1.5;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 100;

  background: rgba(0, 0, 0, .72);

  opacity: 0;
  pointer-events: none;

  transition: var(--t);
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
  padding: 72px 0 34px;
  background: #030303;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr .7fr;
  gap: 40px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer p,
.footer a,
.footer-bottom {
  color: var(--gray);
}

.footer p {
  max-width: 420px;
  line-height: 1.7;
}

.footer h4 {
  margin-bottom: 18px;

  text-transform: uppercase;
  letter-spacing: 3px;

  font-size: 12px;
}

.footer a {
  display: block;
  margin-bottom: 10px;
}

.footer a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 46px;
  padding-top: 24px;

  border-top: 1px solid var(--line);

  font-size: 13px;
}


/* =========================================================
   RESPONSIVO — 1100px
========================================================= */

@media (max-width: 1100px) {

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

}


/* =========================================================
   RESPONSIVO — 980px
========================================================= */

@media (max-width: 980px) {

  .hero {
    padding: 58px 0 90px;
  }

  .hero-grid,
  .essence-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 620px;
  }

  .main-photo {
    left: 0;
    right: auto;
    width: 100%;
    height: 590px;
  }

  .mini-photo {
    width: 210px;
    height: 210px;
    left: 22px;
    bottom: -24px;
  }

  .split,
  .final-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .collection-cards,
  .details-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

}


/* =========================================================
   RESPONSIVO — 720px
========================================================= */

@media (max-width: 720px) {

  .nav {
    height: 72px;
  }

  .brand-name {
    letter-spacing: 6px;
  }

  .menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;

    top: 72px;
    left: 16px;
    right: 16px;

    display: grid;
    gap: 0;

    padding: 12px;

    border: 1px solid var(--line);
    border-radius: 18px;

    background: rgba(8, 8, 8, .96);

    transform: translateY(-18px);

    opacity: 0;
    pointer-events: none;

    transition: var(--t);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    padding: 15px;
  }

  .cart-btn {
    padding: 0 12px;
    font-size: 0;
  }

  .cart-btn:before {
    content: "Carrinho";
    font-size: 11px;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-specs,
  .values {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 540px;
  }

  .main-photo {
    height: 500px;
    border-radius: 24px;
  }

  .mini-photo {
    width: 150px;
    height: 150px;
    border-radius: 18px;
  }

  .blood-line {
    right: 18px;
    bottom: 20px;
    font-size: 9px;
    letter-spacing: 3px;
  }

  .section {
    padding: 78px 0;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .essence-photo {
    min-height: 460px;
  }

}


/* =========================================================
   SELETOR DE CORES
========================================================= */

.color-selector {
  margin-top: 18px;
}


/* TEXTO "COR: PRETA" */

.color-label {
  margin-bottom: 10px;

  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;

  color: var(--gray);
}

.color-label strong {
  margin-left: 4px;

  font-weight: 600;

  color: var(--white);
}


/* ÁREA DAS BOLINHAS */

.color-options {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 9px;
}


/* BOTÃO EXTERNO */

.color-option {
  position: relative;

  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;

  background: transparent;

  cursor: pointer;

  transition:
    transform .2s ease,
    border-color .2s ease,
    background .2s ease,
    box-shadow .2s ease;
}


/* BOLINHA DA COR */

.color-option span {
  display: block;

  width: 21px;
  height: 21px;

  border-radius: 50%;

  border: 1px solid rgba(255, 255, 255, .18);

  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, .15);
}


/* HOVER */

.color-option:hover {
  transform: scale(1.10);

  border-color: rgba(255, 255, 255, .55);

  background: rgba(255, 255, 255, .04);
}


/* =========================================================
   COR SELECIONADA
========================================================= */

.color-option.active {
  border-color: var(--white);

  background: rgba(255, 255, 255, .08);

  box-shadow:
    0 0 0 2px rgba(255, 255, 255, .05);
}


/* MARCA VERMELHA ABAIXO DA COR SELECIONADA */

.color-option.active::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: -6px;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: var(--red2);

  transform: translateX(-50%);

  box-shadow:
    0 0 10px rgba(208, 0, 0, .9);
}


/* =========================================================
   AJUSTE PARA COR BRANCA / OFF-WHITE
========================================================= */

.color-option span[style*="#f5f5f5"],
.color-option span[style*="#ffffff"],
.color-option span[style*="#fff"] {
  border-color: rgba(0, 0, 0, .22);
}


/* =========================================================
   TROCA SUAVE DA FOTO
========================================================= */

.product-main-image {
  transition:
    opacity .18s ease,
    transform .55s ease !important;
}

.product-main-image.changing {
  opacity: 0;

  transform: scale(1.03);
}


/* =========================================================
   BOTÃO ADICIONADO
========================================================= */

.add-btn.added {
  background: var(--red);
  color: #fff;
}


/* =========================================================
   MOBILE — SELETOR DE CORES
========================================================= */

@media (max-width: 720px) {

  .color-option {
    width: 40px;
    height: 40px;
  }

  .color-option span {
    width: 23px;
    height: 23px;
  }

  .color-options {
    gap: 10px;
  }

}