/* Remove background from body */
body {
  background-image: none; /* No background image on the body */
  background-color: #0f121c; /* Set a solid background color for the rest of the page */
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

/* --- Hero Slider Section --- */
.hero-slider-section {
  padding: 20px 0 0px;
  position: relative;
  overflow: hidden;

  /* Apply the geometric pattern background ONLY to this section */
  background-image: url("https://i.ibb.co/j9gss22Y/bg.png");
  background-size: cover; /* Cover the section */
  background-position: center bottom; /* Adjust position as needed */
  background-repeat: no-repeat; /* No tiling */
  background-color: transparent; /* Ensure transparency to let the image show */
  padding-left: 5%;
  padding-right: 5%;
  height: 90%;
  margin-top: 0px;
}

/* This is the element that creates the subtle radial glow effect.
   It will now layer on top of the geometric background image. */
.hero-slider-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(56, 102, 255, 0.15) 0%,
    rgba(56, 102, 255, 0) 65%
  );
  z-index: 1;
  pointer-events: none;
  max-width:2000px;
   margin-left: auto;
  margin-right: auto;
}

/* Container and Section Title */
.hero-slider-section .container {
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 20px;
  max-width: 1600px;
}

/* Section Title with part highlighted */
.section-title {
  color: var(--Component-colors-Alpha-alpha-white-100, #fff);
  font-family: Outfit;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 57.2px; /* 119.167% */
  letter-spacing: -1.3px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.section-title strong {
  color: #3866ff;
  font-weight: 900;
}

/* Tabs container */
.slider-tabs {
  display: flex;
  justify-content: flex-start;
  gap: 50px;
  margin-bottom: 40px;
  border-bottom: 2px solid #3866ff22;
}

/* Individual tabs */
.slider-tab {background: transparent; border: none;cursor: pointer;position: relative;padding-bottom: 12px;transition: color 0.3s ease;color: var(--Component-colors-Alpha-alpha-white-50, rgba(255, 255, 255, 0.50));font-family: Outfit;
font-size: 14px;font-style: normal;font-weight: 600;line-height: 20px;
}

/* Active and hover state */
.slider-tab.active,
.slider-tab:hover {
  color: #ffc750;
}

/* Active tab underline */
.slider-tab.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #ffc750;
  border-radius: 4px;
}

/* --- Swiper Container (Main Game Cards) --- */
.hero-swiper {
  width: 100%;
}

.swiper-wrapper {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center;
}

/* Slide */
.swiper-slide {
  width: 268px !important;
  height: 486px !important;
  transition: transform 0.5s ease, filter 0.5s ease;
  cursor: pointer;
  position: relative;
}

/* Blur inactive slides - Adjusted values for more prominence as in original screenshot */
.swiper-slide:not(.swiper-slide-active) {
  /* Blurfilter: brightness(0.4) blur(3px); */
}

/* Active slide styling */
.swiper-slide-active {
  filter: brightness(1);
  transform: scale(1);
  z-index: 10;
}
.notify-btn{    background: none;
    color: #fff;
    border: none;
    font-family: Outfit;
    font-weight: 600;}
/* Card */
.game-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5);
  background-color: #111827;
  height: 488px;
  width: 358px;
}

/* Bestseller badge */
.bestseller-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #0045ff;
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 16px;
  z-index: 15;
  text-transform: uppercase;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Card Image */
.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* Card Info */
.card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #00000052;backdrop-filter: blur(7px);

  padding: 20px;
  color: #fff;
  text-align: left;
  z-index: 10;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
}

.card-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 6px 0;
}

.card-info p {
  font-size: 0.9rem;
  color: #ffc750;
  margin: 0;
}

.card-info p span {
  border-radius: 5px;
  padding: 4px 8px;
  background: #0045ff;
  color: #ffffff;
  font-weight: 700;
  margin-left: 8px;
}

/* Swiper Navigation arrows (prev/next) */
.swiper-button-next,
.swiper-button-prev {
position: absolute!important;
    top: 50%!important;
    transform: translateY(-50%)!important;
    color: white!important;
    font-size: 24px!important;
    width: 44px!important;
    height: 44px!important;
    display: flex!important;
    align-items: center!important;
    justify-content: center!important;
    cursor: pointer!important;
    transition: background 0.3s 
ease;
    border-radius: 51px!important;
    border: 1px solid #376DFF!important;
    background: rgba(0, 69, 255, 0.18)!important;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.41);border-radius: 51px!important;
border: 1px solid #376DFF!important;
background: rgba(0, 69, 255, 0.18)!important;
box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.41)!important;

}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after, .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{font-size: 12PX!important;}
.swiper-button-next {
  right: 20px;
}

.swiper-button-prev {
  left: 20px;
}

/* Swiper Pagination (dots) - HIDE THEM */
.swiper-pagination {
  display: none !important;
}
header.header {
  position: relative;
  z-index: 9999;
}

