/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */

/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {
  /**
   * colors
   */

  --rich-black-fogra-29_50: hsl(210, 26%, 11%, 0.5);
  --rich-black-fogra-29-1: hsl(210, 26%, 11%);
  --rich-black-fogra-29-2: hsl(210, 50%, 4%);
  --silver-metallic: hsl(212, 9%, 67%);
  --coquelicot_20: hsla(12, 98%, 52%, 0.2);
  --coquelicot_10: hsla(12, 98%, 52%, 0.1);
  --sonic-silver: hsl(0, 0%, 47%);
  --cadet-gray: hsl(214, 15%, 62%);
  --light-gray: hsl(0, 0%, 80%);
  --coquelicot: rgba(236, 31, 36, 1); /* main red */

  --gainsboro: hsl(0, 0%, 88%);
  --white_20: hsl(0, 0%, 100%, 0.2);
  --white_10: hsl(0, 0%, 100%, 0.1);
  --black_10: hsl(0, 0%, 0%, 0.1);
  --white: hsl(0, 0%, 100%);

  /**
   * typography
   */

  --ff-catamaran: "Catamaran", sans-serif;
  --ff-rubik: "Rubik", sans-serif;

  --fs-1: 3.8rem;
  --fs-2: 3rem;
  --fs-3: 2.5rem;
  --fs-4: 2rem;
  --fs-5: 1.8rem;
  --fs-6: 1.5rem;

  --fw-900: 900;
  --fw-800: 800;
  --fw-700: 700;
  --fw-500: 500;

  /**
   * spacing
   */

  --section-padding: 80px;

  /**
   * shadow
   */

  --shadow-1: 0 0 20px var(--black_10);
  --shadow-2: 0px 10px 24px var(--coquelicot_20);

  /**
   * border radius
   */

  --radius-10: 10px;
  --radius-8: 8px;
  --radius-5: 5px;

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);
}

/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

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

li {
  list-style: none;
}

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

a,
img,
span,
input,
button,
strong,
ion-icon {
  display: block;
}

img {
  height: auto;
}

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input {
  width: 100%;
}

button {
  cursor: pointer;
}

ion-icon {
  pointer-events: none;
}

address {
  font-style: normal;
}

html {
  font-family: var(--ff-rubik);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--sonic-silver);
  font-size: 1.6rem;
  line-height: 1.6;
}

:focus-visible {
  outline-offset: 4px;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background-color: var(--light-gray);
}

::-webkit-scrollbar-thumb {
  background-color: var(--coquelicot);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--rich-black-fogra-29-1);
}

/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container {
  padding-inline: 15px;
}

.section {
  padding-block: var(--section-padding);
}

.bg-dark {
  background-color: var(--rich-black-fogra-29-1);
  color: var(--silver-metallic);
}

.has-bg-image {
  background-repeat: no-repeat;
  background-position: top left;
}

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  content: "";
  position: absolute;
}

.h1,
.h2,
.h3 {
  font-family: var(--ff-catamaran);
  line-height: 1.25;
}

.h1 {
  color: var(--white);
  font-size: var(--fs-1);
  font-weight: var(--fw-900);
}

.h2,
.h3 {
  color: var(--rich-black-fogra-29-1);
  font-weight: var(--fw-800);
}

.h2 {
  font-size: var(--fs-2);
}

.h3 {
  font-size: var(--fs-4);
}

.section-text {
  font-size: var(--fs-6);
}

.btn {
  max-width: max-content;
  font-size: var(--fs-6);
  text-transform: uppercase;
  font-weight: var(--fw-500);
  padding: 15px 35px;
  border-radius: var(--radius-8);
  transition: var(--transition-1);
}

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

.btn-primary:is(:hover, :focus) {
  background-color: var(--white);
  color: var(--coquelicot);
  box-shadow: var(--shadow-2);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--coquelicot);
}

.btn-secondary:is(:hover, :focus) {
  background-color: var(--rich-black-fogra-29-1);
}

.w-100 {
  width: 100%;
}

.circle,
.abs-img {
  position: absolute;
}

.circle {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -56%);
  width: 100%;
  z-index: -2;
  animation: rotate360 15s linear infinite;
}

@keyframes rotate360 {
  0% {
    transform: translate(-50%, -56%) rotate(0);
  }
  100% {
    transform: translate(-50%, -56%) rotate(1turn);
  }
}

.circle-2 {
  animation-direction: reverse;
  z-index: -2;
}

.hero-subtitle,
.section-subtitle {
  font-family: var(--ff-catamaran);
  font-weight: var(--fw-700);
  text-transform: uppercase;
  max-width: max-content;
}

.section-subtitle {
  background-color: var(--coquelicot_10);
  color: var(--coquelicot);
  padding: 8px 20px;
  border-radius: var(--radius-8);
}

.section-title {
  margin-block: 18px 35px;
}

.btn-link {
  --color: var(--white);

  color: var(--color);
  font-size: var(--fs-6);
  font-weight: var(--fw-500);
  text-transform: uppercase;
  max-width: max-content;
  transition: var(--transition-1);
}

.btn-link::before {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color);
  transition: var(--transition-1);
}

.btn-link:is(:hover, :focus) {
  --color: var(--coquelicot);
}

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

.text-start {
  text-align: left;
}

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  background-color: var(--light-gray);
  overflow: hidden;
}

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

.has-scrollbar {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  padding-block-end: 30px;
  scroll-snap-type: inline mandatory;
}

.scrollbar-item {
  min-width: 100%;
  scroll-snap-align: start;
}

.has-scrollbar::-webkit-scrollbar {
  height: 10px;
}

.has-scrollbar::-webkit-scrollbar-track,
.has-scrollbar::-webkit-scrollbar-thumb {
  border-radius: 50px;
}

