/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../../../node_modules/.pnpm/next@15.5.10_@babel+core@7.28.5_@playwright+test@1.57.0_babel-plugin-macros@3.1.0_react_35bda6a839c71f675fe0379c2ac9c56d/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!../../../../node_modules/.pnpm/next@15.5.10_@babel+core@7.28.5_@playwright+test@1.57.0_babel-plugin-macros@3.1.0_react_35bda6a839c71f675fe0379c2ac9c56d/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!../../packages/ui/src/collapsible.css ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@keyframes collapsible-down {
  from {
    height: 0;
    opacity: 0;
  }
  to {
    height: var(--radix-collapsible-content-height);
    opacity: 1;
  }
}

@keyframes collapsible-up {
  from {
    height: var(--radix-collapsible-content-height);
    opacity: 1;
  }
  to {
    height: 0;
    opacity: 0;
  }
}

.collapsible-content[data-state="open"] {
  animation: collapsible-down 260ms cubic-bezier(0.2, 0.8, 0.4, 1);
}

.collapsible-content[data-state="closed"] {
  animation: collapsible-up 200ms cubic-bezier(0.3, 0.8, 0.6, 1);
}

@media (prefers-reduced-motion: reduce) {
  .collapsible-content[data-state="open"],
  .collapsible-content[data-state="closed"] {
    animation: none;
  }
}

/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../../../node_modules/.pnpm/next@15.5.10_@babel+core@7.28.5_@playwright+test@1.57.0_babel-plugin-macros@3.1.0_react_35bda6a839c71f675fe0379c2ac9c56d/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[2]!../../../../node_modules/.pnpm/next@15.5.10_@babel+core@7.28.5_@playwright+test@1.57.0_babel-plugin-macros@3.1.0_react_35bda6a839c71f675fe0379c2ac9c56d/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[3]!./components/comparison/comparison-table.module.css ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.comparison-table_tableContainer__GxsB8 {
  overflow-x: auto;
  max-width: 100%;
  overflow-y: visible;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 193, 7, 0.3) rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  position: relative;
  border: 1px solid var(--color-cocoa-700);
  /* Ensure container doesn't exceed viewport on smaller screens */
  width: 100%;
  box-sizing: border-box;
  overscroll-behavior-x: none;
  -webkit-overflow-scrolling: touch;
}

.comparison-table_tableContainerSidebar__aR_D5 {
  overflow-x: auto;
  max-width: 100%;
  overflow-y: auto;
  max-height: 700px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 193, 7, 0.3) rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  position: relative;
  border: 1px solid var(--color-cocoa-700);
  overscroll-behavior-x: none;
  -webkit-overflow-scrolling: touch;
}

.comparison-table_tableContainer__GxsB8::-webkit-scrollbar {
  height: 6px;
  background-color: rgba(0, 0, 0, 0.1);
}

.comparison-table_tableContainer__GxsB8::-webkit-scrollbar-thumb {
  background-color: rgba(255, 193, 7, 0.3);
  border-radius: 12px;
}

.comparison-table_tableContainer__GxsB8::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 193, 7, 0.5);
}

.comparison-table_tableContainerSidebar__aR_D5::-webkit-scrollbar {
  height: 6px;
  background-color: rgba(0, 0, 0, 0.1);
}

.comparison-table_tableContainerSidebar__aR_D5::-webkit-scrollbar-thumb {
  background-color: rgba(255, 193, 7, 0.3);
  border-radius: 12px;
}

.comparison-table_tableContainerSidebar__aR_D5::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 193, 7, 0.5);
}

.comparison-table_table__vXsvs,
.comparison-table_tableDefault__oPyCk {
  table-layout: auto;
  min-width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  overflow: visible;
  /* Ensure table respects container width on smaller screens */
  width: 100%;
  max-width: 100%;
}

/* Hide horizontal scroll when empty state is shown */
.comparison-table_tableContainer__GxsB8:has([data-empty-state="true"]) {
  overflow-x: hidden !important;
}