/* Ensure the .tabs-content also allows the background through */
.tabs-content {
  position: relative;
  z-index: 1;
  background-image: none; /* Crucial: no background on tabs-content itself */
  background-color: transparent; /* Crucial: transparent to show section's background */
}

.swiper {
  position: relative;
  z-index: 1;
}

.tabs-content .slider-pane {
  display: none;
   max-width:2000px;
   margin-left: auto;
  margin-right: auto;
}

.container{
   max-width:2000px;
   margin-left: auto;
  margin-right: auto;
}
.tabs-content .slider-pane.active {
  display: block;
}
/* --- Partners Section --- */
.partners-section {
  background-color: transparent;
  padding: 30px 0;
  margin-top: 50px;
}

.partners-swiper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.partners-swiper .swiper-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.partners-swiper .swiper-slide {
  width: auto !important;
  height: auto !important;
  max-width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  box-sizing: border-box;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
  filter: grayscale(100%);
  transform: scale(1);
}
@media (max-width: 767px) {
  .partners-swiper .swiper-slide {
    padding: 10px 10px;
  }
}
.product-swiper-next, .product-swiper-prev,
 .top-games-swiper-next, .top-games-swiper-prev, 
 .games-swiper-next, .games-swiper-prev, .category-swiper-next,
  .category-swiper-prev, .budget-swiper-next, .budget-swiper-prev
  {width: 36px;height: 36px;}
.partners-swiper .swiper-slide:hover {
  filter: grayscale(0%);
  transform: scale(1.15);
}

.partners-swiper .platform-icon {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  display: inline-block;
  pointer-events: none; /* so hover effect applies only on slide */
}

/* ====== Product Card Section (if used elsewhere, not directly in this hero section) ====== */

/* --- The Card Link Wrapper --- */
.product-card {
  display: flex;
  flex-direction: column;
  background-color: #1a1d25;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid #303133;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
}

/* --- Glow Effects (More Prominent) --- */
.product-card.glow-effect-purple {
  border-color: #8a2be2;
  box-shadow: 0 0 30px -5px rgba(138, 43, 226, 0.6);
}

/* --- Card Header & Badges (Pixel-Perfect) --- */
.product-card-header {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

a.product-card .badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

a.product-card .badge.bestseller {
  background-color: #8a2be2;
}
a.product-card .badge.hot {
  background-color: #e53e3e;
}
a.product-card .badge.discount {
  background-color: #38a169;
}
a.product-card .badge.popular {
  background-color: #ffc800;
  color: #1a1d25;
}

/* --- Card Image Area (CRITICAL FIX) --- */
.product-card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  flex-grow: 1;
}

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

/* --- Card Footer (EXACT STYLING) --- */
.product-card-footer {
  background-color: #1f222b;
  padding: 16px;
  flex-shrink: 0;
}

.product-name {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 0 12px 0;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.price {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #ffc800;
}
.product-stock-info {
  font-size: 12px;
  color: #a0aec0;
  font-weight: 500;
}
.product-card-section {
  display: flex;
  padding: 30px 70px;
  flex-direction: column;
  align-items: flex-start;
  gap: 36px;
  align-self: stretch;
}
.hero-swiper .swiper-slide {
  width: 220px; /* match to make layout stable */
  transition: transform 1.2s cubic-bezier(0.42, 0.61, 0.36, 1);
}
/* Navigation button styles */
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  color: white;
  font-size: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;border-radius: 51px;
border: 1px solid #376DFF;
background: rgba(0, 69, 255, 0.18);
box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.41);
}

.slider-prev:hover,
.slider-next:hover {
  background: rgba(0, 123, 255, 1);
}

.slider-prev {
  left: 16px;
}

.slider-next {
  right: 16px;
}
/* Mobile adjustments */
.custom-slide {
  width: 358px;
  height: 100%;
  position: absolute; /* 👈 required for layering */
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.5s ease;
  will-change: transform, opacity;
  
}
/* Wrapper must be relative for children to position absolutely */
.custom-wrapper {
  position: relative;
  width: 100%;
  height: 488px;
  display: flex;
  overflow: hidden;
  justify-content: center;
}

.card {
  width: 100% !important;
  height: 358px;
  position: absolute;
  top: 0;
  transition: all 0.5s ease;
  transform-origin: center center;
  border-radius: 20px;
}
.wrapper {
  position: relative;
  width: 100%;
  height: 500px; /* enough to show full card */
  overflow: visible; /* allow cards to overflow if needed */
}
/* --- Fix for Swiper Slide Sizing --- */
.swiper-slide,
.swiper-slider-prodcut {
  flex-shrink: 0;
  height: auto;
}

