/* ============================================================================
 * Homepage — Light e-commerce storefront styles for Hello Hunk
 *
 * Scopes clean, high-contrast typography, premium CSS illustrations,
 * and card grids on a clean light-mode backdrop.
 * ========================================================================== */

/* ── E-COMMERCE HOMEPAGE ELEMENTS ────────────────────────────────────────── */

/* 1. Hero Section */
.wb-hero-ecommerce {
  position: relative;
  padding-block: clamp(5rem, 8vw + 2rem, 10rem);
  background: radial-gradient(circle at 80% 20%, rgba(15, 23, 42, 0.03), transparent 50%), var(--wb-color-bg);
  overflow: hidden;
  border-bottom: 1px solid var(--wb-color-border);
}

.wb-hero-ecommerce::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(15, 23, 42, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.wb-hero-content {
  position: relative;
  z-index: 1;
}

.wb-hero-title {
  font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--wb-color-ink);
  text-wrap: balance;
}

.wb-hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Premium Visual Card (Mockup for Hunk Shirt) */
.wb-hero-visual-card {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 360px;
  height: 380px;
  max-width: 100%;
  border-radius: var(--wb-radius-xl);
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border: 1px solid var(--wb-color-border);
  box-shadow: 
    0 25px 50px -12px rgba(15, 23, 42, 0.08),
    0 0 40px rgba(15, 23, 42, 0.02) inset;
  margin-inline: auto;
  overflow: hidden;
  transition: transform var(--wb-duration-base) var(--wb-ease), border-color var(--wb-duration-base) var(--wb-ease);
}

.wb-hero-visual-card:hover {
  transform: translateY(-4px);
  border-color: var(--wb-color-brand-hover);
}

.wb-shirt-mockup {
  position: relative;
  width: 160px;
  height: 220px;
  background-color: var(--wb-color-white);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 4px;
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  transition: transform var(--wb-duration-base) var(--wb-ease);
}

.wb-hero-visual-card:hover .wb-shirt-mockup {
  transform: scale(1.03);
}

/* Collar shape */
.wb-shirt-collar {
  position: absolute;
  top: -12px;
  width: 60px;
  height: 24px;
  background-color: var(--wb-color-white);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-top: 0;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 6px rgba(15, 23, 42, 0.03);
  z-index: 3;
}
.wb-shirt-collar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--wb-color-brand);
}

/* Shirt pocket */
.wb-shirt-pocket {
  position: absolute;
  top: 50px;
  left: 24px;
  width: 34px;
  height: 40px;
  border: 1.5px solid rgba(15, 23, 42, 0.06);
  border-radius: 0 0 4px 4px;
}

/* Shirt buttons placket */
.wb-shirt-buttons {
  position: absolute;
  top: 12px;
  bottom: 0;
  width: 20px;
  border-left: 1px dashed rgba(15, 23, 42, 0.08);
  border-right: 1px dashed rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--wb-space-6);
  padding-top: var(--wb-space-6);
}
.wb-shirt-buttons span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.wb-visual-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--wb-color-brand-soft);
  filter: blur(80px);
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;
}

/* Responsive adjustments for hero */
@media (max-width: 1023px) {
  .wb-hero-ecommerce {
    padding-block: clamp(4rem, 7vw + 1rem, 6rem);
    text-align: center;
  }
  .wb-hero-content {
    margin-bottom: var(--wb-space-8);
  }
  .wb-hero-visual-card {
    width: 300px;
    height: 320px;
  }
  .wb-shirt-mockup {
    width: 130px;
    height: 180px;
  }
  .wb-shirt-collar {
    width: 50px;
    height: 20px;
    top: -10px;
  }
}

/* 2. Features Strip */
.wb-features-strip {
  border-bottom: 1px solid var(--wb-color-border);
  background-color: var(--wb-color-bg-soft);
}