.has-scrollbar::-webkit-scrollbar-thumb:hover {
  background-color: var(--coquelicot);
}

.has-scrollbar::-webkit-scrollbar-button {
  width: calc(25% - 25px);
}

/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/ /* Default (desktop hero) – dark background */
.logo-dark {
  display: none;
}

.logo-light {
  display: block;
}

/* When header scrolls (white background) */
.header.active .logo-dark {
  display: block;
}

.header.active .logo-light {
  display: none;
}

/* MOBILE: header is ALWAYS white */
@media (max-width: 768px) {
  .logo-dark {
    display: block;
  }
  .logo-light {
    display: none !important;
  }
}
/* Base — logo sizing */
.header-logo {
  height: 75px; /* increase size */
  width: auto;
  display: block;
  object-fit: contain;
}

/* Desktop default:
   Header is dark → show light logo */
.logo-dark {
  display: none;
}
.logo-light {
  display: block;
}

/* When header becomes white on scroll */
.header.active .logo-light {
  display: none;
}
.header.active .logo-dark {
  display: block;
}

/* ===== MOBILE & TABLET FIX ===== */
/* On small screens (header always white):
   always show dark logo, hide light logo */
@media (max-width: 992px) {
  .logo-light {
    display: none !important;
  }
  .logo-dark {
    display: block !important;
  }
}
.header .btn {
  display: none;
}

.header {
  background-color: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 10px;
  box-shadow: var(--shadow-1);
  z-index: 4;
}

.header > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: var(--rich-black-fogra-29-1);
  font-family: var(--ff-catamaran);
  font-size: 3.5rem;
  font-weight: var(--fw-900);
  display: flex;
  align-items: center;
  margin-inline-start: -8px;
}

.logo ion-icon {
  color: var(--coquelicot);
  font-size: 40px;
  transform: rotate(90deg) translate(-2px, -5px);
}

.nav-open-btn {
  background-color: var(--coquelicot);
  padding: 20px 15px;
  border-radius: var(--radius-8);
}

.nav-open-btn .line {
  background-color: var(--white);
  width: 30px;
  height: 3px;
}

.nav-open-btn .line:not(:last-child) {
  margin-block-end: 6px;
}

.nav-open-btn .line:nth-child(2) {
  width: 25px;
  margin-inline-start: auto;
}

.navbar {
  background-color: var(--coquelicot);
  color: var(--white);
  position: fixed;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  visibility: hidden;
  transition: 0.25s var(--cubic-in);
}

.navbar.active {
  visibility: visible;
  transform: translateY(-100%);
  transition: 0.5s var(--cubic-out);
}

.nav-close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background-color: var(--rich-black-fogra-29-1);
  color: var(--white);
  font-size: 40px;
  padding: 10px;
  border-radius: var(--radius-8);
}

.navbar-link {
  font-family: var(--ff-catamaran);
  font-size: var(--fs-4);
  text-align: center;
  padding-block: 10px;
  margin-block-end: 20px;
  transition: var(--transition-1);
}

.navbar-link:is(:hover, :focus, .active) {
  color: var(--rich-black-fogra-29-1);
}

/*-----------------------------------*\
  #HERO
\*-----------------------------------*/ /* Ensure the hero section is full viewport height */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* push content to bottom */
  overflow: hidden;
  padding-block-start: calc(var(--section-padding) + 80px);
  padding-block-end: 80px;
}

/* Position the hero-banner images at the bottom */
.hero-banner {
  position: relative;
  margin-bottom: -80px; /* optional tweak to bring it slightly lower */
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: flex-end; /* align children to bottom */
}

/* Optional: adjust individual floating assets */
.hero-banner .circle,
.hero-banner .abs-img {
  bottom: 0; /* anchor floating assets to the bottom */
}

.hero::after {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 240px;
  background-color: var(--coquelicot);
  z-index: -1;
}

.hero-content {
  margin-block-end: 90px;
}

.hero-subtitle {
  background-color: var(--white_10);
  color: var(--white);
  margin-inline: auto;
  padding: 5px;
  padding-inline-end: 15px;
  border-radius: var(--radius-8);
}

.hero-subtitle .strong {
  display: inline-block;
  background-color: var(--coquelicot);
  padding: 2px 15px;
  margin-inline-end: 15px;
  border-radius: var(--radius-5);
}

.hero-title {
  margin-block: 30px 8px;
}

.hero .section-text {
  margin-block-end: 40px;
}

.hero .btn {
  margin-inline: auto;
}

.abs-img-1 {
  top: 20px;
  right: -50px;
  width: 190px;
}

.abs-img-2 {
  bottom: -50px;
  left: -40px;
  width: 280px;
}

.hero .abs-img {
  animation: move 3s linear infinite alternate;
}

@keyframes move {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-5px, 10px);
  }
  100% {
    transform: translate(5px, 20px);
  }
}

.hero .abs-img-2 {
  animation-direction: alternate-reverse;
}

/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about {
  overflow: hidden;
}

.about-banner {
  margin-block-end: 50px;
}

.about-banner::after {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: var(--coquelicot);
  border-radius: var(--radius-10);
  z-index: -2;
}

.about-banner .abs-img {
  bottom: 0;
  left: 0;
  z-index: -1;
  animation: moveUp 2.5s ease infinite;
}

@keyframes moveUp {
  0%,
  30%,
  60%,
  100% {
    transform: translateY(0);
  }

  20% {
    transform: translateY(-30px);
  }

  40% {
    transform: translateY(-15px);
  }
}

.about .section-text:not(:last-of-type) {
  margin-block-end: 15px;
}
/* === FINAL OVERRIDE: ABOUT COACH ROW LAYOUT === */