.swiper {
  width: 85%;
}
.product-slider-section-figma {
  background: #010014;
  padding: 60px 0;
  font-family: "Outfit", sans-serif;
}
.blog-slider-section-figma {
  background: #010014;
  padding: 60px 0;
  font-family: "Outfit", sans-serif;
}
.product-slider-section-figma .container {
  margin: 0 auto;
  padding: 0 20px;
   max-width:2000px;
   margin-left: auto;
  margin-right: auto;
}
.title-line .title{color: #FFF;
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: normal;
letter-spacing: -1.3px;}
.categories-section {
  background: #010014;
  padding: 60px 0;
  font-family: "Outfit", sans-serif;
}
.categories-section .container {
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Header */
.section-header-figma {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0 15px; /* Add padding to align with slider content */
  padding-left: 5%;
  padding-right: 5%;
}

.section-title-wrapper {
  flex-direction: column;
}

.title-line {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
}

.badge-hot-title {
display: flex;color: #FFC750;
padding: 2px 10px;
justify-content: center;
align-items: center;
gap: 10px;
border-radius: 30px;
border: 2px solid rgba(255, 255, 255, 0.05);
background: rgba(255, 255, 255, 0.07);
backdrop-filter: blur(132.75px);
}

.section-header-figma .title {
margin: 0;color: var(--Component-colors-Alpha-alpha-white-100, #FFF);font-family: Outfit;
font-size: 36px;font-style: normal;font-weight: 700;
line-height: 60px;letter-spacing: -0.96px;
}

.section-subtitle {
color: #B4B9D0;font-family: Outfit;font-size: 18px;font-style: normal;font-weight: 400;line-height: 28px; /* 155.556% */margin: 0;}

.btn-all-cards {
  background-color: #ffc750;
  color: #191919;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s;
  border: 1px solid #3a3d46;
  white-space: nowrap;
}

.btn-all-cards:hover {
  background-color: #3b4049;
  color: #fff;
}

/* --- Swiper and Card Styles --- */

.swiper-container-wrapper {
  position: relative; /* Needed to position navigation arrows */
}

.product-swiper {
  padding: 10px 15px; /* Padding to prevent card shadows from being cut off */
}

.swiper-slide {
  height: auto; /* Allow card to define its own height */
}

.product-card-figma {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5);
  background-color: #111827;
  width: 100%;
  max-width: 100%;
  display: flex;
  height: 100%;
  transition: transform 0.3s ease;
  border-width: 1px;
  border-style: solid;
  border-color: #6d6d6d4f;
}

.product-card-figma:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

/* IMAGE FIX: Image now fills its container */
.product-image-wrapper {
  position: relative;
  overflow: hidden; /* Ensure image corners are clipped */
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

.product-card-figma:hover .product-image-wrapper img {
  transform: scale(1.05); /* Subtle zoom on hover */
}

/* Badges */
.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
}

.badge {
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 11px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  backdrop-filter: blur(5px);
  background-color: rgba(34, 37, 45, 0.6);
}

.badge:not(:first-child) {
  margin-left: auto;
}

.badge--hot {
  background-color: #ff4f4f;
}
.badge--discount {
  background-color: #ff9800;
}
.badge--bestseller {
  background-color: #3152f5;
}

.product-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
    background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  padding: 13px;
  color: #fff;
  text-align: left;
  z-index: 10;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  display: flex;
  flex-direction: column;
  padding-bottom: 23px;
  align-items: flex-start;
}

.product-info {
  flex-grow: 1;
}

.product-brand-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 2px;
  font-family: 'Outfit', sans-serif;

  /* Force consistent height for 2 lines */
  line-height: 1.3rem;
  min-height: calc(1.3rem * 2); /* exactly two lines */
  max-height: calc(1.3rem * 2);

  /* Text control */
  display: -webkit-box;
  -webkit-line-clamp: 2;   /* show max 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-footer {
  gap: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-info {
  display: flex;
  gap: 2px;
  align-items: center;
}

.price-label {
  padding-right: 48px;
  font-size: 0.9rem;
  color: #ffc750;
  margin: 0;
  font-weight: 700;
}

.price {
  border-radius: 5px;
  padding: 3px 13px;
  background: #0045ff;
  color: #ffffff;
  font-weight: 700;
  margin-left: 8px;
}

.duration-left {
  font-size: 13px;
  color: #8a8a93;
  font-weight: 500;
}

/* Swiper Navigation Arrows */
.product-swiper-next,
.product-swiper-prev,
.top-games-swiper-next,
.top-games-swiper-prev,
.games-swiper-next,
.games-swiper-prev,
.category-swiper-next,
.category-swiper-prev,
.budget-swiper-next,
.budget-swiper-prev {
  color: #fff !important;
  background-color: rgba(34, 37, 45, 0.8);
  border: 1px solid #3a3d46;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50%;
  backdrop-filter: blur(5px);
  transition: background-color 0.3s;
}

.product-swiper-next:hover,
.product-swiper-prev:hover,
.top-games-swiper-next:hover,
.top-games-swiper-prev:hover,
.games-swiper-next:hover,
.games-swiper-prev:hover,
.category-swiper-next:hover,
.category-swiper-prev:hover,
.budget-swiper-next:hover,
.budget-swiper-prev:hover {
  background-color: #3b4049;
}

.product-swiper-next::after,
.product-swiper-prev::after .top-games-swiper-next::after,
.top-games-swiper-prev::after,
.games-swiper-next::after,
.games-swiper-prev::after,
.category-swiper-next::after,
.category-swiper-prev::after,
.budget-swiper-next::after,
.budget-swiper-prev::after {
  font-size: 18px !important;
  font-weight: 900;
}

.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
/* ADD THIS CODE TO FIX BLUR/OPACITY */
.product-swiper .swiper-slide,
.top-games-swiper .swiper-slide,
.games-swiper .swiper-slide,
.categories-swiper .swiper-slide,
.budget-swiper .swiper-slide {
  opacity: 1 !important;
  filter: none !important;
}
.categories-section {
  padding: 80px 0;
  font-family: "Outfit", sans-serif;
  padding-left: 5%;
  padding-right: 5%;
  margin: 0 auto;
}

.section-header-categories {
  text-align: left;
  margin-bottom: 40px;
}

.categories-badge {
  display: inline-block;
  padding: 6px 14px;
  background-color: #ffffff17;
  border: 1px solid #ffffff17;
  color: #ffc750;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

.categories-title {
  font-size: 36px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.categories-grid {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 5%;
  padding-left: 5%;
}

.category-card {
  width: 782px;
  height: 450px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  border: 1px solid #2a2a32;
  overflow: hidden;
  position: absolute;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

/* This pseudo-element creates the dark gradient at the bottom */
.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 14, 23, 0) 20%,
    rgba(11, 14, 23, 0.9) 80%,
    #0b0e17 100%
  );
  z-index: 1;
}

.category-card-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.category-card-info {
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  background: rgba(0, 69, 255, 0.46);
  backdrop-filter: blur(2px);
    border-width: 1px;
    border-style: solid;
    border-color: #0066ff;padding: 12px 16px;
}

.category-card-info h3 {
  font-size: 28px;
  font-weight: 600;
  color: #eaeaea;
  margin: 0 0 8px 0;
}
.category-card-image {
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* Video Games behind */
.category-card:first-child {
  z-index: 1;
  left: -80px;
}

.category-card:first-child {
  z-index: 1;
  left: 5%;
  transform: translateX(-15%);
}

.blog-section {
  font-family: "Outfit", sans-serif;
}

/* Grid container */
.blog-grid-v2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

/* Responsive layout */
@media (min-width: 992px) {
  .blog-grid-v2 {
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
      "large small_1"
      "large small_2";
    gap: 32px;
  }

  .blog-grid-v2 .blog-card-v2:nth-child(1) {
    grid-area: large;
    margin-left: 0; /* remove fixed margin */
    width: 100%;
    height: auto;
  }
}

.small-card-thumbnail {
  width: 370px;
  height: 201px;
  object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;
}

.small-card-text {
  flex: 1;
}

.small-card-text h3 {
  font-size: 16px;
  font-weight: 600;
  color: #eaeaea;
  margin: 0 0 6px 0;
  line-height: 1.4;
}

.small-card-text p {
  font-size: 13px;
  color: #8a8a93;
  line-height: 1.5;
  margin: 0;
}

/* Optional badge (like "Less than 10$") */
.badge {
  display: inline-block;
  background-color: #ffc107;
  color: #000;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 16px;
  margin-bottom: 8px;
}

.why-us-section {
  padding: 80px 0;
  font-family: "Outfit", sans-serif;
  background-color: #010014; /* Matching the dark background */
  padding-left: 6%;
  padding-right: 6%;
}

.section-header-why-us {
  margin-bottom: 60px;
  /* Reusing classes from previous components for consistency */
}

.features-grid {
  display: grid;
  margin-left: 30px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.feature-item {
  gap: 10px;
  display: flex;
  text-align: flex-start;
  flex-direction: column;
  align-items: flex-start;
}

.feature-icon {
  background: #262731;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, border-style 0.3s;
}

.feature-item:hover .feature-icon {
  background-color: rgba(255, 199, 89, 0.1);
  border-style: solid; /* Change border to solid on hover */
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  color: #ffc759; /* Yellow icon color */
}

.feature-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 12px 0;
}

.feature-item p {
  font-size: 16px;
  color: #8a8a93;
  line-height: 1.6;
  margin: 0;
}
.browse-categories-section {
  padding: 60px 0;
  background-color: #010014;
  padding-left: 1%;
  padding-right: 1%;
}
/* Keep existing card layout */
.category-card {
  position: relative;
  overflow: hidden;
}

/* Anchor the content to the bottom of the card */
.content-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 24px 32px;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  z-index: 2;
}

/* Info Styling */
.category-card-info h3 {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}

.category-card-info p {
  font-size: 13px;
  color: var(--Component-colors-Alpha-alpha-white-100, #FFF);  margin: 0;
  line-height: 1.5;line-height: normal;letter-spacing: -0.2px;
}

.category-card-button { width: 100%; background-color: #3152f5; color: #ffffff; padding: 20px 32px; text-decoration: none; font-weight: 600; font-size: 16px; text-align: center; transition: background-color 0.3s ease; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; display: flex; align-items: center; justify-content: center; gap: 5px; } 
.category-card-button:hover { background-color: #4a80ff; }

/* NEW: Blurred Icon Row */
.platform-icon-row {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 26px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  padding: 20px 40px;
  border-radius: 48px;
  z-index: 3;
}

.platform-icon-row img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.categories-section .categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 0; /* remove spacing for overlap */
  position: relative;
}
.categories-section .category-card {
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Left card (Video Games) - BEHIND */
.categories-section .category-card:first-child {
  position: relative;
  z-index: 1;
  margin-right: -40px; /* overlaps under right card */
}

/* Right card (Gift Cards) - FRONT */
.categories-section .category-card:nth-child(2) {
  position: relative;
  z-index: 2;
  transform: translateX(-20px); /* pull left over the first card */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}
.categories-section .category-card:nth-child(2):hover {
  transform: translate(-20px, -20px); /* X: left overlap, Y: raised */
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}
.platform-icon-row a img {
  transition: transform 0.3s ease;
}

.platform-icon-row a:hover img {
  transform: scale(1.2) translateY(-2px);
}

.category-card-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000000ab;
  padding: 13px;
  color: #fff;
  text-align: left;
  z-index: 10;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  display: flex;
  flex-direction: column;
  padding-bottom: 23px;
  align-items: flex-start;
}

.category-card-footer h4 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  color: #8a8a93;
}
.author-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.author-name {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}

.publish-date {
  font-size: 12px;
  color: #aaa;
}

@media (max-width: 1920px) {
  .hero-slider-section .container {
    padding: 12px 20px;
  }
}

@media (max-width: 1500px) {
  .hero-slider-section .container {
    padding: 0px 0px;
  }
}

@media screen and(max-width: 1700px) {
  .game-card {
    width: 290px;
    height: 380px;
  }
}
@media screen and (max-width: 1500px) {
  .section-title {
    font-size: 1.6rem;
  }
  .game-card {
    width: 290px;
    height: 370px;
  }
  .custom-wrapper {
    height: 418px;
  }
}

/* Responsive: scale down on smaller screens */
@media screen and (max-width: 1700px) {
  .swiper-slide {
    width: 250px !important;
    height: 400px !important;
  }

  .game-card {
    width: 308px;
    height: 380px;
  }
  .custom-wrapper {
    height: 380px;
  }
}
@media (max-width: 1024px) {
  .swiper-slide {
    width: 230px !important;
    height: 335px !important;
  }.categories-grid{gap: 0px;}
}

@media (max-width: 820px) {
  .swiper-slide {
    width: 196px !important;
    height: 280px !important;
  }.platform-icon-row{padding: 5px 20px;gap: 20px;}.platform-icon-row img{width: 42px;height: 42px;}
}
@media screen and (max-width: 768px) {
  .custom-slide {
    width: 90vw;
    max-width: 200px;
  }
  .slider-prev,
  .slider-next {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  .slider-prev {
    left: 8px;
  }
  .slider-next {
    right: 8px;
  }
  .swiper-slide {
    width: 260px !important;
    height: 400px !important;
  }
  .section-title {
    font-size: 1.4rem;
    text-align: center;
    padding-left: 0;
  }
  .slider-tabs {
    justify-content: center;
    gap: 20px;
    padding-left: 0;
    white-space: nowrap;
  }
  .hero-swiper {
    padding: 0;
  }
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
  .hero-slider-section {
    background-image: url("https://aussui.fra1.cdn.digitaloceanspaces.com/bg%20(2).webp");
  }
  .hero-slider-section {
    margin-top: 0;
  }
  .hero-slider-section .container {
    padding: 0 20px;
  }
  .slider-tabs {
    margin-bottom: 10px;
  }
  .slider-tab {
    font-size: 0.8rem;
  }
  .title-line {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 10px;
    margin-bottom:0px;
  }
  .section-header-figma .title {
    font-size: 15px;
    padding-left: 10px;
  }
  .section-subtitle {

    font-size: 11px !important;line-height: 15px;
    margin-left: 10px;
    margin-top: 5px;
    
  }
  .section-header-figma{
margin-bottom: 10px;  }
  .product-slider-section-figma {
    padding: 10px 0;
  }
  .price {
    font-size: 12px;
  }
  .product-brand-title {
    font-size: 12px;
  }
  .badge {
    padding: 2px 5px;
    border-radius: 8px;
    font-size: 8px;
  }
  .price-label {
    font-size: 0.7rem;
  }
  .product-content {
    padding-bottom: 2px;
    padding: 7px;
  }
  .product-slider-section-figma .container {
    padding: 0px;
  }
  .btn-all-cards {
    padding: 5px 13px;
    font-size: 13px;
  }
  .section-header-figma {
    flex-wrap: nowrap;align-items: center;
  }
  .section-header-figma .title{line-height: 15px;}
  .swiper-slide {
    width: 200px !important;
    height: 280px !important;
  }
  .badge-hot-title{
    font-size: 12px;
  }
}
@media (max-width: 430px) {
  .game-card {
    width: 180px;
    height: 270px;
  }
  .hero-slider-section {
    padding: 0 0;
  }
  .custom-wrapper {
    height: 300px;
  }
  .partners-swiper .platform-icon {
    margin-top: 1px;
    max-height: 60px;
  }
  .swiper-slide {
    width: 170px !important;
    height: 270px !important;
  }
  .swiper-container-wrapper {
    padding-top: 20px;
  }
}
@media (max-width: 414px) {
  .swiper-slide {
    width: 167px !important;
    height: 255px !important;
  }
}
@media (max-width: 412px) {
  .swiper-slide {
    width: 167px !important;
    height: 255px !important;
  }
}
@media (max-width: 393px) {
  .swiper-slide {
    width: 158px !important;
    height: 255px !important;
  }
}

@media (max-width: 390px) {
  .swiper-slide {
    width: 158px !important;
    height: 240px !important;
  }
}
@media (max-width: 375px) {
  .swiper-slide {
    width: 157px !important;
    height: 250px !important;
  }
}
@media (max-width: 360px) {
  .swiper-slide {
    width: 145px !important;
    height: 242px !important;
  }
}
@media (max-width: 344px) {
  .swiper-slide {
    width: 136px !important;
    height: 230px !important;
  }
}

@media (min-width: 1700px) {
  .swiper-slide {
    width: 298px !important;
    height: 430px !important;
  }
}

@media (max-width: 768px) {
  .categories-section {
    width: 100%;
    padding: 24px 16px;
  }

  .categories-section .categories-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .categories-section .category-card {
    width: 100%;
    max-width: 360px;
    height: 420px;
    border-radius: 24px;
    overflow: hidden;
    transform: none !important;
    margin: 0 !important;
    z-index: auto !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }

  .categories-section .category-card:nth-child(2):hover {
    transform: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }

  .category-card-content {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
  }

  .category-card-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .category-card-info p {
    font-size: 14px;
  }

  .category-card-button {
    font-size: 14px;
    padding: 14px;
  }
  .category-card-button {
    width: 100% !important;
  }
  .platform-icon-row {
    top: 36%;

  }
}
@media (max-width: 768px) {
  .partners-swiper .swiper-slide {max-width: 56px;}
  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two equal columns */
    gap: 24px 16px;
    margin-left: 0;
    padding: 0 16px;
  }

  .feature-item h4 {
    font-size: 16px;
    margin: 0;
  }
  .feature-item h3 {
    font-size: 14px;
    white-space: nowrap;
  }
  .feature-item p {
    font-size: 12px;
    line-height: 1.4;
  }
  .feature-icon svg {
    width: 23px;
    height: 23px;
  }
  .feature-icon {
    width: 37px;
    height: 37px;
    background-color: #1e1e2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.large-card-title {
  font-size: 1.5rem;
  font-weight: bold;
}

.large-card-text p {
  color: #aaa;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .categories-grid {
    flex-direction: column;
    height: auto;
  }
  .price-label {
  padding-right: 20px;
  font-size: 0.7rem;
  color: #ffc750;
  font-weight: 700;
}

  .category-card {
    position: relative !important;
    left: 0 !important;
    transform: none !important;
    width: 100%;
    margin-bottom: 24px;
    height: 320px;
  }
}
/* General Section Setup */
.blog-section {
  background-color: #010014;
  color: #ffffff;
  font-family: "Outfit", sans-serif;
}

.blog-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.blog-section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0;
}

.blog-section-header .btn-our-blog {
  background-color: #f3ca20;
  color: #0c0a1d;
  padding: 12px 24px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
  white-space: nowrap; /* Prevents button text from wrapping */
}

.blog-section-header .btn-our-blog:hover {
  background-color: #e0b810;
}

/* --- Grid Container --- */
.blog-grid-v2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-left: 5%;
  padding-right: 5%;
  /* REMOVED padding from here to prevent layout conflicts */
}

