main {
    font-family: 'Gilroy', sans-serif;
}




.hero-section {
  position: relative;
  overflow: hidden;
  padding: 40px 0 20px;
}

.hero-slider {
  position: relative;
  width: 100%;
}

.hero-slide {
  position: relative;
  width: 100%;
  aspect-ratio: 2.4 / 1;
  border-radius: 30px;
  overflow: hidden;
}

/* ========================================
   Hero Slider - Multiple Slides Mode
   ======================================== */
.hero-slider.has-multiple {
  position: relative;
  aspect-ratio: 2.4 / 1;
  border-radius: 30px;
  overflow: hidden;
}

.hero-slider.has-multiple .hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
  border-radius: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              visibility 0.8s;
  z-index: 1;
}

.hero-slider.has-multiple .hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Hero Slider Navigation Dots */
.hero-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 0;
}

.hero-dot {
  width: 32px;
  height: 6px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.15);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-dot::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: #FF8338;
  border-radius: 3px;
  transition: none;
}

.hero-dot:hover {
  background: rgba(0, 0, 0, 0.25);
}

.hero-dot.active {
  width: 48px;
  background: rgba(255, 131, 56, 0.25);
}

.hero-dot.active::before {
  width: var(--progress-pct, 0%);
}

/* Hero Slider Arrows */
.hero-arrows {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  pointer-events: none;
  z-index: 10;
}

.hero-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition: all 0.2s ease;
}

.hero-arrow:hover {
  background: #fff;
}

.hero-arrow:active {
  opacity: 0.8;
}

.hero-arrow svg {
  width: 16px;
  height: 16px;
  stroke: #333;
  stroke-width: 2.5;
  fill: none;
}

.hero-arrow--prev svg {
  transform: rotate(180deg);
}

/* Progress element hidden - using CSS variable animation */
.hero-dot .progress {
  display: none;
}

/* Dots indicator label */
.hero-dots::before {
  content: '';
  display: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: 30px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 0px;
  padding-right: 40px;
}

.hero-blur-box {
  max-width: 500px;
  padding: 32px;
  border-radius: 0px 30px 30px 0px;
  backdrop-filter: blur(16px);
  background: rgba(0, 0, 0, 0.30);
  -webkit-backdrop-filter: blur(16px);
}

h1.hero-heading,
h2.hero-heading {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-btn {
  display: inline-block;
  font-weight: 700;
  font-size: 18px;
  padding: 14px 30px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
}


@media (max-width: 768px) {
  .hero-section {
    padding: 10px 0 0;
  }

  .hero-slide {
    aspect-ratio: 9 / 16;

  }

  .hero-media {
    border-radius: 24px;
    object-fit: cover;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 24px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent 60%);
  }

  .hero-blur-box {
    display: flex;
    border-radius: 24px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 20px;
    width: 100%;
  }

  h1.hero-heading,
  h2.hero-heading {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
    text-transform: none;
    margin-bottom: 0;
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 0;
  }

  .hero-btn {
    font-size: 16px;
    padding: 12px 24px;
    border-radius: 999px;
    text-align: center;
    width: auto;
    min-width: 180px;
    white-space: nowrap;
  }

  /* Hero Slider Mobile */
  .hero-slider.has-multiple {
    aspect-ratio: 9 / 16;
    border-radius: 24px;
  }

  .hero-dots {
    margin-top: 12px;
    gap: 6px;
  }

  .hero-dot {
    width: 24px;
    height: 6px;
    border-radius: 3px;
  }

  .hero-dot.active {
    width: 36px;
  }

  .hero-arrows {
    display: none;
  }
}

/* Show only on mobile */
.media-mobile {
  display: none;
}

@media (max-width: 767px) {
  .media-desktop {
    display: none !important;
  }

  .media-mobile {
    display: block !important;
  }
}




.arrivals-section {
  padding: 40px 0;
  color: #fff;
  text-align: center;
}

