/* ================================================================
   AUTHLETICWEAR V2 — HOMEPAGE
   Premium editorial activewear aesthetic
   Black/white dominance, Work Sans, full-bleed imagery
   ================================================================ */


/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */

.v2-hero {
   position: relative;
   width: 100%;
   height: 92vh;
   min-height: 520px;
   max-height: 900px;
   overflow: hidden;
   background: #000;
}

.v2-hero__media {
   position: absolute;
   inset: 0;
   z-index: 1;
}

.v2-hero__media img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: 50% 0%;
   display: block;
}

.v2-hero__overlay {
   position: absolute;
   inset: 0;
   z-index: 2;
   background: linear-gradient(0deg,
         rgba(0, 0, 0, 0.72) 0%,
         rgba(0, 0, 0, 0.15) 40%,
         rgba(0, 0, 0, 0) 65%);
   display: flex;
   align-items: flex-end;
   justify-content: center;
   padding: 0 24px 50px;
}

.v2-hero__content {
   text-align: center;
   max-width: 1440px;
}

.v2-hero__kicker {
   display: inline-block;
   font-size: 11px;
   font-weight: 700;
   letter-spacing: 0.25em;
   text-transform: uppercase;
   color: rgba(255, 255, 255, 0.7);
   margin-bottom: 16px;
}

.v2-hero__title {
   font-family: 'Work Sans', sans-serif;
   font-size: clamp(2.2rem, 5vw, 3.6rem);
   font-weight: 800;
   line-height: 1.08;
   color: #fff;
   letter-spacing: -0.01em;
   margin: 0 0 15px;
   text-transform: uppercase;
}

.v2-hero__title span {
   text-decoration: underline;
   display: inline-block;
}

.v2-hero_subtitle {
   color: white;
   font-weight: 400;
   font-style: italic;
}

.rating-note {
   display: flex;
   align-items: center;
   gap: 13px;
   justify-content: center;
   margin-top: 7px;
   margin-bottom: 20px;
   flex-direction: column;
}

.v2-hero_subtitle.rating-note-text {
   font-size: 10px;
   color: rgba(255, 255, 255, 0.75);
   font-weight: bold;
}


/* ══════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════ */

.v2-btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   font-family: 'Work Sans', sans-serif;
   font-weight: 700;
   font-size: 13px;
   letter-spacing: 0.16em;
   text-transform: uppercase;
   text-decoration: none;
   border: none;
   cursor: pointer;
   transition: all 0.25s ease;
}

.v2-btn--primary {
   background: #fff;
   color: #000;
   padding: 18px 48px;
   border: 2px solid #fff;
}

.v2-btn--primary:hover {
   background: transparent;
   color: #fff;
}

.v2-btn--outline {
   background: transparent !important;
   color: #000 !important;
   padding: 14px 32px !important;
   border-bottom: 2px solid #000 !important;
}

.v2-btn--outline:hover {
   background: #000 !important;
   color: #fff !important;
}

.v2-btn--white {
   background: #fff;
   color: #000;
   padding: 18px 48px;
   border: 2px solid #fff;
}

.v2-btn--white:hover {
   background: transparent;
   color: #fff;
   border-color: #fff;
}

.v2-btn--lg {
   padding: 20px 64px;
   font-size: 14px;
}

.v2-btn--full {
   width: 100%;
   max-width: 400px;
   text-align: center;
}


/* ══════════════════════════════════════════
   PRODUCTS SECTION
   ══════════════════════════════════════════ */

.v2-products {
   padding: 80px 0 60px;
   background: #fff;
}

.v2-products__cta-mobile {
   margin-top: 40px;
   text-align: center;
}

.v2-products__cta-mobile .v2-btn {
   background: #000;
   color: #fff;
   border-color: #000;
}

.v2-products__cta-mobile .v2-btn:hover {
   background: #fff;
   color: #000;
}


/* ══════════════════════════════════════════
   COLLECTION SPOTLIGHTS — Calla + Naya
   Stacked vertically. Each block:
     banner (text overlay LEFT) → 8 products → "View all" button
   ══════════════════════════════════════════ */

.v2-collection-block {
   background: #fff;
}

/* Spacing between Calla block and Naya block */
.v2-collection-block+.v2-collection-block {
   margin-top: 20px;
}