@media (min-width: 992px) {
  .blog-grid-v2 {
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
      "large small_1"
      "large small_2";
  }
  .blog-grid-v2 .blog-card-v2:nth-child(1) {
    grid-area: large;
  }
  .blog-grid-v2 .blog-card-v2:nth-child(2) {
    grid-area: small_1;
  }
  .blog-grid-v2 .blog-card-v2:nth-child(3) {
    grid-area: small_2;
  }
}

/* --- Generic Card Styling --- */
.blog-card-v2 {
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card-v2:hover {
  transform: translateY(-3px);
  
}

/* --- Featured Card (Large) --- */
.blog-card-large-v2 {
  position: relative;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.blog-card-large-v2 .large-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.blog-card-large-v2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(to top, rgba(0,0,0), rgba(12, 10, 29, 0.95), transparent);
  z-index: 2;
  transition: height 0.3s ease;
}

.blog-card-large-v2:hover::after {
  height: 85%;
}

.large-card-content {
  position: relative;
  z-index: 3;
  padding: 24px 32px;
}

/* --- Secondary Cards (Small) --- */
.blog-card-small-v2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 130px;
}

.small-card-thumbnail {
  width: 200px;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.small-card-text {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.small-card-text h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-category {
  background-color: rgba(243, 202, 32, 0.1);
  color: #f3ca20;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.large-card-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.large-card-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 16px 0;
  line-height: 1.5;
}

.card-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.card-author img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.card-author .author-info {
  font-size: 0.875rem;
  line-height: 1.4;
}

.card-author .author-info .author-name {
  font-weight: 500;
  color: #ffffff;
  display: block;
}

.card-author .author-info .publish-date {
  color: rgba(255, 255, 255, 0.6);
}

/* --- FULLY REVISED: Mobile Responsive Styles --- */
@media (max-width: 767px) {
  .blog-section {
    /* Use tighter padding for mobile screens */
    padding: 40px 20px;
  }

  .blog-section-header {
    /* Stack header items vertically on mobile */
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .blog-section-header h2 {
    /* Reduce title size for mobile */
    font-size: 2rem;
    line-height: 1.2;
  }

  .blog-card-large-v2 {
    height: 260px; /* Make large card shorter on mobile */
  }

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

  .large-card-content h3 {
    font-size: 1.2rem;
  }

  .large-card-content p {
    font-size: 0.9rem;
    -webkit-line-clamp: 3; /* Allow a bit more text on mobile */
  }

  .blog-card-small-v2 {
    height: 120px;
  }

  .small-card-thumbnail {
    width: 150px;
  }

  .small-card-text {
    padding: 16px;
  }

  .small-card-text h3 {
    font-size: 14px;
  }

  .card-author .author-info {
    /* Make author text smaller to prevent overflow */
    font-size: 0.8rem;
  }
}
/* ------------------ Base ------------------ */
.price-info {
  font-family: 'Outfit', sans-serif;
  margin-top: 10px;
}

/* ------------------ Layout ------------------ */
.price-row {
  display: flex;
  align-items: center;
  justify-content: flex-end; /* align prices to the right */
  gap: 10px;flex-direction: row-reverse;
}

/* ------------------ New price chip ------------------ */
.price-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  padding: 6px 12px;
  border-radius: 10px;

  background: linear-gradient(135deg, #0045ff, #006eff);
  border: 1px solid rgba(255, 255, 255, 0.1);

  box-shadow:
    0 6px 14px rgba(0, 69, 255, 0.25),
    inset 0 1px 1px rgba(255, 255, 255, 0.06);

  backdrop-filter: saturate(120%) blur(2px);
}

.price-chip .currency {
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  opacity: 0.95;
}

.price-chip .amount {
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1;
  color: #fff;
}

/* ------------------ Old price ------------------ */
.old-price {
  font-size: 0.8rem;
  color: #9ca3af;
  text-decoration: line-through;
  opacity: 0.85;
}

/* ------------------ Responsive ------------------ */
@media (max-width: 640px) {
  .price-chip {
    padding: 4px 8px;
  }
  .price-chip .currency {
    font-size: 0.7rem;
  }
  .price-chip .amount {
    font-size: 0.85rem;
  }
  .old-price {
    font-size: 0.65rem;
  }
  .price-label {
    font-size: 0.7rem;
  }
}


/* ==================== BUY NOW BUTTON - SLIDE UP ==================== */
.btn.buy-now-slide {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    transform: translateY(100px);
    opacity: 0;
    z-index: 99999;
font-family: Outfit;
  background: #ffc750;
    border: none;
    border-radius: 12px;
    padding: 14px 20px;
    color: #000;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    box-shadow: 
        0 12px 30px rgba(0, 69, 255, 0.4),
        0 4px 12px rgba(0, 69, 255, 0.2);
    
    /* Flex layout */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Hover state - Button slides up */
.product-card-figma:hover .btn.buy-now-slide {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* Button hover effects */
.btn.buy-now-slide:hover {
  background: #dda733;
    transform: translateY(-2px) !important;
    box-shadow: 
        0 16px 40px rgba(0, 69, 255, 0.5),
        0 6px 18px rgba(0, 69, 255, 0.3);
}

/* Button active state */
.btn.buy-now-slide:active {
    transform: translateY(0) !important;
    box-shadow: 
        0 8px 25px rgba(0, 69, 255, 0.3),
        0 4px 12px rgba(0, 69, 255, 0.2);
}

/* Disabled button */
.btn.buy-now-slide.disabled {
    background: linear-gradient(135deg, #6B7280 0%, #9CA3AF 100%);
    transform: translateY(100px);
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 8px 25px rgba(107, 114, 128, 0.2);
}

/* ==================== LAYOUT SWAP ON HOVER ==================== */
/* Move content up when hovering to make space for button */
.product-card-figma:hover .product-content {
    padding-bottom: 80px; /* Make space for the button */
}

.product-card-figma:hover .product-info {
    transform: translateY(-10px);
    transition: transform 0.4s ease;
}

.product-card-figma:hover .product-footer {
    transform: translateY(-15px);
    transition: transform 0.4s ease;
}

/* ==================== BAG ICON ANIMATION ==================== */
.btn.buy-now-slide .bag-icon {
    transition: transform 0.3s ease;
}

.btn.buy-now-slide:hover .bag-icon {
    transform: translateX(3px) scale(1.1);
}

/* ==================== LOADING STATE ==================== */
.btn.buy-now-slide.loading {
    position: relative;
    color: transparent;
}

.btn.buy-now-slide.loading::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    top: 50%;
    left: 50%;
    margin-left: -9px;
    margin-top: -9px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
/*
 * CSS for Product Prices - Aussui New Design
 * Applied to elements within the product cards on homepage sections.
 */

.price-info {
    /* Ensures the price container itself is a block or flexible for layout */
    display: flex;
    flex-direction: column; /* Stack price rows if needed, though only one is shown */
    align-items: flex-start; /* Aligns content to the left */
    padding: 5px 0; /* Add a little vertical space around the prices */
}

.price-row {
    display: flex;
    align-items: baseline; /* Aligns prices based on text baseline for visual consistency */
    gap: 8px; /* Space between the main price chip and the old price */
}

/* --- Main Price (Current/Discounted) --- */

.price-chip {
    display: inline-flex;
    align-items: baseline;
    font-size: 1.2rem; /* Make the current price stand out */
    font-weight: 700; /* Bold the current price */
    color: #00ffaa; /* A bright, contrasting color (e.g., bright cyan/green) for the current price */
    /* You might want a background color chip if it's meant to look like one, but for this design, a bold color is often enough. */
    /* background-color: rgba(0, 255, 170, 0.1); */
    /* padding: 2px 4px; */
    /* border-radius: 3px; */
}

.price-chip .currency {
    font-size: 0.8em; /* Slightly smaller currency symbol than the amount */
    margin-right: 1px;
}

.price-chip .amount {
    /* Inherits styling from .price-chip */
    line-height: 1; /* Ensure tight alignment */
}


/* --- Old Price (Discounted) --- */

.old-price {
    font-size: 0.9rem; /* Smaller than the current price */
    color: #999999; /* A subdued gray color */
    text-decoration: line-through; /* Strikethrough for the original price */
    font-weight: 400; /* Regular weight */
    margin-left: 0; /* Already accounted for by .price-row gap */
    white-space: nowrap; /* Prevent wrapping */
}

/* Optional: Adjust for smaller screen sizes */
@media (max-width: 768px) {
  .btn.buy-now-slide{padding: 5px;font-size: 11px;}
    .price-chip {
        font-size: 1.1rem;
    }
    .bag-icon img{width:16px;height:16px;}

    .old-price {
        font-size: 0.8rem;
    }
}
.swiper-no-swiping {
    touch-action: pan-y !important;
}

.product-card-form,
.buy-now-slide {
    pointer-events: auto !important;
}

/* === FIX: Prevent Swiper arrows from blocking product clicks === */
.product-swiper-next,
.product-swiper-prev,
.top-games-swiper-next,
.top-games-swiper-prev,
.games-swiper-next,
.games-swiper-prev,
.category-swiper-next,
.category-swiper-prev,
.budget-swiper-next,
.budget-swiper-prev {
    z-index: 10;
    pointer-events: none;
}

.product-swiper-next::after,
.product-swiper-prev::after,
.top-games-swiper-next::after,
.top-games-swiper-prev::after,
.games-swiper-next::after,
.games-swiper-prev::after,
.category-swiper-next::after,
.category-swiper-prev::after,
.budget-swiper-next::after,
.budget-swiper-prev::after {
    pointer-events: auto;
}
.product-swiper-next,
.product-swiper-prev {
  z-index: 10;     /* stay above slides */
  pointer-events: auto;
}

.product-swiper .swiper-slide {
  z-index: 1;
  pointer-events: auto;
}
.swiper-button-disabled {
  pointer-events: none !important;
  opacity: 0.4; /* optional visual cue */
}
.swiper-button-prev,
.swiper-button-next {
  pointer-events: auto;
}
.upcoming-games-swiper-next.swiper-button-disabled,
.upcoming-games-swiper-prev.swiper-button-disabled {
  pointer-events: none !important;
}
