.hero {
  position: relative;
  min-height: 860px;
  padding: 160px 54px 80px;
  display: grid;
  grid-template-columns: minmax(420px, 0.78fr) minmax(560px, 1.18fr);
  gap: 72px;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.9) 38%, rgba(5, 5, 5, 0.5) 100%),
    radial-gradient(circle at 76% 28%, rgba(255, 255, 255, 0.15), transparent 34%),
    radial-gradient(circle at 18% 78%, rgba(184, 167, 122, 0.12), transparent 28%),
    #050505;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.92));
  pointer-events: none;
}

.hero-bg-detail {
  position: absolute;
  top: 26%;
  right: 4%;
  width: 54vw;
  height: 54vw;
  max-width: 780px;
  max-height: 780px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
  opacity: 0.75;
  pointer-events: none;
}

.hero-bg-detail::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 720px;
}

.hero-symbol {
  width: 34px;
  height: 34px;
  margin-bottom: 26px;
  display: grid;
  place-items: center;
  color: var(--color-gray-200);
  font-size: 1.25rem;
}

.hero-symbol::after {
  content: "";
  width: 1px;
  height: 42px;
  margin-top: 8px;
  display: block;
  background: rgba(255, 255, 255, 0.25);
}

.hero-kicker {
  margin-bottom: 30px;
  font-family: var(--font-title);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  color: var(--color-gray-200);
}

.hero h1 {
  font-family: var(--font-title);
  font-size: clamp(4rem, 6.1vw, 7.4rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  font-weight: 900;
}

.hero h1 span {
  color: var(--color-gold);
}

.hero-text {
  max-width: 480px;
  margin-top: 34px;
  color: var(--color-gray-200);
  font-size: 1.08rem;
  line-height: 1.85;
}

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

.btn {
  min-width: 225px;
  height: 58px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-family: var(--font-title);
  font-size: 0.76rem;
  font-weight: 700;
  transition: var(--transition);
}

.btn span {
  font-size: 1.05rem;
  transition: transform 0.25s ease;
}

.btn:hover span {
  transform: translateX(5px);
}

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

.btn-primary:hover {
  background: var(--color-gold);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(12px);
}

.btn-outline:hover {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
}

.hero-collection-line {
  margin-top: 58px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.hero-collection-line p {
  color: var(--color-gray-200);
  text-transform: uppercase;
  letter-spacing: 0.36em;
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
}

.hero-collection-line span {
  width: 190px;
  height: 1px;
  display: block;
  background: linear-gradient(90deg, rgba(255,255,255,0.38), transparent);
}

.hero-image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.12), transparent 32%),
    radial-gradient(circle at 62% 34%, rgba(255,255,255,0.14), transparent 28%);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,5,0.32), transparent 42%),
    linear-gradient(0deg, rgba(5,5,5,0.42), transparent 38%);
  z-index: 1;
}

.campaign-placeholder {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--color-gray-200);
}

.campaign-placeholder span {
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-title);
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: 0.42em;
  color: rgba(255, 255, 255, 0.5);
}

.campaign-placeholder p {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-family: var(--font-title);
  font-size: 0.82rem;
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-height: 640px;
  display: block;
  padding-right: 86px;
}

.hero-side-values {
  position: absolute;
  right: 18px;
  top: 54%;
  transform: translateY(-50%);
  display: grid;
  justify-items: center;
  gap: 22px;
  z-index: 5;
  pointer-events: none;
}

.hero-side-values::before,
.hero-side-values::after {
  content: "";
  width: 1px;
  height: 42px;
  display: block;
  background: rgba(255, 255, 255, 0.22);
}

.hero-side-values span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.64rem;
  color: rgba(255, 255, 255, 0.78);
}