.about .wrapper {
  display: flex !important;
  align-items: center;
  justify-content: space-between; /* coach left, button right */
  gap: 12px;
  margin-top: 30px;
}

/* MOBILE: smaller "Разгледай повече" button */
@media (max-width: 480px) {
  .about .btn.btn-primary {
    padding: 10px 18px; /* smaller padding */
    font-size: 14px; /* slightly smaller text */
    border-radius: 8px;
    white-space: nowrap; /* keep text on one line */
  }
}

.about-coach {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 auto; /* text can wrap if needed */
}
/* FIX AVATAR CROPPING */
.about .coach-avatar {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about .coach-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills the circle properly */
  object-position: center; /* centers the face */
  display: block;
}

.about .btn.btn-primary {
  flex-shrink: 0; /* keep button on same row */
  margin-top: 0;
}

.about .coach-name {
  font-weight: var(--fw-700);
  margin-block-end: 5px;
}

.about .coach-title {
  font-size: var(--fs-6);
}

.about .btn-primary:is(:hover, :focus) {
  background-color: var(--rich-black-fogra-29-1);
  color: var(--white);
  box-shadow: none;
}

/*-----------------------------------*\
  #LOCATION FULL WIDTH
\*-----------------------------------*/

.section.location .container {
  max-width: 100%; /* override the usual container width */
  padding-inline: 0; /* remove horizontal padding */
}

.section.location .hero-banner iframe {
  width: 100vw; /* full viewport width */
  max-width: 100%; /* ensure it doesn't overflow */
  margin-inline: calc(-50vw + 50%); /* center it */
}
/*-----------------------------------*\
  #VIDEO
\*-----------------------------------*/

.video {
  padding-block: 0;
  margin-block-end: -250px;
}

.video-card {
  background-color: var(--light-gray);
  background-size: cover;
  background-position: center;
  height: 500px;
  border-radius: var(--radius-10);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.video-card::before {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--rich-black-fogra-29_50);
  z-index: -1;
}

.video-card .card-title {
  color: var(--white);
  font-size: var(--fs-3);
}

.play-btn {
  background-color: var(--coquelicot);
  color: var(--white);
  width: max-content;
  font-size: 30px;
  padding: 25px;
  border-radius: 50%;
  margin-block: 25px 35px;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 var(--coquelicot);
  }
  100% {
    box-shadow: 0 0 0 40px transparent;
  }
}

/*-----------------------------------*\
  #CLASS
\*-----------------------------------*/

.class {
  padding-block-start: calc(var(--section-padding) + 250px);
}

.class .section-subtitle {
  margin-inline: auto;
}

.class .section-title {
  color: var(--white);
}

.class-card {
  background-color: var(--white);
  border-radius: var(--radius-10);
  height: 100%;
  overflow: hidden;
}

.class-card .card-banner img {
  transition: var(--transition-2);
}

.class-card:is(:hover, :focus-within) .card-banner img {
  transform: scale(1.1);
}

.class-card .card-content {
  padding: 24px;
}

.class-card .title-wrapper {
  display: flex;
  align-items: center;
}

.class-card .title-icon {
  padding-inline-end: 20px;
  margin-inline-end: 20px;
  min-width: max-content;
  border-inline-end: 1px solid var(--gainsboro);
}

.class-card .card-title {
  transition: var(--transition-1);
}

.class-card .card-title:is(:hover, :focus) {
  color: var(--coquelicot);
}

.class-card .card-text {
  color: var(--sonic-silver);
  font-size: var(--fs-6);
  margin-block: 16px 12px;
}

.class-card .progress-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--ff-catamaran);
  color: var(--rich-black-fogra-29-1);
  font-size: var(--fs-6);
  font-weight: var(--fw-800);
  margin-block-end: 8px;
}

.class-card .progress-bg {
  background-color: var(--coquelicot_10);
  border-radius: 50px;
}

.class-card .progress-bar {
  background-color: var(--coquelicot);
  height: 10px;
  border-radius: inherit;
}

/* ============================================
   FINAL FIX — NORMALIZED OFFER CARDS
   ============================================ */

.offers .class-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-10);
  overflow: hidden;
}

.offers .class-card .card-banner {
  flex-shrink: 0;
}
/* FINAL FIX for OFFERS — override global card-text spacing */
.offers .class-card .card-text {
  margin: 0 !important;
}
.offers .class-card .card-content {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px;
  padding: 25px !important;
}
.offers .class-card .card-text:last-child {
  margin-top: auto !important;
  font-weight: 700;
  color: var(--coquelicot);
}

/* equal card widths in scroll area */
@media (min-width: 768px) {
  .offers .scrollbar-item {
    min-width: calc(50% - 12.5px);
  }
}

@media (min-width: 1200px) {
  .offers .scrollbar-item {
    min-width: calc(33.33% - 20px);
  }
}

/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/

.blog .section-subtitle {
  margin-inline: auto;
}

.blog-card {
  background-color: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-10);
  height: 100%;
  overflow: hidden;
}

.blog-card .card-banner {
  position: relative;
}

.blog-card .card-banner img {
  transition: var(--transition-2);
}

.blog-card:is(:hover, :focus) .card-banner img {
  transform: scale(1.1);
}

.blog-card .card-meta {
  background-color: var(--coquelicot);
  color: var(--white);
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 8px 20px;
  font-size: var(--fs-6);
  font-weight: var(--fw-500);
  text-transform: uppercase;
}

.blog-card .card-content {
  padding: 25px;
}

.blog-card .card-title {
  transition: var(--transition-1);
}

.blog-card .card-title:is(:hover, :focus) {
  color: var(--coquelicot);
}

