:root {
  /* neutrals */
  --clr-black: #000;
  --clr-white: #fff;
  --clr-grey-050: #fdfbfb;
  --clr-grey-100: #f5f2f2;
  --clr-grey-150: #f2f2f2;
  --clr-grey-200: #ebe9e9;
  --clr-grey-300: #f0f0f0;
  --clr-grey-400: #e0e0e0;
  --clr-grey-500: #ccc;
  --clr-grey-700: #777;
  --clr-grey-800: #555;
  --clr-grey-900: #333;
  --clr-grey-950: #111;

  /* transparencies */
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, .06);
  --shadow-md: 0 0.3vw 0.9vw rgba(0, 0, 0, .15);
  --shadow-lg: 0 0.4vw 1vw rgba(0, 0, 0, .10);

  --label-bg: rgba(236, 235, 235, .90);
}


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

body {
  background: var(--clr-grey-400);
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
  /* padding-top:calc(2.5vh + 50px);  */
}

@media (max-width: 768px) {
  body {
    background: var(--clr-white);
  }
}

/* MAIN CONTENT WRAPPER */
.main-content {
  /* padding: 5vh 4vw; */
  margin-top: 12vh;
  position: relative;
}

/* HERO TITLE */
.title-text h1 {
  font-size: clamp(72px, 9vw, 130px);
  /* ≤ 130 px */
  font-weight: 900;
  line-height: 1;
  color: var(--clr-black);
  margin-left: 14vw;
  /* ≈ 200 px at 1440 px */
  position: relative;
  z-index: 1;
}

.title-text .second {
  font-size: clamp(96px, 12vw, 170px);
  margin-left: 28vw;
  /* ≈ 400 px at 1440 px */
}

/* HERO ROW */
.content-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -20vh;
  /* ≈ -300 px */
  padding: 0 14vw;
  /* ≈ 200 px */
  position: relative;
  z-index: 2;
  margin-left: 7vw;
  /* ≈ 100 px */
}

/* DESCRIPTION */
.description {
  flex: 0.5;
  margin-top: 24vh;
  /* ≈ 350 px */
  margin-left: -7vw;
  /* ≈ -100 px */
}

.description p {
  font-size: clamp(22px, 2.4vw, 35px);
  color: var(--clr-black);
  margin-bottom: 2vh;
  font-weight: 300;
}