.benefits {
  position: relative;
  background: #f4f4f1;
  color: var(--color-black);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.benefits::before {
  content: "WISC · FAITH IN PURPOSE";
  position: absolute;
  top: 18px;
  left: 54px;
  font-family: var(--font-title);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.38em;
  color: rgba(0, 0, 0, 0.28);
  text-transform: uppercase;
}

.benefit-card {
  min-height: 230px;
  padding: 58px 34px 42px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 24px;
  align-items: start;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.benefit-card:last-child {
  border-right: none;
}

.benefit-card:hover {
  background: #ffffff;
}

.benefit-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.22);
  border-radius: 50%;
}

.benefit-icon span {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
}

.benefit-number {
  margin-bottom: 16px;
  font-family: var(--font-title);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: rgba(0, 0, 0, 0.35);
}

.benefit-card h3 {
  margin-bottom: 14px;
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 1rem;
  font-weight: 800;
}

.benefit-card p:not(.benefit-number) {
  max-width: 250px;
  color: #333333;
  font-size: 0.92rem;
  line-height: 1.75;
}

.featured-section {
  padding: 88px 54px 110px;
  background: #f4f4f1;
  color: var(--color-black);
}

.section-heading {
  max-width: 980px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading p {
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-family: var(--font-title);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--color-gray-500);
}

.section-heading h2 {
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.1;
  font-weight: 900;
}

.section-heading span {
  display: block;
  margin-top: 12px;
  color: #555;
  font-size: 0.98rem;
}

.products-preview {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.products-preview-empty {
  max-width: var(--container);
  margin: 0 auto;
  padding: 48px;
  border-radius: 12px;
  background: #fff;
  text-align: center;
  color: #555;
}

.product-card {
  min-width: 0;
}

.product-image-area {
  position: relative;
  height: 430px;
  overflow: hidden;
  border-radius: 8px;
  background: #dededb;
  isolation: isolate;
}

.product-image-link {
  position: absolute;
  inset: 0;
  display: block;
}

.product-image-area::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.28)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

@media (hover: hover) {
  .product-card:hover .product-image-area::after {
    opacity: 1;
  }
}

.product-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 4;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #111;
  font-family: var(--font-title);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.product-badge-dark {
  background: rgba(5, 5, 5, 0.82);
  color: #fff;
}

.product-favorite {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: #111;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.18rem;
  transition: transform 0.25s ease, background 0.25s ease;
}

.product-favorite:hover {
  transform: scale(1.08);
  background: #fff;
}

.product-image {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: transform 0.45s ease, filter 0.45s ease;
}

@media (hover: hover) {
  .product-card:hover .product-image {
    transform: scale(1.045);
    filter: contrast(1.04);
  }
}

.product-image span {
  position: relative;
  z-index: 2;
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.product-image-dark {
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.16), transparent 30%),
    linear-gradient(135deg, #202020, #050505);
  color: rgba(255, 255, 255, 0.64);
}

.product-image-light {
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.85), transparent 34%),
    linear-gradient(135deg, #eee9df, #cfc8ba);
  color: rgba(0, 0, 0, 0.42);
}

.product-image-hoodie {
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.14), transparent 28%),
    linear-gradient(135deg, #151515, #000000);
  color: rgba(255, 255, 255, 0.52);
}

.product-image-cap {
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.2), transparent 30%),
    linear-gradient(135deg, #242424, #101010);
  color: rgba(255, 255, 255, 0.58);
}

.product-image::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.6s ease, transform 0.8s ease;
  z-index: 1;
}

.product-image-dark::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.55), transparent 45%),
    radial-gradient(circle at 42% 24%, rgba(255, 255, 255, 0.35), transparent 24%),
    linear-gradient(145deg, #000000 0%, #333333 48%, #070707 100%);
}

.product-image-light::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.45), transparent 45%),
    radial-gradient(circle at 52% 28%, rgba(255, 255, 255, 1), transparent 24%),
    linear-gradient(145deg, #bfb39d 0%, #f7f1e6 48%, #d1c3aa 100%);
}

.product-image-hoodie::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), transparent 45%),
    radial-gradient(circle at 45% 24%, rgba(255, 255, 255, 0.28), transparent 24%),
    linear-gradient(145deg, #000000 0%, #292929 52%, #020202 100%);
}