.arrivals-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: left;
}

.arrivals-subtitle {
  font-size: 20px;
  margin-bottom: 40px;

  text-align: left;
}

.arrivals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.arrival-card {
  border-radius: 30px;
  padding: 20px;
  background-color: #2c2c2c;
  display: flex;
  flex-direction: column;
  text-align: left;
  position: relative;
  overflow: hidden;
  height: 400px;
  justify-content: space-between;
  background-position: center center;
  background-repeat: no-repeat; 
}
.arrival-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 16px 0;
}

.arrival-thumb {
  text-align: center;
  margin: 32px 0 16px;
}
.arrival-thumb img {
  max-height: 160px;
  width: auto;
  object-fit: contain;
}

.arrival-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


.arrival-price {
  font-size: 20px;
  font-weight: 800;
  color: #ff8338;
}

.arrival-rating {
  font-size: 14px;
  color: #ffcc00;
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}
.arrival-content a {
    color: #fff!important;
}
.arrival-btn {
  all: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 18px;
  border-radius: 30px;
  background-color: #ff8338;
  color: #fff !important;
  font-weight: 600;
  gap: 8px;
  margin-top: auto;
  cursor: pointer;
  transition: background-color 0.2s ease;
  text-align: center;
  font-size: 18px !important;
}
.club-button:hover {
  background-color: #e5722f!important;
}
.arrival-btn:hover {
  background-color: #e5722f;
}
.arrival-meta {
    font-size: 16px;
}


@media (max-width: 768px) {
  .arrivals-section {
    padding: 24px 0;
  }
  .arrivals-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .arrival-card {
    height: auto;
    padding: 16px;
    border-radius: 24px;
  }

  .arrival-thumb {
    margin: 16px 0;
  }

  .arrival-thumb img {
    max-height: 120px;
  }

  .arrival-title {
    font-size: 16px;
  }

  .arrival-price {
    font-size: 18px;
  }

  .arrival-meta {
    font-size: 14px;
  }

  .arrival-btn {
    font-size: 14px!important;
    padding: 8px;
    border-radius: 24px;
    align-items: center;
  }
  .arrivals-title {
      
  }
  
  .arrivals-subtitle {
      
  }
}




.club-spinner {
  display: none;
  margin-top: 10px;
  text-align: center;
}
.club-spinner.active {
  display: block;
}
.club-spinner .spinner {
  width: 30px;
  height: 30px;
  border: 4px solid #ccc;
  border-top: 4px solid #333;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.club-message {
  margin-top: 10px;
  padding: 10px;
  display: none;
  border-radius: 5px;
}
.club-message.success {
  background-color: #d4edda;
  color: #155724;
}
.club-message.error {
  background-color: #f8d7da;
  color: #721c24;
}

input[type="checkbox"]:checked {
  accent-color: #ff8338;
}




.deals-section {
    padding: 40px 0;
    max-width: 100%;
    margin: 0 auto;
}

.deals-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: nowrap;
    width: 100%;
}

.deals-banner-side {
    flex: 0 0 340px;
    min-width: 340px;
}

.deals-banner-link {
    display: block;
}

.deals-banner-img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    display: none;
    object-fit: cover;
}

.deals-banner-img.desktop {
    display: block;
}

@media (max-width: 768px) {
    .deals-banner-img.desktop {
        display: none;
    }

    .deals-banner-img.mobile {
        display: block;
    }

    .deals-banner-side {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .deals-products-side {
        width: 100%;
    }
}

/* Products container */
.deals-products-side {
    flex: 1 1 auto;
    min-width: 0;
}

.deals-products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    flex-wrap: nowrap;
    gap: 16px;
}

.deals-title {
    font-size: 28px;
    font-weight: 800;
    color: #272727;
    margin: 0;
    line-height: 1.3;
}

.deals-timer {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    flex-shrink: 0;
    gap: 6px;
    background: #FF8338;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    border: none;
    font-family: Cabin, sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 0 0 0 rgba(255, 131, 56, 0);
}