.description button {
  padding: 1.4vh 3vw;
  font-size: clamp(18px, 1.8vw, 26px);
  background: var(--clr-black);
  color: var(--clr-white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

/* JERSEY IMAGE */
.jersey-center {
  flex: 0.8;
  display: flex;
  justify-content: center;
  align-items: flex-start;

}

.jersey-center img {
  height: clamp(380px, 42vh, 600px);
  max-width: 100%;
  object-fit: cover;
  /* ≈ 130 px */
}

/* ADD‑TO‑CART */
.add-to-cart {
  flex: 0.5;
  text-align: center;
  margin-top: 21vh;
  /* ≈ 300 px */
}

.add-to-cart .circle {
  width: clamp(48px, 4.8vw, 70px);
  height: clamp(48px, 4.8vw, 70px);
  background: var(--clr-grey-400);
  border-radius: 50%;
  border: 3px solid var(--clr-black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 300;
  cursor: pointer;
  margin-bottom: 1vh;
}

.add-to-cart p {
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 400;
}

/* Hide mobile layout on desktop */
.mobile-hero {
  display: none;
}

.mobile-hero-navbar {
  display: none;
}


@media (min-width:1450px){
  .jersey-center img{
    object-fit: contain;
  }
}


@media (max-width: 768px) {
  .web-view {
    display: none;
  }
  
  .mobile-hero {
    margin-top: 14vh;
  }

  /* ---- TITLE ---- */
  .mobile-hero-title {
    margin-bottom: -2.5vh;
  }

  .mobile-hero-title h1 {
    font-size: clamp(20px, 6.5vw, 32px);
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    margin: 0;
    margin-left: -10vw;
    /* pushes first line left */
    padding-top: 7.5vh;
  }

  .mobile-hero-title .second {
    font-size: clamp(24px, 8vw, 38px);
    display: block;
    margin-left: 18vw;
  }

  /* ---- IMAGE ---- */
  .mobile-hero-image img {
    width: 100%;
    max-height: 26vh;
    /* ≈200 px on 768×425 */
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }

  /* ---- DESCRIPTION under image ---- */
  .mobile-hero-description-under {
    width: 40%;
    /* keep 40% of viewport width */
    margin-top: -1.2vh;
    margin-left: 0;
    text-align: left;
  }

  .mobile-hero-description-under p {
    font-size: clamp(12px, 3.6vw, 16px);
    margin-bottom: 1.3vh;
  }

  .mobile-hero-description-under button {
    padding: 1vh 4vw;
    font-size: clamp(12px, 3.5vw, 16px);
    background: var(--clr-black);
    color: var(--clr-white);
    border: none;
    border-radius: .8vh;
  }

  /* ---- CART icon ---- */
  .mobile-hero-image {
    position: relative;
  }

  .mobile-hero-cart {
    position: absolute;
    top: 60%;
    right: 12%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mobile-hero-cart .circle {
    width: 10vw;
    /* ≈40 px on 400 px screen */
    height: 10vw;
    max-width: 40px;
    /* don’t exceed original */
    max-height: 40px;
    font-size: clamp(16px, 5vw, 20px);
    border-width: .5vh;
  }

  .mobile-hero-cart p {
    font-size: clamp(10px, 3vw, 12px);
    margin-top: .5vh;
  }
}


/* 
   TABLET  ⤳  768 px – 1024 px */
@media (min-width: 768px) and (max-width: 1024px) {
  /* NAVBAR */

  .main-content {
    /* padding: 2vh 2vw; */
    /* vertical & horizontal */
    position: relative;
    margin-top: calc(12vh + 4vh);
  }

  /* HERO TITLE */
  .title-text h1 {
    font-size: clamp(42px, 7vw, 64px);
    /* fluid 42 – 64 px */
    font-weight: 900;
    line-height: 1;
    color: var(--clr-black);
    margin-left: 18vw;
    /* replaces fixed 100 px */
    position: relative;
    z-index: 1;
  }

  .title-text .second {
    font-size: clamp(50px, 8vw, 72px);
    margin-left: 24vw;
    /* replaces 250 px */
  }

  /* HERO ROW */
  .content-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -18vh;
    /* fluid negative offset */
    padding: 0 4vw;
    position: relative;
    z-index: 2;
    margin-left: 8vw;
  }

  /* DESCRIPTION BLOCK */
  .description {
    flex: 0.5;
    margin-top: 28vh;
    margin-left: -6vw;
    padding-left: 0;
  }

  .description p {
    font-size: clamp(18px, 2.2vw, 22px);
    color: var(--clr-black);
    margin-bottom: 2vh;
    font-weight: 300;
  }

  .description button {
    padding: 1.2vh 4vw;
    font-size: clamp(16px, 2vw, 20px);
    background: var(--clr-black);
    color: var(--clr-white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }

  /* JERSEY IMAGE */
  .jersey-center {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }

  .jersey-center img {
    height: clamp(260px, 38vh, 420px);
    max-width: 100%;
    object-fit: contain;
    margin-top: 10vh;
  }

  /* ADD‑TO‑CART */
  .add-to-cart {
    flex: 0.5;
    text-align: center;
    margin-top: 24vh;
  }

  .add-to-cart .circle {
    width: clamp(48px, 6vw, 70px);
    height: clamp(48px, 6vw, 70px);
    background: var(--clr-grey-400);
    border-radius: 50%;
    border: 3px solid var(--clr-black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 300;
    cursor: pointer;
    margin-bottom: 1vh;
  }

  .add-to-cart p {
    font-size: clamp(12px, 1.8vw, 14px);
    font-weight: 400;
  }

  /* HIDE MOBILE‑ONLY ELEMENTS */
  .mobile-hero,
  .mobile-hero-navbar {
    display: none;
  }
}



/* category */
.category-wrapper {
  padding: clamp(24px, 3vw, 40px) clamp(40px, 7vw, 100px) clamp(60px, 8vw, 100px);
  margin-top: 0;
  padding-top: 0;
}

.category-wrapper h2 {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 600;
  margin-bottom: clamp(20px, 2vw, 30px);
}

.category-row-layout {
  display: flex;
  height: clamp(300px, 44vh, 450px);
  gap: clamp(6px, 1vw, 10px);
}

.category-col {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1vw, 10px);
}

.category-col-4 {
  flex: 4;
}

.category-col-3 {
  flex: 3;
}

.category-col-5 {
  flex: 5;
}

.category-card {
  background-size: cover;
  background-position: center;
  border-radius: 1vw;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0.3vw 0.9vw rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.category-tall {
  height: 100%;
}

.category-half {
  height: calc(50% - clamp(6px, 1vw, 10px));
}

.category-card span {
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  color: var(--clr-white);
  padding: 0.5vw 1vw;
  font-size: clamp(12px, 1.2vw, 16px);
  border-radius: 0.7vw;
  font-weight: 600;
}

/* Desktop visible by default */
.category-desktop {
  display: flex;
}

/* Hide mobile by default */
.category-mobile {
  display: none;
}


@media (max-width: 768px) {

  /* hide desktop stack */
  .category-desktop {
    display: none;
  }

  /* wrapper */
  .category-wrapper {
    padding-left: 3vw;
    /* ≈ 10px on 375 px */
    padding-right: 3vw;
    padding-top: 0;
    margin-top: 0;
    margin-bottom: 2vh;
    /* ≈ 20px */
    padding-bottom: 3vh;
    /* ≈ 40px */
  }

  .category-wrapper h2 {
    font-size: clamp(14px, 4vw, 16px);
    padding-top: 7vh;
    /* ≈ 25px */
    margin-bottom: 2vh;
    /* ≈ 10px */
  }

  /* show mobile stack */
  .category-mobile {
    display: block;
  }

  /* first row: big left + two small right */
  .mobile-row-1 {
    display: flex;
    gap: 2.5vw;
    /* ≈ 10px */
    margin-bottom: 2.5vw;
  }

  /* big image */
  .left-image {
    flex: 1;
    height: 52vw;
    /* ≈ 200px at 375 px */
    border-radius: 4vw;
    background-size: cover;
    background-position: center;
    position: relative;
  }

  /* right column with two small images */
  .right-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5vw;
  }

  .small-image {
    flex: 1;
    height: 23vw;
    /* ≈ 90px at 375 px */
    border-radius: 4vw;
    background-size: cover;
    background-position: center;
    position: relative;
  }

  /* full‑width image under row‑1 */
  .full-image {
    width: 100%;
    height: 42vw;
    /* ≈ 160px at 375 px */
    margin-top: 2.5vw;
    border-radius: 4vw;
    background-size: cover;
    background-position: center;
    position: relative;
  }

  /* shared label */
  .left-image span,
  .small-image span,
  .full-image span {
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    color: var(--clr-white);
    padding: 1.6vw 2.2vw;
    /* ≈ 6 × 8px */
    font-size: clamp(12px, 4vw, 16px);
    border-radius: 2.7vw;
    font-weight: 600;
    bottom: 2.5vw;
    left: 2.5vw;
  }
}

@media (min-width: 1200px) {
  .slider-categorytwo-container {
    position: relative;
    width: 100%;
    /* height: clamp(60vh, 90vh, 100vh); */
    overflow: hidden;
    background: var(--clr-grey-200);
    /* padding: 0 clamp(2vw, 5vw, 10vw); */
  }

  .slider-categorytwo-inner {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    gap: clamp(2vw, 5vw, 8vw);
  }

  .slider-categorytwo-main-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex: 1;
    margin-left: -25vw;
  }

  .slider-categorytwo-info-box {
    background: var(--clr-grey-100);
    padding: clamp(1vh, 2vw, 3vh);
    border-radius: 1vw;
    box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.1);
    width: clamp(200px, 28vw, 400px);
    font-size: clamp(12px, 1.2vw, 18px);
    position: absolute;
    top: clamp(2vh, 5vh, 6vh);
    right: clamp(2vw, 4vw, 6vw);
    z-index: 2;
  }

  .slider-categorytwo-text-content {
    max-width: clamp(300px, 45vw, 700px);
    margin-top: -2vh;
    position: relative;
  }

  .slider-categorytwo-text-content h1 {
    font-size: clamp(24px, 5vw, 68px);
    font-weight: bold;
    margin-top: clamp(13vh, 17vh, 22vh);
    margin-bottom: clamp(3vh, 6vh, 8vh);
    /* ⬅︎ more space below */
  }

  .slider-categorytwo-text-content p {
    font-size: clamp(14px, 2vw, 25px);
    margin-bottom: 4vh;
    line-height: 1.2;
  }

  .slider-categorytwo-cr7-img {
    height: auto;
    max-height: 110vh;
    object-fit: cover;
    margin-left: -12vw;
    margin-top: clamp(15vh, 25vh, 35vh);
  }

  .slider-categorytwo-slider-controls {
    position: absolute;
    bottom: clamp(10vh, 17vh, 20vh);
    left: clamp(4vw, 6vw, 10vw);
    display: flex;
    align-items: center;
    gap: clamp(0.8vw, 2vw, 3vw);
  }

  .slider-categorytwo-slider-controls .dot {
    width: clamp(6px, 1.2vw, 20px);
    height: clamp(6px, 1.2vw, 20px);
    background: var(--clr-black);
    border-radius: 50%;
    opacity: 0.3;
  }

  .slider-categorytwo-slider-controls .dot.active {
    opacity: 1;
  }

  .slider-categorytwo-slider-controls .arrow {
    width: clamp(30px, 5vw, 80px);
    height: clamp(30px, 5vw, 80px);
    font-size: clamp(16px, 3vw, 40px);
    /* background-color: var(--clr-grey-200); */
    /* color: var(--clr-black); */
    /* border: 0.2vw solid black; */
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
  }

  .slider-categorytwo-slider-controls .arrow:hover {
    background-color: var(--clr-grey-300);
  }

  /* === Mobile View === */
  .slider-categorytwo-mobile {
    display: none;
  }

  .slider-categorytwo-mobile-info {
    display: none;
  }
}


@media (min-width: 768px) and (max-width: 1199px) {
  .slider-categorytwo-container {
    position: relative;
    width: 100%;
    /* height: clamp(40vh, 80vh, 90vh); */
    overflow: hidden;
    background: var(--clr-grey-200);
    /* padding: 0 clamp(0vw, 3vw, 6vw); */
  }

  .slider-categorytwo-inner {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    gap: clamp(2vw, 5vw, 8vw);
  }

  .slider-categorytwo-main-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex: 1;
    margin-left: -9vw;
  }

  .slider-categorytwo-info-box {
    background: var(--clr-grey-100);
    padding: clamp(1vh, 2vw, 3vh);
    border-radius: 1vw;
    box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.1);
    width: clamp(150px, 20vw, 300px);
    font-size: clamp(8px, 1.0vw, 12px);
    position: absolute;
    top: clamp(2vh, 5vh, 6vh);
    right: clamp(2vw, 4vw, 6vw);
    z-index: 2;
  }

  .slider-categorytwo-text-content {
    max-width: clamp(300px, 45vw, 700px);
    margin-top: -2vh;
    position: relative;
  }

  .slider-categorytwo-text-content h1 {
    font-size: clamp(24px, 5vw, 68px);
    font-weight: bold;
    margin-top: clamp(13vh, 17vh, 22vh);
    margin-bottom: clamp(3vh, 6vh, 8vh);
    /* ⬅︎ more space below */
  }

  .slider-categorytwo-text-content p {
    font-size: clamp(12px, 2vw, 20px);
    margin-bottom: 4vh;
    line-height: 1.2;
  }

  .slider-categorytwo-cr7-img {
    height: auto;
    max-height: 100vh;
    object-fit: cover;
    margin-left: -11vw;
    margin-top: clamp(15vh, 25vh, 35vh);
  }

  .slider-categorytwo-slider-controls {
    position: absolute;
    bottom: clamp(10vh, 17vh, 20vh);
    left: clamp(4vw, 6vw, 10vw);
    display: flex;
    align-items: center;
    gap: clamp(0.8vw, 2vw, 3vw);
  }

  .slider-categorytwo-slider-controls .dot {
    width: clamp(6px, 1.2vw, 20px);
    height: clamp(6px, 1.2vw, 20px);
    background: var(--clr-black);
    border-radius: 50%;
    opacity: 0.3;
  }

  .slider-categorytwo-slider-controls .dot.active {
    opacity: 1;
  }

  .slider-categorytwo-slider-controls .arrow {
    width: clamp(30px, 5vw, 80px);
    height: clamp(30px, 5vw, 80px);
    /* font-size: clamp(16px, 3vw, 40px); */
    /* background-color: var(--clr-grey-200); */
    /* color: var(--clr-black); */
    /* border: 0.2vw solid black; */
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    /* transition: background 0.3s; */
  }

  .slider-categorytwo-slider-controls .arrow:hover {
    background-color: var(--clr-grey-300);
  }

  /* === Mobile View === */
  .slider-categorytwo-mobile {
    display: none;
  }

  .slider-categorytwo-mobile-info {
    display: none;
  }
}