/* Hide table headers when showing empty state */
.comparison-table_tableDefault__oPyCk:has([data-empty-state="true"]) thead,
.comparison-table_table__vXsvs:has([data-empty-state="true"]) thead {
  visibility: hidden;
  position: absolute;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Ensure table takes full width when empty */
.comparison-table_tableDefault__oPyCk:has([data-empty-state="true"]),
.comparison-table_table__vXsvs:has([data-empty-state="true"]) {
  min-width: 100% !important;
  width: 100% !important;
}

.comparison-table_truncateCell__CAUvK {
  max-width: 60ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.comparison-table_table__vXsvs thead tr,
.comparison-table_tableDefault__oPyCk thead tr {
  border-bottom: 1px solid var(--color-cocoa-700);
  border-top: none;
}

.comparison-table_table__vXsvs th,
.comparison-table_tableDefault__oPyCk th {
  border-top: none !important;
}

.comparison-table_tableHeader__9VVGW {
  line-height: 1.25;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.comparison-table_tableHeaderInner__2WZ8p {
  width: 100%;
}

.comparison-table_tableHeader__9VVGW,
.comparison-table_tableHeaderInner__2WZ8p,
.comparison-table_propFirmHeaderContent__qg9Ix {
  min-height: 44px;
}

/* Round corners for table headers */
.comparison-table_table__vXsvs thead tr:first-child th:first-child,
.comparison-table_tableDefault__oPyCk thead tr:first-child th:first-child {
  border-top-left-radius: 10px;
}

.comparison-table_table__vXsvs thead tr:first-child th:last-child,
.comparison-table_tableDefault__oPyCk thead tr:first-child th:last-child {
  border-top-right-radius: 10px;
}

.comparison-table_table__vXsvs td,
.comparison-table_tableDefault__oPyCk td {
  border-right: 1px solid rgba(58, 52, 38, 0.4);
}

.comparison-table_table__vXsvs th[style*="position: sticky"][style*="left: 0px"],
.comparison-table_tableDefault__oPyCk th[style*="position: sticky"][style*="left: 0px"],
.comparison-table_table__vXsvs td[style*="position: sticky"][style*="left: 0px"],
.comparison-table_tableDefault__oPyCk td[style*="position: sticky"][style*="left: 0px"] {
  border-right: 1px solid rgba(58, 52, 38, 0.4) !important;
  border-left: none;
  border-top: none;
}

.comparison-table_table__vXsvs td:last-child,
.comparison-table_tableDefault__oPyCk td:last-child {
  border-right: none;
}

.comparison-table_table__vXsvs tr:last-child td:first-child,
.comparison-table_tableDefault__oPyCk tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}

.comparison-table_table__vXsvs tr:last-child td:last-child,
.comparison-table_tableDefault__oPyCk tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}

.comparison-table_draggingCell__PEMjy {
  cursor: grabbing !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
  background-color: rgba(53, 46, 31, 0.95) !important;
  z-index: 10;
}

.comparison-table_draggableHeader__f8C95 {
  will-change: transform;
}


.comparison-table_columnItem__UTLH0 {
  transition: transform 0.15s linear;
  cursor: pointer;
}

.comparison-table_columnItem__UTLH0[data-dragging="true"] {
  transition: none !important;
}

/* Drop zone effect for column dragging */
.comparison-table_dropZoneIndicator__3rte_ {
  position: relative;
}

.comparison-table_dropZoneIndicator__3rte_::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 193, 7, 0.12);
  border: 1px solid rgba(255, 193, 7, 0.4);
  border-radius: 4px;
  pointer-events: none;
  z-index: 5;
  animation: comparison-table_subtleDropZone__3vDUn 2s ease-in-out infinite;
}

@keyframes comparison-table_subtleDropZone__3vDUn {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.6;
  }
}

.comparison-table_tableContainerSidebar__aR_D5 thead {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: var(--color-cocoa-700);
}

.comparison-table_tableContainerSidebar__aR_D5 thead tr {
  background-color: var(--color-cocoa-700) !important;
}

.comparison-table_tableContainerSidebar__aR_D5 thead th {
  background-color: var(--color-cocoa-700) !important;
}

.comparison-table_propFirmCell__vrMIe {
  transition:
    width 0.28s ease,
    min-width 0.28s ease,
    padding 0.24s ease;
  will-change: width, min-width, padding;
}

.comparison-table_propFirmInner__Gp6Zj {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  height: 60px;
  width: 100%;
  padding-left: 0.25rem;
  transition: gap 0.24s ease, padding-left 0.24s ease;
  will-change: gap, padding-left;
  overflow: hidden;
}