/* ── The banner card ── */
.v2-spotlight__card {
   position: relative;
   display: block;
   width: 100%;
   aspect-ratio: 16 / 7;
   /* wide + short — left overlay works well */
   overflow: hidden;
   text-decoration: none;
   background: #0a0a0a;
}

.v2-spotlight__media {
   position: absolute;
   inset: 0;
   z-index: 1;
   transition: transform 0.8s ease;
}

.v2-spotlight__card:hover .v2-spotlight__media {
   transform: scale(1.03);
}

.v2-spotlight__media img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
}

/* Text overlay — pinned LEFT on desktop with a left-to-right gradient */
.v2-spotlight__content {
   position: absolute;
   inset: 0;
   z-index: 2;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: flex-start;
   padding: 40px 6vw;
   color: #fff;
   background: linear-gradient(90deg,
         rgba(0, 0, 0, 0.72) 0%,
         rgba(0, 0, 0, 0.35) 38%,
         rgba(0, 0, 0, 0.05) 62%,
         rgba(0, 0, 0, 0) 100%);
   max-width: 58%;
}

.v2-spotlight__kicker {
   display: block;
   font-size: 11px;
   font-weight: 700;
   letter-spacing: 0.28em;
   text-transform: uppercase;
   color: rgba(255, 255, 255, 0.75);
   margin-bottom: 10px;
}

.v2-spotlight__title {
   font-family: 'Work Sans', sans-serif;
   font-size: clamp(2rem, 4.6vw, 3.8rem);
   font-weight: 900;
   letter-spacing: -0.02em;
   text-transform: uppercase;
   line-height: 1;
   margin: 0 0 10px;
   color: #fff;
}

.v2-spotlight__subtitle {
   font-size: 14px;
   color: rgba(255, 255, 255, 0.82);
   margin-bottom: 18px;
   font-weight: 400;
   max-width: 520px;
}

.v2-spotlight__cta {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   font-size: 12px;
   font-weight: 700;
   letter-spacing: 0.18em;
   text-transform: uppercase;
   color: #fff;
   max-width: max-content;
   padding-bottom: 4px;
   border-bottom: 1px solid rgba(255, 255, 255, 0.55);
   transition: gap 0.22s ease, border-color 0.22s ease;
}

.v2-spotlight__card:hover .v2-spotlight__cta {
   gap: 12px;
   border-bottom-color: #fff;
}

/* ── Product strip after each banner ── */
.v2-collection-products {
   padding: 50px 0 70px;
}

.v2-collection-products .products-wrapper {
   width: 100%;
}

.v2-collection-products__cta {
   margin-top: 40px;
   text-align: center;
}

.v2-collection-products__cta .v2-btn {
   min-width: 220px;
}


/* ══════════════════════════════════════════
   LIFESTYLE BANNER
   ══════════════════════════════════════════ */

.v2-banner {
   position: relative;
   width: 100%;
   height: 70vh;
   min-height: 400px;
   max-height: 700px;
   overflow: hidden;
   background: #000;
}

.v2-banner__media {
   position: absolute;
   inset: 0;
}

.v2-banner__media img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: 65% 40%;
   display: block;
}

.v2-banner__overlay {
   position: absolute;
   inset: 0;
   background: linear-gradient(0deg,
         rgba(0, 0, 0, 0.65) 0%,
         rgba(0, 0, 0, 0.10) 50%,
         rgba(0, 0, 0, 0) 100%);
   display: flex;
   align-items: flex-end;
   justify-content: center;
   padding: 0 24px 60px;
}

.v2-banner__content {
   text-align: center;
}

.v2-banner__kicker {
   display: block;
   font-size: 11px;
   font-weight: 700;
   letter-spacing: 0.25em;
   text-transform: uppercase;
   color: rgba(255, 255, 255, 0.65);
   margin-bottom: 12px;
}

.v2-banner__title {
   font-family: 'Work Sans', sans-serif;
   font-size: clamp(1.8rem, 4vw, 3rem);
   font-weight: 800;
   text-transform: uppercase;
   color: #fff;
   margin: 0 0 28px;
   line-height: 1.1;
   letter-spacing: -0.01em;
}


/* ══════════════════════════════════════════
   TRUSTPILOT-STYLE REVIEWS
   ══════════════════════════════════════════ */

.v2-reviews {
   background: #f4f4f2;
   padding: 90px 0;
}

.v2-reviews__layout {
   display: grid;
   grid-template-columns: 260px 1fr;
   gap: 60px;
   align-items: start;
}