@media (max-width: 768px) {
  .slider-categorytwo-container {
    display: none !important;
  }

  .slider-categorytwo-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* padding: 5vw; */
    padding-top: 0;
    /* background: var(--clr-white); */
    position: relative;
  }

  .slider-categorytwo-mobile-text {
    text-align: center;
    margin-bottom: 0;
    padding: 0 6vw;
  }

  .slider-categorytwo-mobile-text h1 {
    font-size: clamp(22px, 6vw, 32px);
    font-weight: bold;
    margin-bottom: 1.5vw;
  }

  .slider-categorytwo-mobile-text p {
    font-size: clamp(10px, 3.5vw, 14px);
    color: var(--clr-grey-900);
    margin: 0;
  }

  .slider-categorytwo-mobile-image {
    position: relative;
    width: 100%;
    height: 80vw;
    /* Fluid image height */
    max-height: 480px;
  }

  .slider-categorytwo-mobile-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0 5vw;
    object-position: top;
    transform: none;
  }

  .slider-categorytwo-mobile-info {
    display: block;
    background: var(--clr-grey-300);
    padding: 4vw;
    border-radius: 8px;
    width: 100%;
    font-size: clamp(11px, 3.3vw, 14px);
    color: var(--clr-black);
    margin-top: -15vw;
    /* Overlaps to kiss image bottom */
    z-index: 5;
    position: relative;
  }

  /* Arrows */
  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /* font-size: clamp(22px, 6vw, 32px); */
    /* color: var(--clr-black); */
    /* padding: 2vw; */
    /* border-radius: 50%; */
    cursor: pointer;
    z-index: 10;
    /* background-color: var(--clr-white); */
    /* box-shadow: 0 0 1vw rgba(0, 0, 0, 0.1); */
  }

  .arrow.left {
    left: 3vw;
  }

  .arrow.right {
    right: 3vw;
  }

  /* Dots control */
  .slider-categorytwo-mobile-controls {
    position: absolute;
    top: 80%;
    left: 6vw;
    transform: translateY(-50%);
    display: flex;
    gap: 2.5vw;
    z-index: 9;
  }

  .slider-categorytwo-mobile-controls .dot {
    width: clamp(6px, 2.5vw, 12px);
    height: clamp(6px, 2.5vw, 12px);
    background: var(--clr-grey-500);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .slider-categorytwo-mobile-controls .dot.active {
    background: var(--clr-black);
    scale: 1.2;
  }
}