.deals-timer.pulse {
    box-shadow: 0 0 16px 3px rgba(255, 131, 56, 0.5);
}

.deals-timer-value {
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.5px;
    color: #fff;
    font-size: 14px;
}

.deals-timer-label {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.deals-title-timer-wrap {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: nowrap;
  flex: 1;
  min-width: 0;
}

.deal-custom-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #ff8338;
  color: #fff;
  font-size: 14px;
  padding: 5px 12px;
  border-radius: 30px;
  font-weight: bold;
  z-index: 10;
}


.deals-more-btn {
  background: none;
  border: none;
  color: #272727!important;
  font-weight: 500;
  font-size: 16px;
  padding: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  white-space: nowrap;
  transition: color 0.2s ease;
  cursor: pointer;
  font-family: 'Gilroy', sans-serif; 
}

.deals-more-btn::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  display: inline-block;
  transition: transform 0.25s ease;
  margin-left: 2px;
}

.deals-more-btn:hover::after {
  transform: rotate(45deg) translate(2px, -2px);
}




/* Horizontal scroll for products */
.products-carousel.scroll-x {
    position: relative;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 40px;
}
.products-carousel.scroll-x > * {
    scroll-snap-align: start;
    flex: 1 1 calc((100% - 300px - 5 * 20px) / 6); /* 6 cards + 20px gap */
    min-width: 200px;
    max-width: 500px;
}
.products-carousel.scroll-x::-webkit-scrollbar {
  height: 4px;
}
.products-carousel.scroll-x::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
.products-carousel.scroll-x::-webkit-scrollbar-track {
  background: transparent;
}










.deal-flash-card {
    width: 100%;
    max-width: 100%;
    background: none;
    border: none;
    overflow: hidden;
    font-family: var(--main-font, sans-serif);
    text-align: center;
    box-shadow: none;
    box-sizing: border-box;
}

.deal-flash-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.deal-flash-thumb {
    position: relative;
    background: #e8edf3;
    border-radius: 20px;
    overflow: hidden;
}

.deal-flash-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.deal-flash-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #ff7a2f;
    color: #fff;
    font-size: 14px;
    padding: 5px 12px;
    border-radius: 30px;
    font-weight: bold;
}

.deal-flash-content {
    padding: 10px 0 0;
}

.deal-flash-price {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    text-align: left;
}

/* Green price only when discount exists */
.deal-flash-price:has(.old-discount-wrap) .current {
    color: #008541;
}

.deal-flash-price .old-discount-wrap {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 6px;
}

.deal-flash-price .old {
    font-size: 14px;
    font-weight: 400;
    color: #999;
    text-decoration: line-through;
}