.v2-reviews__summary {
   display: flex;
   flex-direction: column;
   gap: 8px;
   padding-right: 20px;
   border-right: 1px solid rgba(0, 0, 0, 0.10);
}

.v2-reviews__score {
   font-family: 'Work Sans', sans-serif;
   font-size: clamp(3.2rem, 5vw, 4.4rem);
   font-weight: 900;
   letter-spacing: -0.04em;
   line-height: 1;
   color: #0a0a0a;
   margin-bottom: 4px;
}

.v2-reviews__stars {
   width: 130px;
   height: auto;
   display: block;
}

.v2-reviews__label {
   font-size: 10px;
   font-weight: 700;
   letter-spacing: 0.16em;
   text-transform: uppercase;
   color: #555;
   margin-top: 8px;
}

.v2-reviews__count {
   font-size: 13px;
   color: #555;
}

.v2-reviews__count strong {
   color: #0a0a0a;
   font-weight: 700;
}

.v2-reviews__cards {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 14px;
}

.v2-review-card {
   display: flex;
   flex-direction: column;
   gap: 10px;
   padding: 24px 22px;
   background: #fff;
   border: 1px solid #e8e8e6;
}

.v2-review-card__stars {
   width: 86px;
   height: auto;
   display: block;
}

.v2-review-card__title {
   font-size: 14px;
   font-weight: 700;
   color: #0a0a0a;
   line-height: 1.3;
}

.v2-review-card__body {
   font-size: 13px;
   line-height: 1.5;
   color: #333;
}

.v2-review-card__meta {
   display: flex;
   align-items: center;
   gap: 6px;
   font-size: 11px;
   color: #777;
   margin-top: 4px;
   flex-wrap: wrap;
}

.v2-review-card__author {
   font-weight: 700;
   color: #0a0a0a;
}

.v2-review-card__verified {
   display: inline-flex;
   align-items: center;
   gap: 4px;
   margin-left: auto;
   font-weight: 600;
   color: #1c8e4e;
}


/* ══════════════════════════════════════════
   OUR COMMUNITY — Full-width, 3 per row × 2 rows
   ══════════════════════════════════════════ */

.v2-community {
   background: #fff;
   padding: 60px 0 0;
}

.v2-community__header {
   text-align: center;
   max-width: 700px;
   margin: 0 auto 40px;
   padding: 0 20px;
}

.v2-community__intro {
   font-size: 14px;
   color: #666;
   margin-top: 10px;
   margin-bottom: 0;
}

.v2-community__intro a {
   color: #0a0a0a;
   font-weight: 700;
   margin-left: 6px;
   text-decoration: underline !important;
}

/* Grid: full-viewport width, 3 columns × 2 rows */
.v2-community__grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 4px;
   width: 100%;
}

.v2-community__card {
   position: relative;
   display: block;
   aspect-ratio: 1 / 1;
   overflow: hidden;
   background: #eee;
}

.v2-community__card img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
   transition: transform 0.5s ease;
}

.v2-community__card:hover img {
   transform: scale(1.06);
}

.v2-community__overlay {
   position: absolute;
   inset: 0;
   display: flex;
   align-items: center;
   justify-content: center;
   background: rgba(0, 0, 0, 0.40);
   color: #fff;
   opacity: 0;
   transition: opacity 0.25s ease;
}

.v2-community__card:hover .v2-community__overlay {
   opacity: 1;
}


/* ══════════════════════════════════════════
   SECTION HEADERS (shared)
   ══════════════════════════════════════════ */

.v2-section-header {
   display: flex;
   align-items: flex-end;
   justify-content: space-between;
   gap: 20px;
   margin-bottom: 48px;
}

.v2-section-header--center {
   justify-content: center;
   text-align: center;
}

.v2-section-header--center .v2-section-header__text {
   text-align: center;
}

.v2-section-header__kicker {
   display: block;
   font-size: 11px;
   font-weight: 700;
   letter-spacing: 0.22em;
   text-transform: uppercase;
   color: #999;
   margin-bottom: 8px;
}

.v2-section-header__title {
   font-size: clamp(2rem, 4.6vw, 3.8rem) !important;
   font-weight: 800 !important;
   letter-spacing: -0.02em;
   text-transform: uppercase;
   color: #000;
   margin: 0;
   line-height: 1.1;
}


/* ══════════════════════════════════════════
   TRUST STRIP
   ══════════════════════════════════════════ */