.wb-feature-item {
  background-color: var(--wb-color-white);
  border: 1px solid var(--wb-color-border);
  border-radius: var(--wb-radius-lg);
  padding: var(--wb-space-6) var(--wb-space-5);
  text-align: center;
  box-shadow: var(--wb-shadow-xs);
  transition: transform var(--wb-duration-base) var(--wb-ease), box-shadow var(--wb-duration-base) var(--wb-ease);
}

.wb-feature-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--wb-shadow-md);
}

.wb-feature-icon {
  font-size: 32px;
  margin-bottom: var(--wb-space-3);
  line-height: 1;
}

.wb-feature-item h3 {
  font-size: var(--wb-text-base);
  font-weight: var(--wb-fw-semibold);
  margin-bottom: var(--wb-space-2);
  color: var(--wb-color-ink);
}

/* 3. Category Grid Cards */
.wb-categories-section {
  background-color: var(--wb-color-white);
}

.wb-category-card {
  position: relative;
  border-radius: var(--wb-radius-lg);
  background-color: var(--wb-color-bg-soft);
  border: 1px solid var(--wb-color-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  aspect-ratio: 4 / 3;
  box-shadow: var(--wb-shadow-xs);
}

.wb-category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform var(--wb-duration-base) var(--wb-ease), opacity var(--wb-duration-base) var(--wb-ease);
}

.wb-category-card:hover img {
  transform: scale(1.03);
  opacity: 0.95;
}

.wb-category-card__content {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: var(--wb-space-5);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.98) 35%, rgba(255, 255, 255, 0.8) 75%, transparent 100%);
  width: 100%;
  border-top: 1px solid rgba(15, 23, 42, 0.04);
}

.wb-category-card__content h3 {
  color: var(--wb-color-ink) !important;
  font-size: var(--wb-text-base);
  margin-bottom: 2px;
  font-weight: var(--wb-fw-semibold);
}

/* 4. Brand Story Section */
.wb-brand-story-section {
  background-color: var(--wb-color-white);
  border-top: 1px solid var(--wb-color-border);
  border-bottom: 1px solid var(--wb-color-border);
}

.wb-brand-story-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wb-loom-card {
  position: relative;
  width: 100%;
  max-width: 380px;
  height: 240px;
  border-radius: var(--wb-radius-lg);
  background: linear-gradient(135deg, var(--wb-color-brand) 0%, var(--wb-color-brand-ink) 100%);
  box-shadow: var(--wb-shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--wb-space-5);
  color: var(--wb-color-white);
}

/* Diagonal woven threads graphic in CSS */
.wb-loom-threads {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 10px, #ffffff 10px, #ffffff 12px),
    repeating-linear-gradient(-45deg, transparent, transparent 10px, #ffffff 10px, #ffffff 12px);
}

.wb-loom-label {
  position: relative;
  z-index: 1;
  font-size: var(--wb-text-xs);
  letter-spacing: var(--wb-ls-wide);
  text-transform: uppercase;
  font-weight: var(--wb-fw-semibold);
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.15);
  padding: 4px 10px;
  border-radius: var(--wb-radius-full);
}

/* 5. Newsletter Form */
.wb-cta-band {
  background-color: var(--wb-color-bg-soft);
  border-bottom: 1px solid var(--wb-color-border);
}

.wb-newsletter-form input {
  padding: 0.75rem var(--wb-space-4);
  border: 1px solid var(--wb-color-border);
  border-radius: var(--wb-radius-md);
  font-family: var(--wb-font-sans);
  font-size: var(--wb-text-sm);
  background-color: var(--wb-color-white);
  color: var(--wb-color-ink);
  transition: border-color var(--wb-duration-base) var(--wb-ease);
  width: 100%;
}

.wb-newsletter-form input:focus {
  border-color: var(--wb-color-brand);
  outline: none;
}

/* ── E-COMMERCE BANNER SLIDER HERO ───────────────────────────────────────── */
.wb-hero-slider {
  position: relative;
  width: 100%;
  border-bottom: 1px solid var(--wb-color-border);
}

.wb-hero-slider__container {
  width: 100%;
  aspect-ratio: 1024 / 571; /* Exact aspect ratio of uploaded images */
  position: relative;
  background-color: #111111;
  overflow: hidden;
}