.deal-flash-price .discount {
    font-size: 12px;
    color: #fff;
    background: #ff8338;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.deal-flash-title {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    margin: 10px 0 6px;
    text-align: left;
    
    display: -webkit-box;
    -webkit-line-clamp: 2;       /* limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.deal-flash-rating {
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    margin-bottom: 6px;
}

.deal-flash-bar {
    height: 6px;
    background: #e0e0e0;
    border-radius: 4px;
    margin: 0 8px 0 0;
    overflow: hidden;
}

.deal-flash-bar-inner {
    height: 100%;
    background: #FF8338;
    width: 50%;
}

.deal-flash-stock {
    margin: 6px 0;
    text-align: left;
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
}

.deal-flash-cta {
    background: #ff7a2f;
    color: #fff;
    font-weight: 700;
    border: none;
    padding: 10px 0;
    border-radius: 30px;
    width: 90%;
    margin: 10px auto 16px;
    cursor: pointer;
    font-size: 16px;
}

.blurred {
  position: relative;
  filter: blur(3px);
  pointer-events: none;
  user-select: none;
  opacity: 0.6;
}

.deals-products-side .blurred-overlay {
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100% - 70px);
  background: rgba(255, 255, 255, 0.8);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  color: #333;
}



.deals-section .deals-overlay-message {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(2px);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  pointer-events: none;
}

.deals-section .overlay-inner {
  font-family: 'Gilroy', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #222;
  max-width: 300px;
  line-height: 1.5;
}
.deals-more-btn-mobile {
    display: none;
}




.journeys_section {
  padding: 40px 0;
  background: #fff;
  text-align: center;
}

.journeys_wrapper {
  margin: 0 auto;
}



.journeys_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.journey_card {
  position: relative;
  display: block;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  background: none;
  transition: transform 0.3s ease;
  aspect-ratio: 1 / 1;
  height: auto;
}



.journey_image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.journey_card:hover .journey_image {
  transform: scale(1.05);
}

.journey_overlay {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  color: #fff;
    background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.15) 10%,
    rgba(0, 0, 0, 0) 90%
  );
}

.journey_title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.journey_button {
  background: #ff8338;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border-radius: 40px;
  padding: 12px 0;
  text-align: center;
  transition: background 0.3s ease;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25), 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.journey_button:hover {
  background: #e75f1f;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
  .journeys_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .journeys_grid {
    grid-template-columns: 1fr;
  }

}











.club-section {
  padding: 40px 0;
}

.club-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border-radius: 30px;
  padding: 40px 40px 0;
  position: relative;
  overflow: hidden;
}

.club-content {
  max-width: 90%;
  width: 100%;
  margin-left: auto;
}

.club-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
}

.club-text {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.club-text strong {
  font-weight: 700;
}

.club-form input[type="text"],
.club-form input[type="email"] {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 12px;
  border-radius: 30px;
  border: none;
  font-size: 16px;
}

.club-checkbox {
  font-size: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 16px;
  line-height: 1.4;
}

.club-checkbox input {
  margin-top: 4px;
  transform: scale(1.7);
}

.club-button {
  color: #FFF!important;
  background-color: #FF8338!important;
  font-size: 20px!important;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  min-width: 240px!important;
}

.club-button:hover {
  background-color: #FF8338;
}

.club-image {
  display: flex;
  justify-content: center;
}
.club-image img {
  max-width: 100%;
  height: auto;
  border-radius: 30px;
}

.club-message {
  margin-top: 10px;
  font-size: 14px;
}



.club-image-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.club-logo-bg {
  position: absolute;
  top: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.club-logo-bg img {
  width: 100%;
  height: auto;
  max-width: none;
}

.club-image {
  z-index: 1;
}

@media (max-width: 768px) {
  .club-inner {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    padding: 0;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
  }

  .club-image-wrap {
    width: 100%;
    position: relative;
    padding: 0 20px;
  }

  .club-logo-bg {
    position: absolute;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    pointer-events: none;
    padding: 0 20px;
  }

  .club-logo-bg img {
    width: 100%;
    height: auto;
    max-width: none;
  }

  .club-image {
    position: relative;
    z-index: 1;
  }

  .club-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    display: block;
  }

  .club-content {
    padding: 32px 20px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    max-width: none;
  }

  .club-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
  }

  .club-text {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 24px;
    text-align: left;
  }

  .club-form {
    width: 100%;
  }

  .club-form input[type="text"],
  .club-form input[type="email"] {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    border-radius: 30px;
    border: none;
    margin-bottom: 14px;
  }

  .club-checkbox {
    font-size: 12px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 20px;
    text-align: left;
    line-height: 1.4;
  }

  .club-checkbox input {
    transform: scale(1.2);
    margin-top: 3px;
  }

  .club-button {
    width: 100%;
    font-size: 16px;
    padding: 16px;
    border-radius: 30px;
    font-weight: 700;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .club-message {
    font-size: 14px;
    margin-top: 10px;
  }
}











.products-carousel-wrapper {
  position: relative;
}




/* === Common section styles === */

.catSectionWrap {
  padding: 40px 0;
}

.journeys_title,
.catSection_title {
  text-align: left;
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #272727;
}

.journeys_subtitle,
.catSection_subtitle {
  text-align: left;
  font-size: 20px;
  color: #272727;
  margin: 0 0 30px;
}

/* --- Desktop: grid --- */
.catCarousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card */
.catCard {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  background: #f3f3f3;
  transition: transform 0.2s ease;
}
.catCard:hover {
  transform: translateY(-4px);
}
.catCard_media {
  position: relative;
  width: 100%;
  padding-top: 100%; /* square */
  overflow: hidden;
  background: #ccc; /* fallback */
}
.catCard_video,
.catCard_img {
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.catCard_bottom {
  background: #476e7c;
  color: #fff;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.catCard_title {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
}
.catCard_desc {
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 1.3;
}
.catCard_arrow {
  flex-shrink: 0;
  width: 28px; 
  height: 28px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- Mobile: carousel --- */
@media (max-width: 768px) {
    .catSectionWrap {
    padding: 24px 0;
    }
    .catCard_title {
    font-size: 20px;
    }
    .catCarousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    }
    .catCard {
    flex: 0 0 100%; 
    scroll-snap-align: start;
    }
    .catCard:hover {
    transform: none;
    }
    .arrivals-title,
    .journeys_title,
    .catSection_title {
    font-size: 24px;
    text-align: center;
    }
    .arrivals-subtitle,
    .journeys_subtitle,
    .catSection_subtitle {
    font-size: 16px;
    text-align: center;
    margin-bottom: 20px;
    padding: 0 8px;
    }
    
    /* Dot indicators */
    .catCarouselDots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    }
    .catCarouselDots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    transition: background 0.3s;
    cursor: pointer;
    }
    .catCarouselDots .dot.active {
    background: #476e7c;
    }
    .catCarousel {
    -ms-overflow-style: none;  /* IE/Edge */
    scrollbar-width: none;     /* Firefox */
    }
    .catCarousel::-webkit-scrollbar {
    display: none;             /* Chrome, Safari */
    }

}