.product-image-cap::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.48), transparent 45%),
    radial-gradient(circle at 50% 25%, rgba(255, 255, 255, 0.42), transparent 24%),
    linear-gradient(145deg, #080808 0%, #3b3b3b 52%, #111111 100%);
}

@media (hover: hover) {
  .product-card:hover .product-image::before {
    animation: productImageSwap 4s ease-in-out infinite;
  }
}

@media (hover: hover) {
  .product-card:hover .product-image span {
    animation: productTextSwap 4s ease-in-out infinite;
  }
}

@keyframes productImageSwap {
  0% {
    opacity: 0;
    transform: scale(1.02) translateY(0);
  }

  12% {
    opacity: 1;
    transform: scale(1.08) translateY(-6px);
  }

  78% {
    opacity: 1;
    transform: scale(1.13) translateY(-10px);
  }

  100% {
    opacity: 0;
    transform: scale(1.02) translateY(0);
  }
}

@keyframes productTextSwap {
  0% {
    opacity: 1;
    transform: scale(1);
    letter-spacing: 0.34em;
  }

  12% {
    opacity: 0.55;
    transform: scale(0.96);
    letter-spacing: 0.42em;
  }

  78% {
    opacity: 0.55;
    transform: scale(0.96);
    letter-spacing: 0.42em;
  }

  100% {
    opacity: 1;
    transform: scale(1);
    letter-spacing: 0.34em;
  }
}