.wb-hero-slider__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: opacity var(--wb-duration-slow) var(--wb-ease), visibility var(--wb-duration-slow) var(--wb-ease);
}

.wb-hero-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.wb-hero-slider__overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}

/* Decoupled text content overlays */
.wb-hero-slider__content-outer {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  pointer-events: none; /* Let pointer events fall through to slider navigation */
}

.wb-hero-slider__content-box {
  max-width: 500px;
  width: 100%;
  pointer-events: auto; /* Re-enable pointer events inside content box */
  background: rgba(15, 23, 42, 0.65);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  backdrop-filter: blur(16px) saturate(120%);
  padding: var(--wb-space-6) var(--wb-space-8);
  border-radius: var(--wb-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 
    0 20px 25px -5px rgba(0, 0, 0, 0.3),
    0 10px 10px -5px rgba(0, 0, 0, 0.2);
}

.wb-hero-slider__text-slide {
  display: none;
}

.wb-hero-slider__text-slide.is-active {
  display: block;
  animation: wbSliderTextFade var(--wb-duration-base) var(--wb-ease-out) forwards;
}

@keyframes wbSliderTextFade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.wb-hero-slider__content-box .wb-badge {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wb-hero-slider__title {
  font-size: clamp(1.8rem, 3.5vw + 0.4rem, 3.25rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.04em;
  color: var(--wb-color-white);
  text-wrap: balance;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.wb-hero-slider__lead {
  font-size: clamp(0.95rem, 1.1vw + 0.3rem, 1.15rem);
  line-height: 1.75;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.88);
}

/* Slider navigation arrows */
.wb-hero-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: var(--wb-radius-full);
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--wb-color-white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color var(--wb-duration-fast) var(--wb-ease), transform var(--wb-duration-fast) var(--wb-ease);
}

.wb-hero-slider__nav:hover {
  background-color: var(--wb-color-white);
  color: var(--wb-color-brand);
  transform: translateY(-50%) scale(1.05);
}

.wb-hero-slider__nav--prev {
  left: var(--wb-space-6);
}

.wb-hero-slider__nav--next {
  right: var(--wb-space-6);
}

/* Slider dots */
.wb-hero-slider__dots {
  position: absolute;
  bottom: var(--wb-space-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: var(--wb-space-2);
}

.wb-hero-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: var(--wb-radius-full);
  background-color: rgba(255, 255, 255, 0.35);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background-color var(--wb-duration-fast) var(--wb-ease), width var(--wb-duration-fast) var(--wb-ease);
}

.wb-hero-slider__dot.is-active {
  background-color: var(--wb-color-white);
  width: 24px;
}

@media (max-width: 768px) {
  .wb-hero-slider {
    display: flex;
    flex-direction: column;
    height: auto;
    aspect-ratio: auto;
  }
  .wb-hero-slider__container {
    width: 100%;
    aspect-ratio: 1024 / 571;
    height: auto;
  }
  .wb-hero-slider__content-outer {
    position: static;
    display: block;
    pointer-events: auto;
    background-color: var(--wb-color-bg-soft);
    border-top: 1px solid var(--wb-color-border);
    padding: var(--wb-space-6) 0;
  }
  .wb-hero-slider__content-box {
    max-width: 100%;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    padding: 0;
    border: 0;
    box-shadow: none;
    color: var(--wb-color-ink);
  }
  .wb-hero-slider__title {
    color: var(--wb-color-ink);
    text-shadow: none;
  }
  .wb-hero-slider__lead {
    color: var(--wb-color-text-muted);
  }
  #wb-slider-explore-btn {
    background-color: var(--wb-color-white);
    border-color: var(--wb-color-border);
    color: var(--wb-color-ink);
  }
  #wb-slider-explore-btn:hover {
    background-color: var(--wb-color-bg-soft);
  }
  .wb-hero-slider__nav {
    display: none;
  }
}