.comparison-table_propFirmInnerCollapsed__JDk95 {
  gap: 0;
  padding-left: 0 !important;
  justify-content: center;
}

@media (min-width: 768px) {
  .comparison-table_propFirmInner__Gp6Zj {
    gap: 1rem;
  }
}

.comparison-table_propFirmHeader__eKzFY {
  transition: width 0.28s ease, min-width 0.28s ease, padding 0.28s ease;
  will-change: width, min-width, padding;
}

.comparison-table_propFirmHeaderContent__qg9Ix {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: 0.5rem;
  text-align: center;
}

.comparison-table_propFirmHeaderContentCollapsed__RKQr9 {
  gap: 0;
}

.comparison-table_propFirmHeaderLabel__i2eUk {
  display: block;
  width: 100%;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.comparison-table_propFirmHeaderLabelCollapsed__VbrHO {
  display: block;
  width: 100%;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-align: center;
}

.comparison-table_propFirmDetails__JXcgV {
  max-width: 260px;
  opacity: 1;
  transition: opacity 0.18s ease;
  will-change: opacity;
  flex: 0 0 auto;
  overflow: hidden;
}

.comparison-table_propFirmCell__vrMIe[data-collapsed="true"] .comparison-table_propFirmDetails__JXcgV {
  max-width: 0;
  opacity: 0;
  flex: 0 0 0;
  width: 0;
  margin: 0 !important;
  padding: 0 !important;
  display: none !important;
  pointer-events: none;
}

.comparison-table_stickyFilters__kvL0X {
  position: sticky;
  top: 6rem;
}

.comparison-table_stickyOverlay__8Z8W6 {
  position: fixed;
  z-index: 40;
  pointer-events: none;
}

.comparison-table_stickyOverlayInner__UM_ih {
  display: flex;
  align-items: stretch;
  background-color: color-mix(in srgb, var(--color-espresso-900) 78%, transparent);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 193, 7, 0.18);
  border-radius: 20px;
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.4),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.comparison-table_stickyOverlayPinned__pIKSZ {
  display: flex;
  align-items: stretch;
  background-color: color-mix(in srgb, var(--color-espresso-900) 85%, transparent);
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}

.comparison-table_stickyOverlayScrollable__UaSbQ {
  position: relative;
  overflow: hidden;
  flex: 1 1 auto;
}

.comparison-table_stickyOverlayScrollableInner__lgXwM {
  display: flex;
  align-items: stretch;
  will-change: transform;
}

.comparison-table_stickyOverlayCell__Vzi6p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 48px;
  border-right: 1px solid rgba(255, 193, 7, 0.12);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: rgba(255, 245, 230, 0.92);
  white-space: nowrap;
  padding: 0 16px;
  box-sizing: border-box;
}

.comparison-table_stickyOverlayCell__Vzi6p:last-child {
  border-right: none;
}

.comparison-table_stickyOverlayLabel__QqNbz {
  overflow: hidden;
  text-overflow: ellipsis;
}

.comparison-table_drawerContent__jnKSF {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #140f08;
  color: white;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
}