/* -----------------------  GLOBAL / DESKTOP  ----------------------- */
.category3-body {
  font-family: 'Outfit', sans-serif;
  background: var(--clr-grey-050);
  margin: 0;
  padding: clamp(2vh, 4vh, 6vh) clamp(4vw, 7vw, 9vw);
}

.category3-heading {
  font-size: clamp(26px, 2.8vw, 40px);
  color: var(--clr-black);
  text-align: left;
  margin-bottom: clamp(3vh, 5vh, 7vh);
}

.category3-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(0.5vw, 1vw, 1.5vw);
}

.category3-card {
  position: relative;
  width: calc(50% - clamp(0.5vw, 1vw, 1.5vw));
  border-radius: clamp(12px, 1.4vw, 20px);
  overflow: hidden;
  box-shadow: 0 0.4vw 1vw rgba(0, 0, 0, 0.1);
}

.category3-image {
  width: 100%;
  height: clamp(380px, 50vh, 720px);
  object-fit: cover;
}

.category3-card.left .category3-image {
  object-position: 15% center;
}

.category3-card.right .category3-image {
  object-position: 15% center;
}

.category3-label {
  position: absolute;
  bottom: 0;
  background: rgba(236, 235, 235, 0.9);
  color: var(--clr-black);
  font-weight: 700;
  font-size: clamp(20px, 2.8vw, 36px);
  padding: clamp(8px, 1.2vw, 18px) clamp(12px, 1.6vw, 24px);
}