/* ── PRODUCT CAROUSELS & SWIPER OVERRIDES ────────────────────────────────── */
.wb-home-carousel-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Swiper navigation custom positioning */
.wb-home-carousel-section .swiper-button-prev,
.wb-home-carousel-section .swiper-button-next {
  color: var(--wb-color-ink);
  width: 40px;
  height: 40px;
  background-color: var(--wb-color-white);
  border: 1px solid var(--wb-color-border);
  border-radius: var(--wb-radius-full);
  box-shadow: var(--wb-shadow-sm);
  transition: all var(--wb-duration-fast) var(--wb-ease);
}
.wb-home-carousel-section .swiper-button-prev::after,
.wb-home-carousel-section .swiper-button-next::after {
  font-size: 14px;
  font-weight: bold;
}
.wb-home-carousel-section .swiper-button-prev:hover,
.wb-home-carousel-section .swiper-button-next:hover {
  background-color: var(--wb-color-brand);
  color: var(--wb-color-white);
  border-color: var(--wb-color-brand);
}

.wb-home-carousel-section .swiper-pagination-bullet-active {
  background: var(--wb-color-brand) !important;
}

/* Product Card Styling inside slider */
.wb-product-card {
  position: relative;
  background-color: var(--wb-color-white);
  border: 1px solid var(--wb-color-border);
  border-radius: var(--wb-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform var(--wb-duration-base) var(--wb-ease), box-shadow var(--wb-duration-base) var(--wb-ease), border-color var(--wb-duration-base) var(--wb-ease);
}
.wb-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--wb-shadow-md);
  border-color: var(--wb-color-brand);
}

.wb-product-card__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background-color: var(--wb-color-bg-soft);
  overflow: hidden;
}

.wb-product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--wb-duration-slow) var(--wb-ease);
}
.wb-product-card:hover .wb-product-card__image {
  transform: scale(1.04);
}

.wb-product-badge {
  position: absolute;
  top: var(--wb-space-3);
  left: var(--wb-space-3);
  z-index: 2;
  font-size: 10px;
  font-weight: var(--wb-fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: var(--wb-radius-sm);
  color: var(--wb-color-white);
}

.wb-product-badge--sale { background-color: var(--wb-color-badge-sale); }
.wb-product-badge--new { background-color: var(--wb-color-badge-new); }
.wb-product-badge--bestseller { background-color: var(--wb-color-badge-bestseller); }
.wb-product-badge--popular { background-color: var(--wb-color-brand); }

.wb-product-card__content {
  padding: var(--wb-space-4);
  display: flex;
  flex-direction: column;
  gap: var(--wb-space-2);
  flex-grow: 1;
}

.wb-product-card__title {
  font-size: var(--wb-text-sm);
  font-weight: var(--wb-fw-semibold);
  line-height: 1.4;
  margin: 0;
}
.wb-product-card__title a {
  color: var(--wb-color-ink);
  text-decoration: none;
  transition: color var(--wb-duration-fast) var(--wb-ease);
}
.wb-product-card__title a:hover {
  color: var(--wb-color-brand);
}

.wb-product-card__price {
  font-size: var(--wb-text-sm);
  font-weight: var(--wb-fw-bold);
  color: var(--wb-color-brand);
}
.wb-product-card__price del {
  color: var(--wb-color-text-muted);
  font-weight: var(--wb-fw-medium);
  margin-right: var(--wb-space-2);
}

/* ── INSTAGRAM UGC GRID ──────────────────────────────────────────────────── */
.wb-instagram-ugc {
  background-color: var(--wb-color-bg-soft);
  border-top: 1px solid var(--wb-color-border);
  border-bottom: 1px solid var(--wb-color-border);
}

.wb-instagram-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--wb-radius-lg);
  overflow: hidden;
  box-shadow: var(--wb-shadow-xs);
  border: 1px solid var(--wb-color-border);
  cursor: pointer;
}

.wb-instagram-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--wb-duration-slow) var(--wb-ease);
}