/* Responsive fixes for tablet and smaller screens */
@media (max-width: 1024px) {
  .comparison-table_tableContainer__GxsB8 {
    /* Ensure proper horizontal scrolling on tablets */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    /* Force container to respect viewport width */
    max-width: 100vw;
    width: 100%;
  }
  
  .comparison-table_table__vXsvs,
  .comparison-table_tableDefault__oPyCk {
    /* Allow table to be wider than container for horizontal scroll */
    min-width: 800px;
    /* Ensure table doesn't exceed container */
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .comparison-table_propFirmCell__vrMIe,
  .comparison-table_propFirmInner__Gp6Zj,
  .comparison-table_propFirmDetails__JXcgV {
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}

@media (max-width: 768px) {
  .comparison-table_tableContainer__GxsB8 {
    /* Better touch scrolling on mobile */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide scrollbar on mobile */
    /* Force container to respect viewport width */
    max-width: 100vw;
    width: 100%;
    /* Ensure no horizontal overflow */
    overflow-x: auto;
  }
  
  .comparison-table_tableContainer__GxsB8::-webkit-scrollbar {
    display: none; /* Hide scrollbar on mobile */
  }
  
  .comparison-table_table__vXsvs,
  .comparison-table_tableDefault__oPyCk {
    /* Minimum width for mobile to ensure all columns are accessible */
    min-width: 600px;
    /* Ensure table doesn't exceed container */
    max-width: none;
  }
}

/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../../../node_modules/.pnpm/next@15.5.10_@babel+core@7.28.5_@playwright+test@1.57.0_babel-plugin-macros@3.1.0_react_35bda6a839c71f675fe0379c2ac9c56d/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!../../../../node_modules/.pnpm/next@15.5.10_@babel+core@7.28.5_@playwright+test@1.57.0_babel-plugin-macros@3.1.0_react_35bda6a839c71f675fe0379c2ac9c56d/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!../../../../node_modules/.pnpm/swiper@12.1.2/node_modules/swiper/swiper.css ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/**
 * Swiper 12.1.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 18, 2026
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */

/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../../../node_modules/.pnpm/next@15.5.10_@babel+core@7.28.5_@playwright+test@1.57.0_babel-plugin-macros@3.1.0_react_35bda6a839c71f675fe0379c2ac9c56d/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!../../../../node_modules/.pnpm/next@15.5.10_@babel+core@7.28.5_@playwright+test@1.57.0_babel-plugin-macros@3.1.0_react_35bda6a839c71f675fe0379c2ac9c56d/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!../../../../node_modules/.pnpm/swiper@12.1.2/node_modules/swiper/modules/grid.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

/*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../../../node_modules/.pnpm/next@15.5.10_@babel+core@7.28.5_@playwright+test@1.57.0_babel-plugin-macros@3.1.0_react_35bda6a839c71f675fe0379c2ac9c56d/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[2]!../../../../node_modules/.pnpm/next@15.5.10_@babel+core@7.28.5_@playwright+test@1.57.0_babel-plugin-macros@3.1.0_react_35bda6a839c71f675fe0379c2ac9c56d/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[3]!./components/site/sections/limited-offers/LimitedOffersSection.module.css ***!
  \*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.LimitedOffersSection_limitedOffersSwiper__DfK8m .swiper-slide {
  height: auto;
  display: flex;
  align-items: flex-start;
}

.LimitedOffersSection_limitedOffersSwiper__DfK8m .swiper-slide > * {
  flex: 0 0 auto;
  width: 100%;
}

.LimitedOffersSection_limitedOffersPageGrid__c5OCX {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  align-items: stretch;
}

@media (max-width: 767px) {
  .LimitedOffersSection_limitedOffersPageGrid__c5OCX {
    gap: 20px;
  }
}

@media (min-width: 768px) {
  .LimitedOffersSection_limitedOffersPageGrid__c5OCX {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.LimitedOffersSection_limitedOfferCard__N3rsR {
  width: 100%;
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  container-type: inline-size;
}

/* Mobile-specific improvements */
@media (max-width: 639px) {
  .LimitedOffersSection_limitedOfferCard__N3rsR {
    min-height: 180px;
  }
  
  .LimitedOffersSection_limitedOffersSwiper__DfK8m .swiper-slide {
    padding: 0 8px;
  }

  .LimitedOffersSection_limitedOfferCard__N3rsR .offer-card-logo {
    width: 48px;
    height: 48px;
  }

  .LimitedOffersSection_limitedOfferCard__N3rsR .offer-card-expiry {
    padding: 6px 10px;
    font-size: 0.75rem;
  }

}

/* Ensure equal heights in grid */
.LimitedOffersSection_limitedOffersSwiper__DfK8m .swiper-wrapper {
  align-items: flex-start;
}

.LimitedOffersSection_limitedOffersNavButton__r9ZVg.swiper-button-disabled {
  opacity: 1;
  cursor: pointer;
}

.LimitedOffersSection_limitedOffersPagination__Qbypt {
  
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-bottom: 4px;
}

.LimitedOffersSection_limitedOffersPaginationButton__Zi7cO {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 9999px;
  border: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: transform 0.25s ease;
  cursor: pointer;
}

/* SVG-based pagination dot */
.LimitedOffersSection_limitedOffersPaginationDot__GvUWe {
  width: 20px;
  height: 20px;
  transform: rotate(-90deg);
}

.LimitedOffersSection_limitedOffersDotFill___DfAI {
  fill: rgba(var(--color-honey-200-rgb), 0.35);
  transition: fill 0.25s ease;
}

.LimitedOffersSection_limitedOffersPaginationButton__Zi7cO:hover .LimitedOffersSection_limitedOffersDotFill___DfAI,
.LimitedOffersSection_limitedOffersPaginationButton__Zi7cO:focus-visible .LimitedOffersSection_limitedOffersDotFill___DfAI {
  fill: rgba(var(--color-honey-200-rgb), 0.6);
}

.LimitedOffersSection_limitedOffersPaginationButton__Zi7cO[data-active="true"] .LimitedOffersSection_limitedOffersDotFill___DfAI {
  fill: var(--color-brand-500);
}

/* Progress ring on active dot — driven by onAutoplayTimeLeft */
.LimitedOffersSection_limitedOffersPaginationRing__8mUtg {
  fill: none;
  stroke: var(--color-brand-500);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 50.27;
  stroke-dashoffset: 50.27;
}

.LimitedOffersSection_limitedOffersPaginationButton__Zi7cO:focus-visible {
  outline: 2px solid rgba(255, 196, 140, 0.65);
  outline-offset: 2px;
}

.LimitedOffersSection_limitedOffersMessage__03GFl {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 220px;
  padding: 36px 24px;
  text-align: center;
  border-radius: 24px;
  border: 1px solid rgba(255, 196, 140, 0.28);
  background: rgba(var(--color-background-rgb), 0.7);
  color: var(--color-honey-325-alpha-90);
}

.LimitedOffersSection_limitedOffersMessageTitle__WqDEm {
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(var(--color-brand-50-rgb), 0.9);
}

.LimitedOffersSection_discountValue__ca2xR {
  font-size: clamp(2rem, 7vw, 3.5rem);
  line-height: 1;
}

/* ── Badge chip & icon sizing via container queries ─────────────── */

.LimitedOffersSection_badgeChip__RlMKp {
  gap: 4px;
  border-radius: 6px;
  padding: 4px 6px;
  font-size: 0.625rem; /* 10px */
  border-style: solid;
  border-width: 1.5px;
}

.LimitedOffersSection_badgeChipIcon___l6bV {
  display: none;
}

.LimitedOffersSection_badgeChips__LWtOR {
  gap: 4px;
}

.LimitedOffersSection_iconBadge__7pwhH {
  width: 24px;
  height: 24px;
}

.LimitedOffersSection_iconBadgeIcon__Z8HZE {
  transform: scale(0.65);
}

/* Card ≥ 400px — slight scale-up, still no chip icons */
@container (min-width: 400px) {
  .LimitedOffersSection_badgeChip__RlMKp {
    gap: 6px;
    border-radius: 8px;
    padding: 6px 8px;
    font-size: 0.6875rem; /* 11px */
  }

  .LimitedOffersSection_badgeChips__LWtOR {
    gap: 6px;
  }

  .LimitedOffersSection_iconBadge__7pwhH {
    width: 28px;
    height: 28px;
  }

  .LimitedOffersSection_iconBadgeIcon__Z8HZE {
    transform: scale(0.75);
  }
}

/* Card ≥ 540px — chip icons appear, full badge sizing */
@container (min-width: 540px) {
  .LimitedOffersSection_badgeChip__RlMKp {
    gap: 8px;
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 0.8125rem; /* 13px */
    border-width: 2px;
  }

  .LimitedOffersSection_badgeChipIcon___l6bV {
    display: inline;
    transform: scale(0.9);
  }

  .LimitedOffersSection_badgeChips__LWtOR {
    gap: 8px;
  }

  .LimitedOffersSection_iconBadge__7pwhH {
    width: 32px;
    height: 32px;
  }

  .LimitedOffersSection_iconBadgeIcon__Z8HZE {
    transform: scale(0.9);
  }
}

/* Card ≥ 680px — full-size icons and text */
@container (min-width: 680px) {
  .LimitedOffersSection_badgeChip__RlMKp {
    font-size: 0.875rem; /* 14px */
  }

  .LimitedOffersSection_badgeChipIcon___l6bV {
    transform: scale(1);
  }

  .LimitedOffersSection_iconBadge__7pwhH {
    width: 36px;
    height: 36px;
  }

  .LimitedOffersSection_iconBadgeIcon__Z8HZE {
    transform: scale(1);
  }
}