.quick-view {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 5;
  height: 46px;
  display: grid;
  place-items: center;
  background: rgba(5, 5, 5, 0.86);
  color: #fff;
  border-radius: 999px;
  transform: translateY(72px);
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.quick-view span {
  font-family: var(--font-title);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (hover: hover) {
  .product-card:hover .quick-view {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (hover: hover) {
  .product-card:hover .product-badge {
    opacity: 0;
  }
}

.product-info {
  padding: 18px 4px 0;
}

.product-category {
  margin-bottom: 6px;
  font-family: var(--font-title);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gray-500);
}

.product-info h3 {
  min-height: 44px;
  font-size: 0.98rem;
  line-height: 1.4;
  font-weight: 700;
  color: #111;
}

.product-prices {
  margin-top: 12px;
}

.product-prices p {
  font-size: 1rem;
  font-weight: 800;
  color: #111;
}

.product-prices span {
  display: block;
  margin-top: 3px;
  font-size: 0.86rem;
  color: #4d4d4d;
}

.product-sizes {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.product-sizes span {
  min-width: 34px;
  height: 28px;
  padding: 0 9px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #222;
}

.featured-actions {
  max-width: var(--container);
  margin: 44px auto 0;
  display: flex;
  justify-content: flex-end;
}

.featured-actions a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111;
}

.featured-actions span {
  font-size: 1.1rem;
  transition: transform 0.25s ease;
}

.featured-actions a:hover span {
  transform: translateX(5px);
}

@media (max-width: 1024px) {

  .hero {
    grid-template-columns: 1fr;
    padding-top: 150px;
  }

  .hero-side-values {
    min-height: auto;
    flex-direction: row;
    gap: 20px;
  }

  .hero-side-values::before,
  .hero-side-values::after {
    width: 48px;
    height: 1px;
  }

  .hero-side-values span {
    writing-mode: initial;
    transform: none;
    font-size: 0.62rem;
  }

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

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

  .product-image-area {
    height: 390px;
  }

}

@media (max-width: 640px) {
  .hero {
    padding: 168px 22px 60px;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 16vw, 5rem);
  }

  .hero-kicker {
    font-size: 0.7rem;
    letter-spacing: 0.32em;
  }

  .hero-text {
    font-size: 1rem;
  }

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

  .btn {
    width: 100%;
  }

  .hero-collection-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-collection-line span {
    width: 100%;
  }

  .hero-side-values {
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .benefits::before {
  left: 22px;
  top: 16px;
  font-size: 0.54rem;
  }

  .benefit-card {
    min-height: auto;
    padding: 56px 24px 34px;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .benefit-icon {
    width: 48px;
    height: 48px;
  }

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

  .featured-section {
    padding: 70px 22px 84px;
  }

  .product-image-area {
    height: 360px;
  }

  .featured-actions {
    justify-content: flex-start;
  }
}

.drop-preview-section {
  padding: 96px 32px;
  background: #f5f5f3;
}

.drop-preview-section .section-heading h2 {
  color: #111;
}

.drop-preview-section .section-heading p {
  color: rgba(0, 0, 0, 0.48);
}

.drop-preview-section .section-heading span {
  color: #555;
}

.drop-preview-grid {
  max-width: 1380px;
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.drop-preview-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
}

.drop-preview-image-wrap {
  position: relative;
  background: #eceae5;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.drop-preview-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: blur(12px);
  transform: scale(1.05);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.drop-preview-card:hover .drop-preview-image {
  filter: blur(8px);
  transform: scale(1.08);
}

.drop-preview-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.42),
    rgba(0, 0, 0, 0.18)
  );
}

.drop-preview-overlay span {
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.drop-preview-info {
  padding: 18px 18px 22px;
}

.drop-preview-info .product-category {
  margin-bottom: 10px;
  color: #111;
  font-family: var(--font-title);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.drop-preview-info h3 {
  min-height: 46px;
  color: #111;
  font-size: 0.95rem;
  line-height: 1.35;
  font-weight: 800;
}

.drop-preview-info .product-prices {
  margin-top: 16px;
}

.drop-preview-info .product-prices p {
  color: #111;
  font-size: 1.05rem;
  font-weight: 900;
}

.drop-preview-info .product-prices span {
  color: #444;
}

@media (max-width: 1200px) {
  .drop-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .drop-preview-grid {
    grid-template-columns: 1fr;
  }
}

.header-icon-link {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #f4efe6;
}

.header-icon-link svg {
  width: 19px;
  height: 19px;
}

.hero-image-card {
  position: relative;
  min-height: 520px;
  max-height: 560px;
  border-radius: 24px;
  overflow: hidden;
  background: radial-gradient(circle at center, #4a4a4a 0%, #222 100%);
}

.hero-drop-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: blur(14px);
  transform: scale(1.08);
  opacity: 0.6;
}

.hero-pictogram {
  position: absolute;
  width: 110px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.95;
}

.hero-preview-label {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-48%);
  width: 270px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
  font-family: var(--font-title);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  z-index: 4;
}

.hero-image-card {
  background: #d8d8d4;
}

.hero-image-card::before {
  display: none;
}

.hero-image-overlay {
  display: none;
}

.hero-drop-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: blur(14px);
  transform: scale(1.02);
  opacity: 0.82;
}

.hero-title {
  max-width: 760px;
}

.hero-title span,
.hero-title em {
  display: block;
}

.hero-title em {
  font-style: normal;
  color: var(--color-gold);
}

.hero-image-card-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  background: 
  linear-gradient(180deg, #d9d9d6 0%, #d3d3cf 100%);
  overflow: hidden;
  position: relative;
}

.hero-main-symbol {
  width: min(340px, 48%);
  height: auto;
  display: block;
  object-fit: contain;
  opacity: 1;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.18));
  transform: translateX(-10px);
  z-index: 2;
}

/* Ajuste de respiro após ocultar a seção de revelação */
.benefits {
  margin-top: 56px;
}

/* Ajuste de respiro entre benefícios e coleção em destaque */
.featured-section {
  padding-top: 80px;
}

/* Ajuste de respiro após ocultar a seção de revelação */
.benefits {
  margin-top: 56px;
}

/* Ajuste fino — diminuir altura dos cards de benefícios */
.benefit-card {
  min-height: 200px;
  padding-top: 50px;
  padding-bottom: 70px;
  align-items: flex-start;
}

.benefit-card .benefit-icon {
  margin-top: 4px;
}

.benefit-card h3 {
  margin-top: 4px;
}