.wb-instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--wb-duration-base) var(--wb-ease);
  z-index: 2;
}
.wb-instagram-overlay span {
  color: var(--wb-color-white);
  font-size: var(--wb-text-sm);
  font-weight: var(--wb-fw-semibold);
  letter-spacing: 0.05em;
  transform: translateY(8px);
  transition: transform var(--wb-duration-base) var(--wb-ease);
}

.wb-instagram-card:hover .wb-instagram-img {
  transform: scale(1.04);
}
.wb-instagram-card:hover .wb-instagram-overlay {
  opacity: 1;
}
.wb-instagram-card:hover .wb-instagram-overlay span {
  transform: translateY(0);
}

/* ── EDITORIAL SPLIT BANNERS ─────────────────────────────────────────────── */
.wb-editorial-banners {
  padding-block: var(--wb-space-6);
}

.wb-editorial-card {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--wb-radius-lg);
  overflow: hidden;
  border: 1px solid var(--wb-color-border);
  box-shadow: var(--wb-shadow-xs);
  transition: all var(--wb-duration-base) var(--wb-ease);
}

.wb-editorial-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--wb-shadow-md);
}

.wb-editorial-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--wb-duration-slow) var(--wb-ease);
}

.wb-editorial-card:hover .wb-editorial-card__img {
  transform: scale(1.03);
}

.wb-editorial-card__content {
  position: absolute;
  inset: 0;
  padding: var(--wb-space-6) var(--wb-space-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.4) 60%, rgba(15, 23, 42, 0) 100%);
  z-index: 2;
  color: var(--wb-color-white);
}