.blog-card .card-text {
  font-size: var(--fs-6);
  margin-block: 8px 12px;
}

.blog-card .btn-link {
  --color: var(--coquelicot);
}

.blog-card .btn-link:is(:hover, :focus) {
  --color: var(--rich-black-fogra-29-1);
}
/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 20px;
  right: 40px;
  background-color: var(--coquelicot);
  color: var(--white);
  font-size: 30px; /* button size stays the same */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--rich-black-fogra-29-1);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
  z-index: 4;
  animation: bounce 2s infinite ease-in-out;
}

.back-top-btn.active {
  visibility: visible;
  opacity: 1;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for larger than 575px screen
 */

@media (min-width: 575px) {
  /**
   * CUSTOM PROPERTY
   */

  :root {
    /**
     * typography
     */

    --fs-1: 5.8rem;
    --fs-2: 4rem;
  }

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
  }

  .hero-subtitle,
  .section-subtitle {
    font-size: var(--fs-5);
  }

  /**
   * HEADER
   */

  .header .container {
    max-width: unset;
    padding-inline: 30px;
  }

  /**
   * HERO
   */

  .hero-content {
    padding-inline: 40px;
  }

  .hero-subtitle .strong {
    padding-block: 6px;
  }

  .hero::after {
    height: 340px;
  }

  .abs-img-1 {
    top: 130px;
    right: -10px;
    width: 230px;
  }

  .abs-img-2 {
    bottom: 20px;
    left: -40px;
    width: 310px;
  }

  /**
   * ABOUT
   */

  .about .wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
  }

  .about-coach {
    margin-block-end: 0;
  }

  /**
   * VIDEO
   */

  .video-card .card-title {
    --fs-3: 3.5rem;
  }
}

/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {
  /**
   * CUSTOM PROPERTY
   */

  :root {
    /**
     * typography
     */

    --fs-2: 4.5rem;
  }

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 720px;
  }

  .scrollbar-item {
    min-width: calc(50% - 12.5px);
  }

  /**
   * HERO
   */

  .hero-banner {
    max-width: max-content;
    margin-inline: auto;
  }

  .abs-img-1 {
    top: 140px;
    right: 50px;
  }
}

/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {
  /**
   * REUSED STYLE
   */

  .container,
  .header .container {
    max-width: 960px;
  }

  /**
   * HEADER
   */

  .nav-open-btn,
  .nav-close-btn {
    display: none;
  }

  .header .btn {
    display: block;
  }

  .header {
    background-color: transparent;
    box-shadow: none;
    padding-block: 30px;
    transition: var(--transition-1);
  }

  .header.active {
    background-color: var(--white);
    padding-block: 20px;
    box-shadow: var(--shadow-1);
    animation: slideIn 0.5s ease forwards;
    transform: translateY(0); /* prevent jumping */
  }
  @keyframes slideIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  .header .container {
    gap: 30px;
  }

  .header .logo {
    color: var(--white);
  }

  .header.active .logo {
    color: var(--rich-black-fogra-29-1);
  }

  .navbar,
  .navbar.active {
    all: unset;
    margin-inline-start: auto;
  }

  .navbar-list {
    display: flex;
    gap: 10px;
  }

  .navbar-link {
    color: var(--white);
    font-size: unset;
    padding: 0 10px;
    margin-block-end: 0;
  }

  .header.active .navbar-link {
    color: var(--rich-black-fogra-29-1);
  }

  .header .navbar-link:is(:hover, :focus, .active) {
    color: var(--coquelicot);
  }

  .header.active .btn {
    background-color: var(--coquelicot);
    color: var(--white);
  }

  .header.active .btn:is(:hover, :focus) {
    background-color: var(--rich-black-fogra-29-1);
  }

  /**
   * HERO
   */

  .hero {
    background-size: contain;
    text-align: left;
  }

  .hero::before {
    content: "";
    position: absolute;
    top: -1000px;
    left: -500px;
    width: 1500px;
    height: 1500px;
    background-image: radial-gradient(
      circle,
      var(--coquelicot_20) 20%,
      transparent 70% 100%
    );
    z-index: -1;
  }

  .hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 25px;
  }

  .hero-content {
    padding-inline: 0;
    margin-block-end: 0;
  }

  .hero-subtitle,
  .hero .btn {
    margin-inline: 0;
  }

  .hero::after {
    width: 330px;
    height: 100%;
    left: auto;
    right: 0;
  }

  /**
   * ABOUT
   */

  .about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
  }

  .about-banner {
    margin-block-end: 0;
  }

  .about .wrapper {
    gap: 30px;
  }
}

/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {
  /**
   * CUSTOM PROPERTY
   */

  :root {
    /**
     * typography
     */

    --fs-1: 7rem;
    --fs-2: 5.5rem;
    --fs-4: 2.2rem;
    --fs-5: 2rem;

    /**
     * spacing
     */

    --section-padding: 120px;
  }

  /**
   * REUSED STYLE
   */

  .container,
  .header .container {
    max-width: 1140px;
  }

  .btn {
    padding: 18px 45px;
    border-radius: var(--radius-10);
  }

  .section-subtitle {
    --fs-5: 2.2rem;
  }

  .has-scrollbar {
    gap: 30px;
  }

  .scrollbar-item {
    min-width: calc(33.33% - 20px);
  }

  /**
   * HEADER
   */

  .header .container {
    padding-inline: 0;
  }

  /**
   * HERO
   */

  .hero::after {
    width: 420px;
  }

  .hero .section-text {
    --fs-6: 1.8rem;
  }

  .abs-img-1 {
    top: 170px;
    right: -30px;
    width: 260px;
  }

  .abs-img-2 {
    bottom: 60px;
    left: -80px;
    width: 360px;
  }

  /**
   * ABOUT
   */

  .about .wrapper {
    gap: 40px;
  }

  /**
   * CLASS, BLOG
   */

  :is(.class-card, .blog-card) .card-content {
    padding: 30px;
  }

  .blog-card .card-meta {
    padding: 15px 30px;
  }
}
/* ===== FINAL CLEAN FIX FOR OFFERS ===== */