.benefit-card p:last-child {
  margin-top: 10px;
}

/* Ajuste de respiro entre benefícios e coleção em destaque */
.featured-section {
  padding-top: 80px;
}

/* Fase 10.0.4.0 — ajuste mobile da home */
@media (max-width: 720px) {
  .hero {
    min-height: auto;
    padding: 132px 18px 56px;
    overflow: hidden;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 2;
  }

  .hero-kicker {
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    line-height: 1.5;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3.2rem, 18vw, 5.1rem);
    line-height: 0.9;
    letter-spacing: 0.02em;
    word-break: normal;
    overflow-wrap: normal;
  }

  .hero h1 span,
  .hero h1 em {
    display: block;
  }

  .hero-text {
    max-width: 320px;
    margin-top: 24px;
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .hero-actions {
    width: 100%;
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 56px;
    justify-content: center;
  }

  .hero-collection-line {
    margin-top: 34px;
    width: 100%;
    display: grid;
    gap: 12px;
  }

  .hero-collection-line span {
    width: 100%;
  }

  .hero-image-card {
    position: relative;
    width: 100%;
    min-height: 360px;
    margin-top: 46px;
    border-radius: 26px;
  }

  .hero-image-card-symbol {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-main-symbol {
    width: 118px;
    max-width: 42%;
  }

  .hero-preview-label {
    left: 50%;
    right: auto;
    bottom: 28px;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  .hero-side-values {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero-side-values span {
    writing-mode: initial;
    transform: none;
    font-size: 0.58rem;
    letter-spacing: 0.22em;
  }

  .benefits {
    margin-top: 0;
  }
}

/* Fase 10.0.4.0 — ajuste fino da hero mobile */
@media (max-width: 720px) {
  .hero {
    display: block;
    min-height: auto;
    padding: 160px 18px 64px;
    overflow: hidden;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    display: block;
    position: relative;
    z-index: 2;
  }

  .hero-symbol {
    margin-top: 0;
    margin-bottom: 28px;
    position: relative;
    z-index: 3;
  }

  .hero-kicker {
    margin-top: 0;
    font-size: 0.6rem;
    line-height: 1.7;
    letter-spacing: 0.28em;
  }

  .hero h1 {
    width: 100%;
    max-width: 100%;
    margin-top: 28px;
    font-size: clamp(2.75rem, 13.5vw, 3.85rem);
    line-height: 0.95;
    letter-spacing: 0.01em;
    overflow: visible;
  }

  .hero h1 span,
  .hero h1 em {
    display: block;
  }

  .hero-text {
    max-width: 320px;
    margin-top: 28px;
    font-size: 0.96rem;
    line-height: 1.75;
  }

  .hero-actions {
    width: 100%;
    max-width: 100%;
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 58px;
    padding-left: 18px;
    padding-right: 18px;
    justify-content: center;
    text-align: center;
  }

  .hero-collection-line {
    width: 100%;
    margin-top: 36px;
    display: grid;
    gap: 14px;
  }

  .hero-collection-line p {
    white-space: normal;
    line-height: 1.6;
  }

  .hero-collection-line span {
    width: 100%;
  }

  .hero-image-card {
    position: relative !important;
    inset: auto !important;
    right: auto !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;

    width: 100%;
    max-width: 100%;
    min-height: 420px;
    margin-top: 48px;
    border-radius: 28px;
    overflow: hidden;
  }

  .hero-image-card-symbol {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-main-symbol {
    width: 116px;
    max-width: 40%;
  }

  .hero-preview-label {
    left: 50%;
    right: auto;
    bottom: 32px;
    transform: translateX(-50%);
    max-width: calc(100% - 48px);
    white-space: nowrap;
    text-align: center;
  }

  .hero-side-values {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;

    width: 100%;
    margin-top: 24px;
    padding: 0 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  .hero-side-values span {
    writing-mode: initial;
    transform: none;
    font-size: 0.56rem;
    letter-spacing: 0.18em;
    white-space: nowrap;
  }
}

/* Ajuste fino — aproxima linha da coleção do card mobile */
@media (max-width: 720px) {
  .hero-collection-line {
    margin-top: 48px;
    margin-bottom: 22px;
  }

  .hero-image-card {
    margin-top: 0;
  }
}

/* Ajuste fino — valores da hero mobile */
@media (max-width: 720px) {
  .hero-side-values {
    margin-top: 26px;
    padding: 0;
    display: grid;
    grid-template-columns: 48px repeat(4, auto) 48px;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    row-gap: 0;
  }

  .hero-side-values::before,
  .hero-side-values::after {
    content: "";
    width: 48px;
    height: 1px;
    display: block;
    background: rgba(255, 255, 255, 0.24);
  }

  .hero-side-values span {
    font-size: 0.52rem;
    letter-spacing: 0.16em;
    white-space: nowrap;
  }
}


/* ================================================================
   CARROSSEL DA VITRINE — Fase 10.5.17

   Com 8 colorways, a grade fixa de 4 viraria duas fileiras altas
   empurrando o manifesto e o rodape para fora da primeira tela.

   A rolagem e' NATIVA: overflow-x mais scroll-snap. As setas so'
   empurram o container. Sem JavaScript -- ou no celular -- o dedo
   arrasta e funciona igual, o que e' o comportamento que a pessoa ja'
   espera de uma fileira de fotos.
================================================================ */

.carrossel{
    position:relative;
    display:flex;
    align-items:center;
    gap:12px;
}

.carrossel-trilho{
    flex:1;
    min-width:0;

    display:flex;
    gap:22px;

    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scroll-behavior:smooth;

    padding:4px 2px 18px;

    /* A barra de rolagem existe, mas discreta. */
    scrollbar-width:thin;
    scrollbar-color:rgba(0,0,0,.18) transparent;
}

.carrossel-trilho::-webkit-scrollbar{
    height:6px;
}

.carrossel-trilho::-webkit-scrollbar-thumb{
    border-radius:999px;
    background:rgba(0,0,0,.18);
}

.carrossel-trilho::-webkit-scrollbar-track{
    background:transparent;
}

.carrossel-item{
    flex:0 0 clamp(240px, 24vw, 300px);
    scroll-snap-align:start;
}

.carrossel-seta{
    flex-shrink:0;

    width:44px;
    height:44px;
    display:grid;
    place-items:center;

    border-radius:999px;
    border:1px solid rgba(0,0,0,.14);
    background:#fff;
    color:#111;

    font-size:1rem;
    cursor:pointer;

    transition:opacity .2s ease, transform .2s ease, border-color .2s ease;
}

.carrossel-seta:hover:not(:disabled){
    transform:translateY(-1px);
    border-color:rgba(0,0,0,.34);
}

/*
   Seta sem destino fica apagada em vez de sumir: se ela desaparecesse,
   a fileira inteira pularia de lugar a cada ponta.
*/
.carrossel-seta:disabled{
    opacity:.28;
    cursor:default;
}

/*
   Em tela de toque as setas somem. O dedo ja' arrasta, e dois botoes
   de 44px roubariam largura util de uma tela de 390px.
*/
@media (hover:none){

    .carrossel-seta{
        display:none;
    }

    .carrossel-trilho{
        gap:16px;
    }

    .carrossel-item{
        flex:0 0 78vw;
    }

}

@media (max-width:430px){

    .carrossel-item{
        flex:0 0 82vw;
    }

}


/* ================================================================
   ACABAMENTO DO CARD NA HOME — Fase 10.5.17

   Mesmo acabamento do catalogo. As regras de forma da foto e do
   coracao agora vem do global.css, porque o card e' o mesmo
   componente nas duas telas -- foi justamente a falta disso que
   deixou o coracao da home sem tamanho e a foto de costas caindo
   no fluxo.

   O que fica aqui e' so' o que e' da home: o raio e a posicao do
   botao dentro do card.
================================================================ */

.product-image-area{
    border-radius:22px;
}

.product-favorite{
    top:14px;
    right:14px;

    width:40px;
    height:40px;

    z-index:6;

    border:1px solid rgba(0,0,0,.10);
    background:rgba(255,255,255,.92);
    box-shadow:0 4px 14px rgba(0,0,0,.08);
}

.product-favorite:hover,
.product-favorite.active{
    background:#fff;
    border-color:rgba(0,0,0,.22);
}

.product-image-area::after,
.product-real-image-card{
    border-radius:inherit;
}

/* ================================================================
   FOTO DE CAMPANHA NO HERO — 07/09/2026

   Substitui o .hero-image-card-symbol (pictograma sobre fundo
   cinza). As regras antigas continuam no arquivo porque a pagina
   WISCRAL ainda usa aquele padrao.
================================================================ */

.hero-image-card-campanha {
  position: relative;
  overflow: hidden;
  background: #d8d8d4;
}

.hero-image-card-campanha::before {
  /* o brilho diagonal do card antigo clareava a foto */
  display: none;
}

.hero-campanha-foto {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  /*
   * "cover" preenche o card inteiro e corta o excedente. As duas
   * fotos ja' vem recortadas na proporcao certa, entao o corte aqui
   * e' de poucos pixels -- ele existe so' para o meio-termo, quando
   * a largura da tela nao bate exatamente com nenhum dos dois.
   */
  object-fit: cover;
  object-position: center 45%;

  display: block;
}

/*
 * A pilula "DROP 01" e' texto branco. Sobre parede clara ela some.
 * Este veu escurece so' a faixa de baixo, onde ela fica.
 */
.hero-image-card-campanha::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 5, 5, 0.55), transparent 34%);
  z-index: 1;
  pointer-events: none;
}

.hero-image-card-campanha .hero-preview-label {
  z-index: 3;
}

/* ================================================================
   A CAMPANHA COMO LINK — 07/09/2026

   O card virou <a>. Sendo <a>, ele herda cor de link, sublinhado e
   comportamento de foco do navegador -- nada disso serve aqui, entao
   e' tudo neutralizado, menos o foco visivel, que fica (quem navega
   por teclado precisa enxergar onde esta').
================================================================ */

a.hero-image-card-campanha {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;

  /* A foto cresce de leve ao passar o mouse. Movimento curto e lento:
     e' um convite, nao um sobressalto. */
  transition: transform .5s cubic-bezier(.22, .61, .36, 1);
}

a.hero-image-card-campanha:focus-visible {
  outline: 2px solid var(--color-gold, #b39b62);
  outline-offset: 4px;
}

a.hero-image-card-campanha .hero-campanha-foto {
  transition: transform .6s cubic-bezier(.22, .61, .36, 1);
}

/*
 * O convite.
 *
 * z-index 3 para ficar acima do veu escuro (::after, z-index 1) e na
 * mesma camada da pilula do drop.
 */
.hero-campanha-convite {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;

  padding: 13px 26px;
  border-radius: 999px;

  background: rgba(5, 5, 5, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  color: #fff;
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;

  pointer-events: none;
}

/*
 * ONDE EXISTE MOUSE
 *
 * O convite comeca escondido e aparece ao passar por cima. Junto, a
 * foto dá um passo em direcao a quem olha.
 */
@media (hover: hover) and (pointer: fine) {

  .hero-campanha-convite {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.96);
    transition: opacity .34s ease, transform .34s cubic-bezier(.22,.61,.36,1);
  }

  a.hero-image-card-campanha:hover .hero-campanha-convite,
  a.hero-image-card-campanha:focus-visible .hero-campanha-convite {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  a.hero-image-card-campanha:hover .hero-campanha-foto {
    transform: scale(1.045);
  }
}

/*
 * ONDE NAO EXISTE MOUSE
 *
 * No celular o convite fica sempre visivel, so' que mais discreto --
 * ele e' o unico sinal de que a foto leva a algum lugar.
 */
@media (hover: none), (pointer: coarse) {

  /*
   * NO CELULAR O CONVITE OCUPA O LUGAR DA PILULA DO DROP
   *
   * As duas juntas viravam duas pilulas empilhadas no meio da foto,
   * competindo pela atencao e tampando os modelos. A do drop repete
   * o que a linha logo acima da foto ja' diz ("NOVA COLECAO . NAO DA'
   * PRA CALAR O QUE FOI VIVIDO"); o convite e' a unica coisa ali que
   * diz o que acontece se voce tocar. Entre repetir e informar, fica
   * quem informa.
   *
   * No computador as duas continuam: la' o convite so' aparece no
   * hover, entao em repouso a pilula do drop nao disputa com nada.
   */
  .hero-image-card-campanha .hero-preview-label {
    display: none;
  }

  .hero-campanha-convite {
    /* desce para onde a pilula estava */
    top: auto;
    bottom: 28px;
    transform: translateX(-50%);

    opacity: 1;
    font-size: 0.68rem;
    padding: 12px 22px;
    letter-spacing: 0.14em;

    background: rgba(5, 5, 5, 0.56);
    border-color: rgba(255, 255, 255, 0.34);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  }
}

/*
 * Quem pediu menos animacao no sistema nao ganha nenhuma. O convite
 * continua aparecendo -- o que some e' o movimento.
 */
@media (prefers-reduced-motion: reduce) {

  a.hero-image-card-campanha,
  a.hero-image-card-campanha .hero-campanha-foto,
  .hero-campanha-convite {
    transition: none;
  }

  a.hero-image-card-campanha:hover .hero-campanha-foto {
    transform: none;
  }
}


/* ================================================================
   A BADGE PRECISA SOBREVIVER A QUALQUER FOTO — 07/09/2026

   Ela era uma pilula BRANCA com 86% de opacidade, e a foto do card
   era um mockup sobre um degrade cinza claro. Contraste suficiente,
   e nunca precisou de mais que isso.

   As fotos de campanha vieram com fundo BRANCO de estudio. Branco
   sobre branco: a pilula desaparece, sobram as letras soltas, e a
   borda dela borra na passagem para o cinza do card. E' isso que se
   ve' como "a badge esta' vazando" -- ela nao esta' fora do lugar,
   ela esta' invisivel.

   Agora ela e' escura com texto branco, que e' o mesmo tratamento da
   badge dentro da pagina do produto. Duas vantagens alem do
   contraste: fica igual nos dois lugares, e funciona sobre qualquer
   foto futura -- clara, escura ou estampada.

   Continua com transparencia (nao e' preto chapado) para nao virar um
   adesivo colado por cima da peca. 0.78 sobre branco ainda da' mais de
   10:1 de contraste com o texto -- muito acima do minimo de 4.5:1.
================================================================ */

.product-badge {
  background: rgba(5, 5, 5, 0.78);
  color: #fff;

  /* O desfoque deixa a peca respirar por tras da pilula em vez de
     sumir atras de um retangulo opaco. Onde o navegador nao suportar,
     o fundo acima ja' resolve sozinho. */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  /* Sombra curta: separa a pilula do fundo claro sem parecer um
     botao flutuando. */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}


/* ================================================================
   HOVER SO' ONDE EXISTE HOVER — 08/09/2026

   Em aparelho de toque nao existe hover de verdade, mas o navegador
   simula: ao tocar em algo ele aplica :hover e DEIXA aplicado ate' o
   proximo toque em outro lugar. E' o chamado "hover grudado".

   Sem esta cerca, tocar em qualquer lugar de um card deixava o card
   preso no estado de hover -- mostrando as costas, com zoom, e com o
   botao "VER PRODUTO" aberto -- ate' que se tocasse fora dele. E o
   botao de virar a peca nao conseguia desfazer nada, porque a regra
   de hover continuava valendo por cima da classe.

   Estava assim desde antes; so' ficava escondido porque ninguem
   costumava tocar no card sem sair da pagina em seguida.
================================================================ */