.category3-card.right .category3-label {
  right: 0;
  border-radius: clamp(6px, .8vw, 10px) 0 0 0;
  white-space: nowrap;
}

.category3-card.left .category3-label {
  left: 0;
  border-radius: 0 clamp(6px, .8vw, 10px) 0 0;
}

/* -----------------------  MOBILE ≤ 768 px  ----------------------- */
@media (max-width: 768px) {
  .category3-body {
    padding: 5vh 4vw;
  }

  .category3-heading {
    font-size: clamp(16px, 5vw, 20px);
    margin-bottom: 3vh;
  }

  .category3-card {
    width: calc(50% - 3vw);
    margin-top: 0;
  }

  .category3-image {
    height: clamp(180px, 40vw, 320px);
  }

  .category3-label {
    font-size: clamp(12px, 3.5vw, 16px);
    padding: 1vh 3vw;
  }
}

@media (min-width: 901px) {
  .category3-image {
    /* min 600px, grows with 65 % of viewport width, tops at 1200px */
    height: clamp(400px, 43vw, 800px);
  }
}

/* -------------------------------------------------
   GLOBAL / DESKTOP STYLES
--------------------------------------------------*/
.club-selection {
  padding: 4vh 7vw;
  /* ≈ 30px 100px at ≈1366px */
  background-color: var(--clr-grey-050);
}