.offers .scrollbar-item {
  display: flex;
}

/* Make the card equal height */
.offers .class-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-10);
  overflow: hidden;
}

/* Image stays on top */
.offers .class-card .card-banner {
  flex-shrink: 0;
}

/* Content area */
.offers .class-card .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 30px !important;
  gap: 12px;
}

/* Title always same height */
.offers .class-card .card-title {
  min-height: 3.6rem;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

/* Description same height */
.offers .class-card .card-text:nth-of-type(1) {
  min-height: 55px;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

/* Price ALWAYS at bottom */
.offers .class-card .card-text:last-child {
  margin-top: auto !important;
  font-weight: 700;
  color: var(--coquelicot);
}

/* Remove ALL global margins */
.offers .class-card .card-text {
  margin: 0 !important;
}
/* REAL FIX — FORCE OFFER IMAGES TO SAME HEIGHT */
.offers .card-banner {
  height: 260px !important; /* adjust if you want bigger/smaller */
  overflow: hidden;
}

.offers .card-banner img {
  height: 100% !important;
  width: 100% !important;
  object-fit: cover !important;
}

/* ================================
   PRICING SECTION — NEW DESIGN
   ================================ */

.pricing .class-card {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-10);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  padding: 30px;
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pricing .class-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.pricing .card-title {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: var(--rich-black-fogra-29-1);
  text-align: center;
  font-weight: 800;
}

.pricing .card-text {
  font-size: 2rem;
  color: var(--coquelicot);
  font-weight: 700;
  text-align: center;
  margin-top: 10px;
}

/* equal width logic like offers */
.pricing .scrollbar-item {
  min-width: 50%;
}

@media (min-width: 768px) {
  .pricing .scrollbar-item {
    min-width: calc(50% - 15px);
  }
}

@media (min-width: 1200px) {
  .pricing .scrollbar-item {
    min-width: calc(33.33% - 20px);
  }
}

/*==============================
  PRICING GRID LAYOUT (NO SLIDER)
===============================*/

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  padding: 0;
}

.pricing-grid li {
  list-style: none;
}

/* Tablet */
@media (min-width: 600px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop */
@media (min-width: 992px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* PARTNERS */

.partners {
  background-color: var(--rich-black-fogra-29-1);
  color: var(--silver-metallic);
}

.partners .section-title {
  color: var(--white);
}

.partners .section-text {
  text-align: center;
  margin-block-end: 40px;
  font-size: var(--fs-6);
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.partner-card {
  background-color: var(--white);
  border-radius: var(--radius-10);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 100px;
  transition: var(--transition-1);
  box-shadow: var(--shadow-1);
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2);
}

.partner-logo img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(0);
  transition: var(--transition-1);
}

.partner-card:hover .partner-logo img {
  filter: grayscale(0);
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .partners-grid {
    gap: 60px;
  }

  .partner-card {
    min-width: 220px;
    min-height: 120px;
    padding: 40px;
  }
}

/* Make logos bigger */
.header-logo {
  height: 75px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Default state (top of page, transparent header) */
.logo-dark {
  display: none;
}
.logo-light {
  display: block;
}

/* When header becomes sticky/white */
.header.active .logo-dark {
  display: block;
}
.header.active .logo-light {
  display: none;
}
@media (max-width: 767px) {
  .logo-dark {
    display: block !important;
  }
  .logo-light {
    display: none !important;
  }
} /* ---------------------------------------- */
/* DESKTOP + GENERAL STYLES */
/* ---------------------------------------- */

/* Header phone button (DESKTOP only) */ /* DESKTOP DEFAULT — WHITE BUTTON */
.header .header-phone-btn {
  background-color: #ffffff; /* WHITE */
  color: #141b22; /* DARK TEXT */
  padding: 12px 26px;
  font-size: 15px;
  border-radius: 6px;
  border: 2px solid #ffffff; /* keeps clean edges */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease; /* smooth hover */
}

/* Hover effect */
.header .header-phone-btn:hover {
  background-color: #141b22; /* dark */
  color: #ffffff; /* white text */
}

/* Hide menu phone button by default */
.btn-phone-menu {
  display: none;
}

/* ---------------------------------------- */
/* TABLET (≤992px) */
/* Show phone button next to burger menu */
/* ---------------------------------------- */
@media (max-width: 992px) {
  /* Show red phone button in header */
  .header-phone-btn {
    display: inline-flex !important;
    margin-right: 15px;
  }

  /* ALSO show the menu button inside burger menu */
  .btn-phone-menu {
    display: block !important;
  }
}

/* ---------------------------------------- */
/* MOBILE (≤600px) */
/* Hide header button, show only inside the menu */
/* ---------------------------------------- */
@media (max-width: 600px) {
  /* Hide top red header button */
  .header-phone-btn {
    display: none !important;
  }

  /* Button inside the burger menu */
  .btn-phone-menu {
    width: 100%;
    background-color: #fff; /* white visible on orange background */
    color: #141b22; /* dark text */
    padding: 15px;
    border-radius: 6px;
    font-size: 16px;
    text-align: center;
    font-weight: 600;
    border: none;
    margin-top: 20px;
  }

  .btn-phone-menu:hover {
    background-color: #141b22; /* dark background on hover */
    color: #fff; /* white text */
  }
}
/* ------------------------------------------------ */
/* DESKTOP DEFAULT — ORANGE BUTTON                  */
/* ------------------------------------------------ */

.header .header-phone-btn {
  background-color: #ec1f24;
  color: #fff;
  padding: 12px 26px;
  font-size: 15px;
  border-radius: 6px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header .header-phone-btn:hover {
  background-color: #ec1f24;
  color: #fff;
}

/* Hidden white button by default */
.btn-phone-menu {
  display: none;
}

/* ------------------------------------------------ */
/* TABLET + PHONE (≤ 992px) — WHITE BUTTON VERSION  */
/* ------------------------------------------------ */
@media (max-width: 992px) {
  /* Hide the desktop orange button */
  .header-phone-btn {
    display: none !important;
  }

  /* Show white button inside burger menu */
  .btn-phone-menu {
    display: block !important;
    background-color: #fff;
    color: #141b22;
    padding: 14px 20px;
    border-radius: 6px;
    margin-top: 15px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border: none;
  }

  .btn-phone-menu:hover {
    background-color: #141b22;
    color: #fff;
  }
}

/* ------------------------------------------------ */
/* PHONES ONLY (≤ 600px) — extra spacing            */
/* ------------------------------------------------ */
@media (max-width: 600px) {
  .btn-phone-menu {
    padding: 15px;
    margin-top: 20px;
  }
}

.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
  padding: 1.2rem 1.6rem;

  background: var(--coquelicot_10);
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);

  flex-wrap: wrap; /* ⚠️ Allows perfect mobile stacking */
  text-align: center;
}

.reviews-stars {
  display: flex;
  gap: 4px;
  font-size: 26px;
  color: #f7b501;
}

.avg-rating {
  font-size: 20px;
  font-weight: 800;
  margin: 0;
  color: var(--rich-black-fogra-29-1);
}

.total-reviews {
  font-size: 14px;
  margin: 0;
  color: var(--sonic-silver);
}

.star.half {
  color: #d6d6d6;
}

/* =============================== */
/* 📱 MOBILE OPTIMIZATION (0–480px) */
/* =============================== */
@media (max-width: 480px) {
  .reviews-summary {
    padding: 1.2rem;
    flex-direction: column;
    gap: 0.6rem;
  }

  .reviews-stars {
    font-size: 24px;
  }

  .avg-rating {
    font-size: 18px;
  }
}

/* =================================== */
/* 📱📱 SMALL TABLET (481–768px)       */
/* =================================== */
@media (max-width: 768px) {
  .reviews-summary {
    gap: 1rem;
    padding: 1.4rem;
  }

  .reviews-stars {
    font-size: 28px;
  }

  .avg-rating {
    font-size: 22px;
  }
}

/* =================================== */
/* 💻 DESKTOP (1200px+)                */
/* =================================== */
@media (min-width: 1200px) {
  .reviews-summary {
    max-width: 550px; /* prevents stretching on huge screens */
    margin: 0 auto 3rem auto;
  }

  .reviews-stars {
    font-size: 32px;
  }

  .avg-rating {
    font-size: 26px;
  }
}

/* FORCE DESKTOP PHONE BUTTON TO BE WHITE */
.header .header-phone-btn {
  background-color: #ffffff !important; /* WHITE */
  color: #141b22 !important; /* DARK TEXT */
  border: 2px solid #ffffff !important; /* clean border */
}

/* Hover (optional) */
.header .header-phone-btn:hover {
  background-color: #141b22 !important; /* dark */
  color: #ffffff !important; /* white */
}

/* DEFAULT — transparent header → WHITE phone button */
.header .header-phone-btn {
  background-color: #ffffff !important;
  color: #141b22 !important;
  border: 2px solid #ffffff !important;
  transition: 0.25s ease;
}
/* WHEN HEADER TURNS WHITE → RED phone button */
.header.active .header-phone-btn {
  background-color: #ec1f24 !important; /* red */
  color: #ffffff !important; /* white text */
  border-color: #ec1f24 !important;
}
/* === HERO SUBTITLE FIX === */

/* Base for all devices */
.hero-subtitle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;

  background: rgba(255, 255, 255, 0.08);
  padding: 8px 14px;
  border-radius: 12px;

  width: fit-content;
  margin: 0 auto 20px auto;
}

.hero-subtitle .line {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
}

.hero-subtitle .strong {
  background-color: var(--coquelicot);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
  font-size: 1.4rem;
}

/* Tablet */
@media (min-width: 768px) {
  .hero-subtitle .line,
  .hero-subtitle .strong {
    font-size: 1.8rem;
  }
}

/* Desktop */
@media (min-width: 1200px) {
  .hero-subtitle .line,
  .hero-subtitle .strong {
    font-size: 2.2rem;
  }
}

/* CENTER SUBTITLE ON MOBILE + TABLET ONLY */
@media (max-width: 1199px) {
  .hero-subtitle {
    display: flex;
    flex-direction: column;
    align-items: center; /* center horizontally */
    justify-content: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
  }

  .hero-subtitle .line {
    text-align: center;
    width: 100%;
  }

  .hero-subtitle .strong {
    margin-left: auto;
    margin-right: auto;
  }
}
/* DESKTOP — restore original horizontal layout */
@media (min-width: 1200px) {
  .hero-subtitle {
    flex-direction: row; /* side by side */
    align-items: center;
    justify-content: flex-start; /* align left like before */
    gap: 12px; /* spacing between red block and text */

    margin-left: 0; /* restore original alignment */
    margin-right: 0;
    text-align: left;
  }

  .hero-subtitle .line {
    width: auto;
    text-align: left;
    display: inline-block;
  }

  .hero-subtitle .strong {
    margin: 0;
  }
}
/* MASSAGES SECTION — uses same styling as ABOUT */
.massages {
  overflow: hidden;
}

.massages .section-subtitle {
  background-color: var(--coquelicot_10);
  color: var(--coquelicot);
}

.massages .wrapper {
  margin-top: 30px;
}
.gallery-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: inline mandatory;
  padding-block-end: 20px;
}