.car-model-section {
  padding: 40px 0;
}

.car-model-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  width: 100%;
}

.car-model-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  background: #FF8338;
  border-radius: 30px;
  padding: 16px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s ease;
}

.car-model-card:hover {
  transform: translateY(-4px);
}

.car-model-logo img {
  max-width: 80px;
  height: auto;
  margin-bottom: 16px;
}

.car-model-label {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  font-style: normal;
  font-weight: 800;
  margin:0!important;
}

@media (max-width: 768px) {
  .car-model-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .car-model-label {
    font-size: 14px;
  }
}




/* WHY section - 4 cards per row */
.why-section .whyGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-section .testimonialCard {
  aspect-ratio: 1/1;
  border-radius: 24px;
  overflow: hidden;
  background: #e9e9e9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-snap-align: start;
}

.testimonialCard_inner {
  padding: 20px;
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonialCard_header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.testimonial_avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial_name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.testimonial_stars {
  font-size: 20px;
  color: #fff;
}

.testimonial_stars .star {
  opacity: 0.4;
}

.testimonial_stars .star.filled {
  opacity: 1;
}

.testimonial_text {
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
}

.testimonialMedia {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mobile carousel */
@media (max-width: 768px) {
  .why-section .whyGrid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
  }

  .why-section .testimonialCard {
    flex: 0 0 100%;
    min-width: 100%;
  }

}













/* FAQ Section */
.faq-section {
  padding: 40px 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  background: #f9f9f9;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 600;
  color: #272727;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s ease;
}
.faq-question:hover {
  background: #f0f0f0;
}

.faq-icon {
  font-size: 24px;
  font-weight: bold;
  color: #272727;
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  background: #fff;
}

.faq-answer > div {
  padding: 16px 0;
}

@media (max-width: 768px) {
  .faq-question {
    font-size: 16px;
  }
  .faq-answer {
    font-size: 14px;
  }
}
















/* Mobile - 3 cards per row, no scroll */
@media (max-width: 768px) {
    .products-carousel.scroll-x {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    overflow: visible;
    padding-bottom: 0;
    }
    
    .products-carousel.scroll-x > * {
    flex: initial;
    min-width: 0;
    max-width: 100%;
    }
    .deal-flash-price {
      font-size: 14px;
    }
    .deal-flash-price .old {
      font-size: 11px;
    }
    .deal-flash-price .discount {
      font-size: 10px;
      padding: 1px 4px;
    }

    .deal-flash-badge,
    .deal-custom-badge {
    font-size: 9px;
    padding: 3px 8px;
    border-radius: 20px;
    bottom: 8px;
    left: 4px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    white-space: nowrap;
    height: 18px;
    }
    
  .deals-section {
    background: linear-gradient(to bottom, rgba(255, 228, 207, 0) 0%, #ffc8a1 60%, #ffffff 90%);
    border-radius: 0 0 20px 20px;
    padding: 24px 0;
  }
    .deals-wrapper {
        flex-direction: column;
        gap: 16px;
    }
    .deals-title {
    font-size: 24px;
    font-weight: 700;
    color: #272727;
    margin: 0;
    }
    
  .deals-subtitle {
    font-size: 12px;
    font-weight: 500;
    color: #FF8338;
    margin-top: 4px;
  }

.deals-timer {
    font-size: 15px;
    padding: 6px 12px;
    gap: 6px;
    flex-shrink: 0;
}

.deals-timer-value {
    font-size: 18px;
    font-weight: 700;
}

.deals-timer-label {
    display: inline;
}

.deals-title-timer-wrap {
    display: flex;
    align-items: center !important;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

.deals-title {
    flex: 1;
    min-width: 0;
    font-size: 20px;
    line-height: 1.3;
}

    .deals-products-side {
    background: #fff;
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  }
    .deals-more-btn {
    display: none;
  }
  
  
  .deals-more-mobile-wrap {
    display: flex;
    justify-content: flex-end;
    padding: 0 8px;
    margin-top: 24px;
  }

  .deals-more-link-mobile {
    font-size: 16px;
    font-weight: 600;
    color: #272727;
    text-decoration: none;
    font-family: 'Gilroy', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
  .deals-more-btn-mobile {
      display: block;
  }

  .deals-more-link-mobile:hover {
    text-decoration: underline;
  }
  
  
  .deal-flash-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
    
  .deal-flash-price .current {
    font-weight: 700;
  }
    
  .deal-flash-price .old-discount-wrap {
    display: flex;
    flex-direction: row;
    gap: 6px;
    margin-left: 0;
  }
    
  .deal-flash-price .old-discount-wrap .old {
      font-size: 12px;
      text-decoration: line-through;
    }
    
    .old-discount-wrap .discount {
      font-size: 12px;
      font-weight: 600;
    }


  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }

  .carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    transition: background 0.3s ease;
    cursor: pointer;
  }

  .carousel-dots .dot.active {
    background: #FF8338;
  }

  .carousel-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    scrollbar-width: none; /* Firefox */
  }

  .carousel-wrapper::-webkit-scrollbar {
    display: none; /* Chrome */
  }

  .carousel-item {
    flex: 0 0 100%;
    scroll-snap-align: start;
  }
    .club-section,
  .car-model-section,
  .faq-section,
  .journeys_section {
  padding: 24px 0;
      
  }

.deals-timer {
    font-size: 14px;
    padding: 5px 10px;
    gap: 5px;
    flex-shrink: 0;
}

.deals-timer-value {
    font-size: 16px;
    font-weight: 700;
}

.deals-title-timer-wrap {
    justify-content: space-between;
    gap: 8px;
}

.deals-title {
    font-size: 18px;
    flex: 1;
    min-width: 0;
    line-height: 1.3;
}


}