.wb-editorial-card__eyebrow {
  font-size: 10px;
  font-weight: var(--wb-fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}

.wb-editorial-card__title {
  font-size: var(--wb-text-xl);
  font-weight: var(--wb-fw-bold);
  color: var(--wb-color-white);
  margin: 0 0 8px !important;
  line-height: 1.2;
}

.wb-editorial-card__desc {
  font-size: var(--wb-text-sm);
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 16px !important;
  max-width: 34ch;
  line-height: 1.5;
}

.wb-editorial-card .wb-btn--secondary {
  border-color: var(--wb-color-white);
  color: var(--wb-color-white);
  background: transparent;
  padding: 8px 16px !important;
  font-size: 11px !important;
}

.wb-editorial-card .wb-btn--secondary:hover {
  background: var(--wb-color-white);
  color: var(--wb-color-ink);
}

/* ── CUSTOMER TESTIMONIALS SLIDER ────────────────────────────────────────── */
.wb-testimonials-section {
  background-color: var(--wb-color-bg-soft);
  border-top: 1px solid var(--wb-color-border);
  border-bottom: 1px solid var(--wb-color-border);
}

.wb-testimonials-swiper {
  padding-bottom: 40px !important;
}

.wb-testimonial-card {
  background-color: var(--wb-color-white);
  border: 1px solid var(--wb-color-border);
  border-radius: var(--wb-radius-lg);
  padding: var(--wb-space-6) var(--wb-space-8);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: var(--wb-shadow-sm);
}

.wb-testimonial-card__rating {
  font-size: 14px;
  margin-bottom: var(--wb-space-3);
  letter-spacing: 2px;
}

.wb-testimonial-card__text {
  font-size: var(--wb-text-base);
  font-style: italic;
  line-height: 1.6;
  color: var(--wb-color-ink);
  margin: 0 0 var(--wb-space-4) !important;
}

.wb-testimonial-card__author {
  font-size: var(--wb-text-sm);
  font-weight: var(--wb-fw-bold);
  color: var(--wb-color-ink);
  margin: 0 !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.wb-verified-badge {
  font-size: 10px;
  color: var(--wb-color-success);
  font-weight: var(--wb-fw-semibold);
  background-color: rgba(22, 163, 74, 0.08);
  padding: 2px 6px;
  border-radius: var(--wb-radius-full);
}

/* ── HOMEPAGE ACCORDION FAQS ─────────────────────────────────────────────── */
.wb-faq-accordion-section {
  border-bottom: 1px solid var(--wb-color-border);
}

.wb-faq-item {
  background-color: var(--wb-color-white);
  border: 1px solid var(--wb-color-border);
  border-radius: var(--wb-radius-md);
  margin-bottom: var(--wb-space-3);
  overflow: hidden;
  transition: all var(--wb-duration-fast) var(--wb-ease);
}

.wb-faq-item[open] {
  border-color: var(--wb-color-brand);
  box-shadow: var(--wb-shadow-sm);
}

.wb-faq-question {
  font-size: var(--wb-text-sm);
  font-weight: var(--wb-fw-semibold);
  color: var(--wb-color-ink);
  padding: var(--wb-space-4) var(--wb-space-5);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wb-faq-question::-webkit-details-marker {
  display: none;
}

.wb-faq-question::after {
  content: "+";
  font-size: 18px;
  font-weight: var(--wb-fw-light);
  color: var(--wb-color-text-muted);
  transition: transform var(--wb-duration-fast) var(--wb-ease);
}

.wb-faq-item[open] .wb-faq-question::after {
  content: "\2212"; /* Minus sign */
  transform: rotate(180deg);
  color: var(--wb-color-brand);
}

.wb-faq-answer {
  padding: 0 var(--wb-space-5) var(--wb-space-4);
}

.wb-faq-answer p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--wb-color-text-muted);
  margin: 0 !important;
}

/* Responsive adjustments for editorial grid */
@media (max-width: 768px) {
  .wb-editorial-card {
    aspect-ratio: auto;
    height: 180px;
  }

  .wb-editorial-card__content {
    padding: var(--wb-space-4) var(--wb-space-5);
  }

  .wb-editorial-card__title {
    font-size: var(--wb-text-base);
  }

  .wb-editorial-card__desc {
    display: none; /* Hide desc on mobile card to keep neat */
  }
}

/* ============================================================================
 * PREMIUM REFINEMENT LAYER  (homepage only — scoped to body.home)
 * Elevates the storefront toward a high-end editorial menswear aesthetic:
 * an elegant serif for display headings, luxury section headers, calmer
 * hairline surfaces, wider tracking, and more air. Purely additive — every
 * rule is scoped under .home so no other template is touched.
 * ========================================================================== */

/* ── Elegant serif for display headings ──────────────────────────────────── */
.home .wb-hero-slider__title,
.home .wb-categories-section h2,
.home .wb-brand-story-content h2,
.home .wb-testimonials-section h2,
.home .wb-instagram-ugc h2,
.home .wb-faq-accordion-section h2,
.home .wb-category-card__content h3,
.home .wb-editorial-card__title,
.home .wb-testimonial-card__text {
  font-family: var(--wb-font-serif);
  font-weight: 600;
  letter-spacing: 0;
}

/* ── Luxury section header (eyebrow + serif title) ───────────────────────── */
.home .wb-text-eyebrow {
  display: inline-block;
  font-family: var(--wb-font-sans);
  font-size: 11px;
  font-weight: var(--wb-fw-semibold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wb-color-text-muted);
  margin-bottom: var(--wb-space-3);
}

/* thin accent rule under centered section titles */
.home .wb-text-center > h2 {
  position: relative;
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  line-height: 1.1;
  color: var(--wb-color-ink);
  padding-bottom: var(--wb-space-4);
  margin-bottom: 0;
}
.home .wb-text-center > h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 44px;
  height: 2px;
  transform: translateX(-50%);
  background: var(--wb-color-ink);
}

/* give every section more editorial breathing room */
.home .wb-section {
  padding-block: clamp(4.5rem, 7vw + 1rem, 8rem);
}
.home .wb-mb-8 { margin-bottom: var(--wb-space-9) !important; }