.gallery-carousel::-webkit-scrollbar {
  height: 8px;
}

.gallery-carousel::-webkit-scrollbar-track {
  background: var(--light-gray);
  border-radius: 50px;
}

.gallery-carousel::-webkit-scrollbar-thumb {
  background: var(--coquelicot);
  border-radius: 50px;
}

.scrollbar-item {
  min-width: 500px;
  scroll-snap-align: start;
}

.gallery-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
}

.massages .wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.massages .about-coach {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 0; /* remove extra spacing */
}

.massages .btn-primary {
  margin-top: 0; /* remove top spacing */
}

.massage-call-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
  align-items: center;
}

.massage-call-buttons .btn-primary {
  width: 260px; /* button width */
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  padding: 15px 20px;
  border-radius: 10px;
} /* ================================
   CLEAN MINIMAL FOOTER STYLES
   ================================ */

.footer {
  background-color: var(--rich-black-fogra-29-1);
  color: #ccc;
}

/* MOBILE + TABLET (default) — everything centered */
.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 35px;
  padding: 50px 0;
  text-align: center;
  align-items: center;
}

.footer-left,
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

/* Logo */
.footer-logo-wrap img {
  width: 150px;
  height: auto;
}

.footer-text,
.footer-link,
address {
  color: #ccc;
  font-size: 16px;
}