.club-head {
  font-size: clamp(26px, 2.6vw, 36px);
  margin-bottom: clamp(25px, 3.7vw, 50px);
  color: var(--clr-grey-950);
  margin-left: 0.4vw;
  /* ≈ 5px at 1366px */
}

.club-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9vw;
  /* ≈ 12px at 1366px */
  justify-content: flex-start;
}

.club-card {
  width: calc(25% - 0.7vw);
  /* four per row, gap considered */
  height: 30vh;
  /* ≈ 300px on tall screens */
  background: var(--clr-white);
  border-radius: 0.9vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0.15vw 0.45vw rgba(0, 0, 0, .08);
  text-align: center;
  transition: transform 0.3s;
  cursor: pointer;
}

.club-card:hover {
  transform: translateY(-0.4vh);
}

.club-card img {
  width: 9.6vw;
  /* ≈ 130px at 1366px */
  height: 9.6vw;
  max-width: 130px;
  max-height: 130px;
  /* prevent giant on very wide */
  object-fit: contain;
  margin-bottom: 0.75vh;
}

.club-name {
  font-size: clamp(12px, 1.05vw, 14px);
  font-weight: 700;
  color: var(--clr-grey-900);
}

/* -------------------------------------------------
   MOBILE 0 – 480 px
--------------------------------------------------*/
@media (max-width: 480px) {

  .club-selection {
    padding: 5vh 4vw;
  }

  .club-head {
    font-size: clamp(16px, 5vw, 18px);
    margin-bottom: 4vh;
    text-align: left;
    margin-left: 0;
  }

  .club-logos {
    gap: 3vw;
    justify-content: space-between;
  }

  .club-card {
    width: calc(50% - 3vw);
    /* two per row */
    height: 24vw;
    /* ≈ 100px at 420px */
    border-radius: 4vw;
  }

  .club-card:hover {
    transform: translateY(-1vh);
  }

  .club-card img {
    width: 15vw;
    height: 15vw;
    /* ≈ 65px at 430px */
    max-width: 90px;
    max-height: 90px;
    margin-bottom: 1.6vh;
  }

  .club-name {
    font-size: clamp(11px, 3.4vw, 13px);
  }
}