/* ── Hero: refined frosted content box + serif headline ──────────────────── */
.home .wb-hero-slider__content-box {
  background: rgba(17, 17, 17, 0.55);
  -webkit-backdrop-filter: blur(18px) saturate(115%);
  backdrop-filter: blur(18px) saturate(115%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--wb-radius-md);
  padding: var(--wb-space-8) var(--wb-space-9);
}
.home .wb-hero-slider__title {
  font-size: clamp(2.1rem, 3.6vw + 0.5rem, 3.6rem);
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 600;
}
.home .wb-hero-slider__content-box .wb-badge {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  border-radius: 0;
  padding: 6px 14px;
  font-size: 10px;
  letter-spacing: 0.2em;
}

/* ── Features strip: flatten into airy hairline tiles ────────────────────── */
.home .wb-features-strip {
  background-color: var(--wb-color-white);
}
.home .wb-feature-item {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: var(--wb-space-4) var(--wb-space-5);
  border-right: 1px solid var(--wb-color-border);
}
.home .wb-grid--3 > .wb-feature-item:last-child { border-right: 0; }
.home .wb-feature-item:hover { transform: none; box-shadow: none; }
.home .wb-feature-icon { font-size: 26px; opacity: 0.9; }
.home .wb-feature-item h3 {
  font-size: var(--wb-text-base);
  font-weight: var(--wb-fw-semibold);
  letter-spacing: 0.01em;
}
@media (max-width: 768px) {
  .home .wb-feature-item { border-right: 0; border-bottom: 1px solid var(--wb-color-border); }
  .home .wb-grid--3 > .wb-feature-item:last-child { border-bottom: 0; }
}

/* ── Category cards: taller, cinematic, editorial titles ─────────────────── */
.home .wb-category-card {
  aspect-ratio: 3 / 4;
  border-radius: var(--wb-radius-sm);
  border-color: var(--wb-color-border-soft);
}
.home .wb-category-card img { opacity: 1; }
.home .wb-category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(10,10,10,0.72) 0%, rgba(10,10,10,0.15) 45%, rgba(10,10,10,0) 70%);
  transition: background var(--wb-duration-base) var(--wb-ease);
}
.home .wb-category-card:hover::after {
  background: linear-gradient(0deg, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.25) 55%, rgba(10,10,10,0.05) 80%);
}
.home .wb-category-card__content {
  background: transparent;
  border-top: 0;
  padding: var(--wb-space-6);
}
.home .wb-category-card__content h3 {
  color: #fff !important;
  font-size: 1.5rem;
  line-height: 1.15;
  margin-bottom: 6px;
}
.home .wb-category-card__content p { color: rgba(255,255,255,0.7) !important; }
.home .wb-category-card__content .wb-btn--link {
  color: #fff;
  font-family: var(--wb-font-sans);
  font-size: 11px;
  font-weight: var(--wb-fw-semibold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ── Editorial split banners: serif titles, refined CTA ──────────────────── */
.home .wb-editorial-card { border-radius: var(--wb-radius-sm); }
.home .wb-editorial-card__title { font-size: 1.75rem; line-height: 1.15; }
.home .wb-editorial-card__eyebrow { letter-spacing: 0.2em; }

/* ── Brand story: serif headline, tighter lede ───────────────────────────── */
.home .wb-brand-story-content h2 {
  font-size: clamp(2rem, 2.6vw + 1rem, 2.9rem);
  line-height: 1.12;
}

/* ── Testimonials: large serif quote ─────────────────────────────────────── */
.home .wb-testimonial-card {
  border-color: var(--wb-color-border-soft);
  padding: var(--wb-space-8) var(--wb-space-9);
}
.home .wb-testimonial-card__text {
  font-size: clamp(1.25rem, 1.4vw + 0.9rem, 1.6rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--wb-color-ink);
}
.home .wb-testimonial-card__author { font-family: var(--wb-font-sans); }

/* ── Buttons on the homepage read as premium (uppercase, tracked) ────────── */
.home .wb-btn--primary,
.home .wb-btn--secondary {
  border-radius: var(--wb-radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: var(--wb-fw-semibold);
}

/* ── FAQ: calmer surfaces ────────────────────────────────────────────────── */
.home .wb-faq-item { border-color: var(--wb-color-border-soft); }
.home .wb-faq-question { font-size: var(--wb-text-base); }