/* Hours & items */
.footer-hours,
.footer-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer-hours ion-icon,
.footer-item ion-icon {
  font-size: 22px;
  color: var(--coquelicot);
}

/* Socials */
.footer-socials {
  display: flex;
  gap: 22px;
  justify-content: center;
}

footer .container {
  max-width: 100% !important;
}
.footer-bottom {
  background-color: var(--rich-black-fogra-29-2);
  padding: 12px 0;
  text-align: center;
}
.footer-bottom-inner {
  display: flex;
  justify-content: center;
  white-space: nowrap !important;
}
.footer-copy {
  white-space: nowrap !important;
  margin: 0 !important;
  display: inline-block !important;
  text-align: center;
  width: 100%;
}

.footer-hours {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px; /* spacing between icon + blocks */
}

.footer-hours ion-icon {
  font-size: 24px;
  color: var(--coquelicot);
}

.hours-block {
  text-align: center;
  margin: 0;
}
.carousel-btn {
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;

  width: 36px;
  height: 36px;
  border-radius: 50%;
  padding: 0;

  /* background: transparent; */
  border: none;
  color: #ec1f24; /* change color if needed */
  font-size: 28px;
  font-weight: bold;

  cursor: pointer;

  display: flex; /* force visible for testing */
  align-items: center;
  justify-content: center;
}