.v2-trust-strip {
   background: #000;
   padding: 0;
   border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.v2-trust-strip__inner {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 0;
   max-width: 1200px;
   margin: 0 auto;
   flex-wrap: wrap;
}

.v2-trust-strip__item {
   display: flex;
   align-items: center;
   gap: 10px;
   padding: 18px 28px;
   color: rgba(255, 255, 255, 0.85);
   font-size: 12px;
   font-weight: 600;
   letter-spacing: 0.08em;
   text-transform: uppercase;
   white-space: nowrap;
}

.v2-trust-strip__item svg {
   opacity: 0.6;
   flex-shrink: 0;
}

.v2-trust-strip__divider {
   width: 1px;
   height: 18px;
   background: rgba(255, 255, 255, 0.12);
}


/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */

@media (max-width: 991px) {
   .v2-hero {
      height: 75vh;
      min-height: 400px;
   }

   .v2-hero__overlay {
      padding-bottom: 50px;
   }

   .v2-hero__title {
      font-size: 2rem;
   }

   .v2-products {
      padding: 40px 0 40px;
   }

   .v2-section-header {
      margin-bottom: 0;
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
   }

   .v2-section-header--center {
      align-items: center;
   }

   .v2-banner {
      height: 55vh;
      min-height: 320px;
   }

   /* ── Collection spotlight banners — taller & bottom overlay on mobile ── */
   .v2-spotlight__card {
      aspect-ratio: 3 / 4;
   }

   .v2-spotlight__content {
      justify-content: flex-end;
      align-items: flex-start;
      padding: 36px 28px;
      max-width: 100%;
      background: linear-gradient(0deg,
            rgba(0, 0, 0, 0.78) 0%,
            rgba(0, 0, 0, 0.18) 42%,
            rgba(0, 0, 0, 0) 72%);
   }

   .v2-spotlight__subtitle {
      max-width: 100%;
   }

   .v2-collection-products {
      padding: 0 0 20px;
   }

   .v2-collection-products__cta {
      margin-top: 28px;
   }

   /* Reviews */
   .v2-reviews {
      padding: 60px 0;
   }

   .v2-reviews__layout {
      grid-template-columns: 1fr;
      gap: 32px;
   }

   .v2-reviews__summary {
      border-right: none;
      border-bottom: 1px solid rgba(0, 0, 0, 0.10);
      padding-right: 0;
      padding-bottom: 24px;
      align-items: flex-start;
   }

   .v2-reviews__cards {
      grid-template-columns: 1fr;
   }

   /* Community */
   .v2-community {
      padding: 30px 0 0;
   }
}

@media (max-width: 575px) {
   .v2-collection-block--calla .v2-spotlight__media img {
      object-position: 70% 50%;
   }

   .v2-collection-block--naya .v2-spotlight__media img {
      object-position: 80% 50%;
   }

   .v2-hero {
      height: 65vh;
      max-height: 500px;
   }

   .v2-hero .v2-hero__media img {
      object-position: 65% 100%;
   }

   .v2-hero__overlay {
      padding-bottom: 15px;
   }

   .rating-note {
      gap: 7px;
   }

   .v2-hero__kicker {
      font-size: 9px;
      margin-bottom: 10px;
   }

   .v2-hero__title {
      font-size: 1.6rem;
      margin-bottom: 5px;
   }

   .v2-hero_subtitle {
      font-size: 14px;
   }

   .v2-btn--primary,
   .v2-btn--white {
      padding: 10px 36px;
      font-size: 12px;
   }

   .v2-trust-strip__inner {
      flex-wrap: wrap;
      justify-content: center;
   }

   .v2-trust-strip__item {
      padding: 10px 14px;
      font-size: 10px;
      gap: 6px;
   }

   .v2-trust-strip__item svg {
      width: 14px;
      height: 14px;
   }

   .v2-trust-strip__divider {
      display: none;
   }

   .v2-section-header__title {
      font-size: 1.5rem;
   }

   .v2-banner__title {
      font-size: 1.5rem;
      margin-bottom: 20px;
   }

   .v2-spotlight__content {
      padding: 30px 22px;
   }

   .v2-review-card {
      padding: 20px 18px;
   }

   /* Community still 3 cols on phones — keep the 2 × 3 grid intact */
   .v2-community__grid {
      gap: 2px;
      grid-template-columns: repeat(3, 1fr);
   }
}