/* offer */
/* -------------------------------
   Desktop / Global Styles
--------------------------------*/
.offer-section {
  padding: 4vh 7vw;
  /* ≈ 30px top, 100px sides at 1366px */
  background-color: var(--clr-grey-050);
}

.offer-head {
  font-size: clamp(24px, 2.5vw, 36px);
  /* Responsive from 24px to 36px */
  margin-bottom: clamp(20px, 3.7vw, 50px);
  color: var(--clr-grey-950);
  margin-left: 0.4vw;
  /* ≈ 5px */
}

.offer-banner {
  width: 100%;
  max-height: auto;
  /* Responsive banner height */
  object-fit: contain;
  border-radius: 1vw;
  box-shadow: 0 0.15vw 0.45vw rgba(0, 0, 0, 0.08);
}


/* -------------------------------
   Mobile View (≤768px)
--------------------------------*/
@media (max-width: 768px) {
  .offer-section {
    padding: 4vh 5vw;
  }

  .offer-head {
    font-size: clamp(16px, 5vw, 20px);
    margin-bottom: 3vh;
    margin-left: 0;
  }

  .offer-banner {
    max-height: 40vh;
    border-radius: 2.5vw;
  }
}


.banner2,
.banner3 {
  width: 100%;
}

.banner2 {
  display: block;
}

.banner3 {
  display: none;
}

@media (max-width: 767.98px) {
  .banner2 {
    display: none;
  }

  .banner3 {
    display: block;
    padding-bottom: 20px !important;
  }
}

.banner2 img,
.banner3 img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* -------------------------------------------------
   PRODUCT  ⤳  desktop / global styles
--------------------------------------------------*/
.product-section {
  padding: 5vh 7vw;
  /* ≈ 30px 100px at 1366×768 */
  background-color: var(--clr-grey-050);
}

.product-h2 {
  font-size: clamp(26px, 2.6vw, 36px);
  margin-bottom: clamp(18px, 2vw, 25px);
  color: var(--clr-grey-950);
  margin-left: 0.4vw;
  /* ≈ 5 px */
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5vw;
  /* ≈ 20 px at 1366px */
  justify-content: flex-start;
}

.product-card {
  background: var(--clr-grey-050);
  border-radius: 1.5vw;
  /* ≈ 20 px */
  width: calc(33.33% - 1.5vw);
  /* 3 per row, gap adjusted */
  overflow: hidden;
  transition: transform .3s;
}

.product-card:hover {
  transform: translateY(-0.5vh);
}

.product-top {
  padding: 2vw;
  background: var(--clr-grey-150);
  text-align: left;
}

.product-top span {
  font-weight: 700;
  font-size: clamp(12px, 1.1vw, 14px);
}

.product-image-wrapper {
  width: 100%;
  height: 32vh;
  /* ≈ 250 px on 780 px height */
  max-height: 320px;
  /* prevent oversize on ultrawide */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8vw;
  background: var(--clr-grey-150);
}

.product-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-details {
  padding: 2vw;
  text-align: left;
}

.product-title {
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px);
  margin-bottom: .4vh;
}

.product-category {
  font-size: clamp(14px, 1.3vw, 18px);
  color: var(--clr-grey-700);
  margin-bottom: 1vh;
}

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

.product-price {
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 700;
  color: var(--clr-grey-700);
}

.order-button {
  padding: 1vh 2vw;
  font-size: clamp(13px, 1.4vw, 16px);
  border: 1px solid var(--clr-black);
  background: none;
  cursor: pointer;
  border-radius: .6vw;
  transition: background .2s, color .2s;
  white-space: nowrap;
}

.order-button:hover {
  background: var(--clr-black);
  color: var(--clr-white);
}