.carousel-btn.left {
  left: 5px;
}
.carousel-btn.right {
  right: 5px;
}
.carousel-wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  /* Each review item takes full width */
  .blog-list .scrollbar-item {
    min-width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    scroll-snap-align: center;
    padding: 0 16px; /* prevents cutting edges */
    box-sizing: border-box;
  }

  /* Ensures the review card fits fully inside */
  .blog-card {
    width: 100%;
  }

  .blog-card .card-content {
    padding: 20px;
  }

  /* Proper horizontal scrolling */
  .blog-list {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 0;
  }

  /* Fix arrow positioning on mobile/tablet */
  .carousel-btn.left {
    left: 0;
  }

  .carousel-btn.right {
    right: 0;
  }
}
/* Show exactly ONE offer card per view on mobile/tablets */
@media (max-width: 1024px) {
  .offers-carousel .scrollbar-item {
    min-width: 100% !important;
    max-width: 100% !important;
    scroll-snap-align: center;
  }

  .offers-carousel .class-list {
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
/* ==========================================
   FORCE OFFERS TO SHOW ONE FULL CARD CENTERED
   ========================================== */

/* Remove all extra spacing around the slider */
.offers-carousel .class-list {
  padding: 0 !important;
  margin: 0 auto !important;
  width: 100% !important;

  display: flex !important;
  overflow-x: auto !important;
  scroll-snap-type: x mandatory;
}

/* EXACTLY 1 CARD PER VIEW */
.offers-carousel .scrollbar-item {
  flex: 0 0 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  scroll-snap-align: center;
}

/* Make sure the card fills the line */
.offers-carousel .class-card {
  width: 100% !important;
}

/* Center the entire carousel */
.offers-carousel {
  max-width: 900px;
  margin: 0 auto !important;
  position: relative;
}

/* Fix arrow distance */
.offers-carousel .carousel-btn.left {
  left: 20px !important;
}

.offers-carousel .carousel-btn.right {
  right: 20px !important;
}
/* ==========================================
   GALLERY — SHOW EXACTLY 1 FULL IMAGE PER VIEW
   ========================================== */

.gallery-carousel {
  display: flex !important;
  overflow-x: auto !important;
  scroll-snap-type: x mandatory !important;
  gap: 0 !important;
  padding: 0 !important;
}

.gallery-carousel .scrollbar-item {
  flex: 0 0 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  scroll-snap-align: center !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-carousel .gallery-img {
  width: 100% !important;
  height: 320px !important; /* adjust: 260, 300, 350 */
  object-fit: cover !important;
  border-radius: 10px;
}

/* OPTIONAL: Make images taller on desktop */
@media (min-width: 992px) {
  .gallery-carousel .gallery-img {
    height: 400px !important;
  }
}

/* OPTIONAL: Increase height on large screens */
@media (min-width: 1400px) {
  .gallery-carousel .gallery-img {
    height: 450px !important;
  }
}
/* ================================
   GALLERY — spacing for mobile/tablet
   ================================ */
@media (max-width: 1024px) {
  .gallery-carousel {
    gap: 14px !important; /* small separation */
    padding-inline: 8px; /* avoid photo touching screen edges */
  }

  .gallery-carousel .scrollbar-item {
    flex: 0 0 calc(100% - 14px) !important; /* adjust snap width */
    min-width: calc(100% - 14px) !important;
  }
}
#sinceseven {
  color: #ccc; /* same as footer text */
  text-decoration: none;
  cursor: pointer;
  font-size: 16px; /* match your footer text size */
}

#sinceseven:hover {
  color: var(--coquelicot); /* optional hover effect */
}
/* current desktop/tablet behavior (keep full image) */
.offers-carousel .img-holder {
  width: 100%;
  height: auto;
  max-height: 300px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.offers-carousel .img-holder img.img-cover {
  width: 100%;
  height: 100%;
  object-fit: contain; /* full image on larger screens */
  object-position: center;
}

/* 🔥 MOBILE: fill top & bottom, no gaps */
@media (max-width: 768px) {
  .offers-carousel .img-holder {
    max-height: 210px; /* tweak if you want taller/shorter */
  }

  .offers-carousel .img-holder img.img-cover {
    object-fit: cover !important; /* fill box, no top/bottom gap */
    object-position: center;
  }
}

/* 📲 TABLET (769px–1024px): light cropping, more height */
@media (min-width: 769px) and (max-width: 1024px) {
  .offers-carousel .img-holder {
    max-height: 320px; /* ↑ taller for tablets */
  }

  .offers-carousel .img-holder img.img-cover {
    object-fit: cover; /* crop slightly but show more image */
    object-position: center;
  }
}

/* ==========================================
   FORCE OFFERS TO SHOW ONE FULL CARD CENTERED
   — ONLY ON MOBILE & TABLET
   ========================================== */
@media (max-width: 1024px) {
  /* Remove all extra spacing around the slider */
  .offers-carousel .class-list {
    padding: 0 !important;
    margin: 0 auto !important;
    width: 100% !important;

    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
  }

  /* EXACTLY 1 CARD PER VIEW on small screens */
  .offers-carousel .scrollbar-item {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    scroll-snap-align: center;
  }

  .offers-carousel .class-card {
    width: 100%;
  }

  /* Center carousel + arrows */
  .offers-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
  }

  .offers-carousel .carousel-btn.left {
    left: 20px;
  }

  .offers-carousel .carousel-btn.right {
    right: 20px;
  }
}

/* ==========================================
   DESKTOP — MAKE 2 OFFERS WIDER & PROPORTIONAL
   ========================================== */
@media (min-width: 1025px) {
  .offers-carousel .class-list {
    justify-content: center;
    gap: 40px !important; /* space between the two cards */
    padding: 0 20px !important; /* optional: small horizontal breathing */
  }

  .offers-carousel .scrollbar-item {
    flex: 0 0 47% !important; /* wider than 50% */
    min-width: 47% !important;
    max-width: 47% !important;
  }

  .offers-carousel .class-card {
    width: 100%;
  }
}
/* ==========================================
   DESKTOP — MAKE 2 OFFERS WIDER LIKE REVIEWS
   ========================================== */
@media (min-width: 1025px) {
  .offers-carousel {
    max-width: 1200px; /* same feeling as reviews section */
    margin: 0 auto;
  }

  .offers-carousel .class-list {
    display: flex;
    justify-content: center;
    gap: 30px !important; /* space between cards */
  }

  .offers-carousel .scrollbar-item {
    flex: 0 0 48.5% !important; /* << wider cards */
    min-width: 48.5% !important;
    max-width: 48.5% !important;
  }

  .offers-carousel .class-card {
    width: 100%;
  }
}
/* ==========================================
   DESKTOP — MAKE 2 OFFERS WIDER LIKE REVIEWS
   ========================================== */
@media (min-width: 1025px) {
  .offers-carousel {
    max-width: 1200px; /* same feeling as reviews section */
    margin: 0 auto;
  }

  .offers-carousel .class-list {
    display: flex;
    justify-content: center;
    gap: 30px !important; /* space between cards */
  }

  .offers-carousel .scrollbar-item {
    flex: 0 0 48.5% !important; /* << wider cards */
    min-width: 48.5% !important;
    max-width: 48.5% !important;
  }

  .offers-carousel .class-card {
    width: 100%;
  }
}
.offers,
.offers-carousel {
  padding-top: 20px !important;
}
/* Desktop — widen both offer cards */
@media (min-width: 1025px) {
  .offers-carousel .scrollbar-item {
    flex: 0 0 48% !important;
    min-width: 48% !important;
    max-width: 48% !important;
  }

  .offers-carousel .class-list {
    gap: 30px !important; /* keep nice spacing between the two cards */
  }
}
.price-exp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  width: 100%;
}
/* FORCE styling on mobile because other rules override it */
@media (max-width: 480px) {
  .offer-meta {
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    color: var(--coquelicot) !important;
    margin: 0 !important;
    white-space: normal !important;
  }

  .price-exp-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
  }
}

/* Unified styling for price + expiration */
.offer-meta {
  font-size: 1.6rem;
  font-weight: 700; /* same bold style */
  color: var(--coquelicot); /* same red color */
  margin: 0;
  white-space: nowrap;
}
/* Add spacing between offer cards and scrollbar */
.offers-carousel .class-list {
  padding-bottom: 30px !important; /* adjust 20–40px as you prefer */
}