@media (max-width: 768px) {
  .product-section {
    padding: 3vh 5vw;
    padding-top: 0;
    margin-top: -1.5vh;
  }

  .product-h2 {
    font-size: clamp(14px, 4vw, 18px);
    margin-left: 0;
    text-align: left;
    margin-bottom: 5vh;
  }

  .product-grid {
    gap: 2.5vw;
    justify-content: space-between;
    margin-top: -1vh;
    padding-top: 0;
  }

  .product-card {
    width: calc(50% - 2.5vw);
    height: clamp(230px, 28vw, 220px);
    margin-top: 1vh;
    margin-bottom: 1vh;
  }

  .product-top {
    padding: 1.5vw;
    font-size: clamp(5px, 2vw, 8px);
    margin-bottom: -1vh;
  }

  .product-top span {
    font-size: clamp(6px, 2vw, 9px);
    font-weight: 300;
  }

  .product-image-wrapper {
    height: auto;
    padding: 0;
  }

  .product-image {
    max-width: 100%;
    height: clamp(120px, 15vw, 120px);
    object-fit: cover;
  }

  .product-details {
    padding: 0;
    text-align: left;
  }

  .product-title {
    font-size: clamp(8px, 2.5vw, 12px);
    margin-bottom: 0;
  }

  .product-category {
    font-size: clamp(6px, 2vw, 10px);
    margin-bottom: 0.5vh;
  }

  .product-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }

  .product-price {
    font-size: clamp(8px, 2.3vw, 12px);
  }

  .order-button {
    font-size: clamp(8px, 2.3vw, 12px);
    padding: 1vh 2vw;
  }
}

/* ----------------------------------------------
   Product Carousel – Fluid + Responsive
----------------------------------------------- */
.product-carousel-container {
  padding: 5vh 7vw;
  background-color: var(--clr-grey-050);
}

.product-carousel-box {
  background-color: var(--clr-grey-150);
  border-radius: 1.5vw;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 8vh 0 8vh 0;
}

.product-carousel-image-container {
  flex: 1 1 30vw;
  display: flex;
  justify-content: center;
}

.product-carousel-image-container img {
  max-width: 100%;
  height: clamp(220px, 45vh, 500px);
  /* Scales with screen height */
  object-fit: contain;
}

.product-carousel-text-container {
  flex: 1 1 40vw;
  padding: 0 3vw;
}

.product-carousel-text-container h2 {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  margin-bottom: clamp(12px, 2vw, 20px);
}

.product-carousel-text-container ul {
  padding-left: 1.5vw;
}

.product-carousel-text-container li {
  margin-bottom: 1.2vh;
  font-size: clamp(14px, 2vw, 24px);
  font-weight: 300;
}


/* ----------------------------------------------
   Responsive Mobile Fluid Styles (≤768px)
----------------------------------------------- */
/* Mobile ≤ 768 px
   ---------------------------------------------------------------- */
@media (max-width: 768px) {
  .product-carousel-container {
    padding: 0;
    margin: 0;
    background: transparent;
    padding-bottom: 5vh;
  }

  .product-carousel-box {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin: 0;
    display: block;
  }

  /* ----- IMAGE ----- */
  .product-carousel-image-container {
    text-align: center;
    margin: 0;
    padding: 0;
  }

  .product-carousel-image-container img {
    width: 100%;
    height: auto;
    max-height: 40vh;
    object-fit: contain;
    margin: 0;
    padding: 0 4vw;
  }

  /* ----- TEXT (fixed 20 px inset) ----- */
  .product-carousel-text-container {
    margin: 0;
    margin-left: 10vw;
    padding: 0;
    /* reset */
  }

  .product-carousel-text-container h2 {
    font-size: clamp(16px, 5vw, 22px);
    margin: 0 0 2vh 0;
    line-height: 1.25;
    font-weight: 600;
    text-align: left;
  }

  .product-carousel-text-container ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-weight: 300;
    text-align: left;
  }

  .product-carousel-text-container li {
    font-size: clamp(12px, 4vw, 16px);
    margin: 0 0 1vh 2vw;
    line-height: 1.35;
  }

  .product-carousel-text-inner li {
    font-weight: 400;
  }
}


@media (min-width: 1400px){
    .category-row-layout {
    height: clamp(300px, 68vh, 640px);
  }
}