.pricing-section {
    position: relative;
   padding: 1.8rem 0rem;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.18), 0 4px 6px rgba(0, 0, 0, 0.18);
}
 
.pricing-section svg {
    position: absolute;
    right: 0;
    left: 0;
    height: clamp(0.8rem, 2vw, 1.3rem);
    width: 100%;
}
 
.pricing-container {
    margin: 0 auto;
}

/* Pricing Top */
 
.pricing-top {
    position: sticky;
    top: clamp(3rem, 14vw, 4.7rem);
    z-index: 998;
    background: inherit;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
    max-width: 1200px !important;
    margin: auto 0.2rem;
    padding: 0.5rem 0.2rem;
    border-radius: 10px;
}
 
/* Section Title */
 
.pricing-section-title {
    display: block;
   font-size: clamp(1.1rem, 4.5vw, 1.6rem);
    font-weight: 700;
    color: var(--helperColor);
    position: relative;
    text-align: center;
    white-space: nowrap;
}
 
/* Tabs Row */
 
.pricing-tabs-row {
    display: flex;
    align-items: center;
    gap: 0.1rem;
}
 
.currency-tabs-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 10px;
    z-index: 2;
    border-radius: 0 clamp(1rem, 3vw, 1.5rem) clamp(1rem, 3vw, 1.5rem) 0;
}
 
.currency-tabs-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 10px;
    z-index: 2;
    border-radius: clamp(1rem, 3vw, 1.5rem) 0 0 clamp(1rem, 3vw, 1.5rem);
}
 
.currency-tabs-wrapper {
    flex: 1;
    min-width: 0;
    position: relative;
}
 
.currency-tabs-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    border: 2px solid;
    border-radius: 10px;
    padding: 0.2rem 0;
}
 
.currency-tabs-viewport::-webkit-scrollbar { display: none; }
 
.currency-tabs-track {
    display: flex;
    gap: 0.5rem;
    cursor: grab;
    padding: 0.1rem 0.2rem;
}
 
.currency-tabs-track.grabbing { cursor: grabbing; }
 
/* Arrow Buttons */
 
.currency-tab-arrow {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    transition: all 0.3s;
    z-index: 2;
    box-shadow: 0 clamp(0.15em, 0.5vw, 0.25em)
                clamp(0.4em, 1.5vw, 0.8em)
                rgba(0, 0, 0, 0.15);
}
 
/* Currency Buttons */
 
.currency-btn {
    flex-shrink: 0;
    padding: 0.1rem 0.3rem;
    border-radius: 1.5rem;
    border-width: 1px;
    border-style: solid;
    font-family: 'Cairo', sans-serif;
    font-size: clamp(0.78rem, 2.5vw, 0.95rem);
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s;
    background: transparent;
}
 
/* Pricing Bottom */

.pricing-bottom {
  overflow-x: hidden; 
}

.pricing-page-grid {
    display: flex;
    flex-direction: column;
    margin: 1.5rem 0 0 0;
    gap: 2rem;
    overflow-x: hidden;
}

/* Pricing Card */

.pricing-card {
    border-radius: 8px;
    width: 90%;
    box-shadow: 0 0.5em 2rem rgba(0,0,0,0.08);
    border: clamp(0.05rem, 0.15vw, 0.08rem) solid var(--border-color, rgba(0,0,0,0.1));
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin: 0 auto;
}

.pricing-card:hover {
    box-shadow: 0 0.8em 2.5rem rgba(0,0,0,0.13);
}

/* ---- Header ---- */

.pricing-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1rem 0.5rem 1rem;
    gap: 0.8rem;
}

.pricing-card-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--helperColor);
}

.pricing-card-header img {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 2px solid currentColor;
    color: var(--white);
    border-radius: 8px;
    padding: 2px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    object-fit: contain;
    flex-shrink: 0;
    align-self: flex-start;
}

/* ---- Price Row ---- */

.pricing-price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0.4rem 0.2rem;
    gap: 0.2rem;
}

.pricing-price-main {
    display: flex;
    align-items: baseline;
    gap: 0.25em;
    line-height: 1;
}

.pricing-price-main .amount {
    font-size: 1.8rem;       
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.pricing-price-main .currency-symbol {
    font-size: 0.9rem;     
    font-weight: 700;
    color: var(--helperColor);
    vertical-align: sub;      
    line-height: 1;
}

.pricing-price-main .period {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 400;
    line-height: 1;
}

.pricing-price-note {
    font-size: 1rem;
    color: var(--white);
    text-align: right;
    line-height: 1.4;
}

/* ---- Section Label ---- */

.pricing-section-label {
    margin: 0 1rem;
    padding: 0 0.4rem 0 0.4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.04em;
}

.label-line {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.label-line::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--white);
}

.label-line:first-child {
    flex-direction: row; 
}

.label-line:last-child {
    flex-direction: row-reverse; 
}

.label-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--white);
    flex-shrink: 0;
}

.pricing-features {
    list-style: none;
    padding: 0.4rem 0.9rem;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.2rem 0;
    font-size: clamp(0.9rem, 3.2vw, 1rem);
    line-height: 1.7;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    object-fit: contain;
    order: 1;
    align-self: flex-start;
}

.pricing-features li span {
    order: 2;
    flex: 1;
}

/* ---- Buttons ---- */

.pricing-buttons {
    padding: 0.4rem 1rem 0.8rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.pricing-btn-info {
    display: block;
    padding: 0.55em 1em;
    text-decoration: none;
    border-radius: 8px;
    border: solid 2px var(--white);
    font-weight: 700;
    font-size: clamp(0.85rem, 3vw, 0.97rem);
    text-align: center;
    color: var(--lightHelper);
}

.pricing-btn-primary {
    background: var(--lightHelper);
    color: var(--white);
}

/* Package Holder */
 
.packageHolder {
    width: 100%;
    margin: 0 auto;
}
 
.package {
    border-radius: clamp(0.8rem, 2.5vw, 1rem);
    margin: 0 clamp(0.3rem, 1vw, 0.6rem);
    box-shadow: 0 clamp(0.15em, 0.5vw, 0.3em) clamp(0.3em, 1vw, 0.5em) rgba(0, 0, 0, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}
 
.packageHeading {
    border-radius: clamp(0.8rem, 2.5vw, 1rem) clamp(0.8rem, 2.5vw, 1rem) 0 0;
    padding: clamp(0.8em, 2.5vw, 1.2em) 0 clamp(0.2em, 0.8vw, 0.4em);
    margin-bottom: clamp(0.6rem, 2vw, 1rem);
}
 
.packageHeading .title {
    font-size: clamp(1rem, 3.5vw, 1.3rem);
    font-weight: 600;
    padding: 0 clamp(0.6em, 2vw, 1em);
    margin-bottom: clamp(0.4em, 1.2vw, 0.7em);
}
 
.packageHeading .desc {
    padding: 0 clamp(0.6em, 2vw, 1em);
    font-size: clamp(0.78rem, 2.5vw, 0.92rem);
}
 
.package .priceHolder {
    padding: clamp(0.7em, 2.5vw, 1.2em) clamp(0.8em, 2.5vw, 1em);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 clamp(-0.4rem, -1vw, -0.3rem) clamp(0.2rem, 0.5vw, 0.3rem);
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: clamp(0.3rem, 0.8vw, 0.4rem) clamp(0.3rem, 0.8vw, 0.4rem) 0 0;
}
 
.package .priceHolder::before,
.package .priceHolder::after {
    content: '';
    bottom: clamp(-0.25rem, -0.5vw, -0.2rem);
    width: clamp(0.4rem, 1vw, 0.6rem);
    height: clamp(0.2rem, 0.5vw, 0.3rem);
    position: absolute;
    z-index: 0;
}
 
.package .priceHolder::before {
    left: 0;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
}
 
.package .priceHolder::after {
    right: 0;
    clip-path: polygon(0 0, 0 100%, 100% 0);
}
 
.package .salePrice {
    font-size: clamp(1rem, 3.5vw, 1.3rem);
}
 
.package .period {
    font-size: clamp(0.7rem, 2vw, 0.82rem);
}
 
.packageFeatures {
    padding: 0 clamp(0.8em, 2.5vw, 1.2em);
    margin-bottom: clamp(0.6rem, 2vw, 1rem);
    list-style: none;
    text-align: start;
    flex-grow: 1;
}
 
.packageFeatures .feature {
    padding: clamp(0.4em, 1.5vw, 0.65em) 0;
    border-bottom-width: clamp(0.05rem, 0.15vw, 0.08rem);
    border-bottom-style: dashed;
    list-style: none;
    font-weight: 500;
}
 
.packageFeatures .feature:last-of-type {
    border-bottom: 0;
}
 
.package .subscribe {
    display: block;
    text-align: center;
    padding: clamp(0.5em, 1.8vw, 0.7em) clamp(0.8em, 2.5vw, 1em);
    border-radius: 0 0 clamp(0.8rem, 2.5vw, 1rem) clamp(0.8rem, 2.5vw, 1rem);
    font-weight: 500;
    font-size: clamp(0.85rem, 2.5vw, 0.98rem);
    text-decoration: none;
}


/* ======================================
   PRICING SLIDER
   ====================================== */

.pricing-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow: visible;
}

.pricing-viewport {
  overflow: hidden;
  width: 100%;
  user-select: none;
  -webkit-user-select: none;
  cursor: grab;
}

.pricing-viewport.grabbing {
  cursor: grabbing;
}

.pricing-track {
  display: flex;
  gap: 0;
  will-change: transform;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 0;
  margin: 0;
  list-style: none;
}

.pricing-track.no-anim {
  transition: none;
}

.pricing-slide {
  flex: 0 0 95%;
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0 0.3rem;
  box-sizing: border-box;
}

.pricing-slide .pricing-card {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.pricing-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1rem;
}

.pricing-nav {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 2px solid var(--lightHelper);
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
}

.pricing-nav::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--lightHelper);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-nav.prev::before {
  content: "\f054";
}

.pricing-nav.next::before {
  content: "\f053";
}

[dir="ltr"] .pricing-nav.prev::before {
  content: "\f053";
}

[dir="ltr"] .pricing-nav.next::before {
  content: "\f054";
}

.pricing-dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.pricing-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.18);
  transition: width 0.2s ease, background 0.2s ease;
}

.pricing-dots button.active {
  width: 8px;
  border-radius: 4px;
  background: var(--lightHelper);
}


[dir="ltr"] .pricing-track {
  direction: ltr;
}

@media (max-width: 768px) {
  [dir="ltr"] .pricing-nav.prev {
    left: 0rem !important;
    right: auto !important;
  }

  [dir="ltr"] .pricing-nav.next {
    right: 0rem !important;
    left: auto !important;
  }
}

/* ======================================
   MEDIA QUERIES
   ====================================== */

/* Tablet: 601px+ */
@media (min-width: 601px) {
  .pricing-page-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .pricing-card {
    width: 85%;
  }

  .currency-btn {
    font-size: clamp(0.8rem, 2vw, 0.95rem);
  }

  .packageHolder {
    width: calc(50% - clamp(0.3rem, 1vw, 0.5rem));
  }

  .pricing-slide {
    flex: 0 0 50%;  
    padding: 0 0.5rem;
    box-sizing: border-box;
  }
}

/* Large Tablet: 769px+ */
@media (min-width: 769px) {
  .pricing-bottom .pricing-container {
    padding: 0 clamp(1em, 3vw, 2em);
  }

  /* Disable slider behavior — show as grid */
  .pricing-viewport {
    overflow: visible;
    cursor: default !important;
  }

  .pricing-track {
    flex-wrap: wrap;
    justify-content: center;
    transform: none !important;
    transition: none !important;
    gap: 1.5rem;
  }

  .pricing-slide {
    flex: 0 0 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
    padding: 0;
    box-sizing: border-box;
  }

  .pricing-slide .pricing-card {
    width: 100%;
    max-width: 100%;
  }

  .pricing-slider-controls,
  .pricing-nav {
    display: none !important;
  }

  .pricing-viewport.grabbing {
    cursor: default !important;
  }

  .packageHolder {
    width: clamp(14rem, 30vw, 20rem);
  }

 
}

@media (min-width: 1025px) {
  .pricing-section-title {
    text-align: center;
  }

  .pricing-page-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    overflow-x: visible;
  }

  /* 1. الكروت المباشرة داخل الجريد (للصفحات بدون سلايدر) */
  .pricing-page-grid > .pricing-card,
  .pricing-page-grid > .packageHolder {
    flex: 1 1 calc(33.33% - 1.34rem);
    max-width: calc(33.33% - 1.34rem);
    margin: 0;
    box-sizing: border-box;
  }

  /* 2. السلايدر يجب أن يأخذ العرض بالكامل */
  .pricing-page-grid > .pricing-slider {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    margin-bottom: 2rem;
  }

  /* ========================================= */
  /* 3. إعدادات الكروت داخل السلايدر */
  /* ========================================= */
  .pricing-viewport {
    overflow: visible;
    cursor: default !important;
  }

  .pricing-track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* يقوم بتوسيط الكارتين في المنتصف */
    transform: none !important;
    transition: none !important;
    gap: 2rem;
    padding: 0;
  }

  /* تحديد عرض الكروت داخل السلايدر ليكون الثلث دائماً */
  .pricing-slide {
    flex: 1 1 calc(33.33% - 1.34rem);
    max-width: calc(33.33% - 1.34rem); /* يمنع الكارت من التمدد لأكثر من العرض العادي */
    box-sizing: border-box;
    padding: 0;
  }
  
  /* في حالة وجود 4 كروت، يتم ضبطهم تلقائياً للربع (اختياري لضمان الشكل) */
  .pricing-track:has(.pricing-slide:nth-child(4)) .pricing-slide {
    max-width: calc(25% - 1.5rem);
  }

  .pricing-slide .pricing-card {
    width: 100%;
    max-width: 100%;
    margin: 0;
    height: 100%; /* لضمان تساوي طول الكروت */
  }

  .pricing-slider-controls,
  .pricing-nav {
    display: none !important;
  }

  .pricing-viewport.grabbing {
    cursor: default !important;
  }
  /* ========================================= */

  .currency-btn {
    font-size: clamp(0.85rem, 1vw, 1rem);
  }

  .pricing-top {
    margin: auto;
  }

  .currency-tab-arrow {
    width: 2rem;
    height: 2rem;
  }

  .pricing-tabs-row {
    gap: 0.8rem;
  }
}

/* @media (min-width: 1441px) {
  .pricing-bottom .pricing-container {
    max-width: clamp(70rem, 88vw, 90rem);
  }
}


@media (min-width: 1921px) {
  .pricing-card h3 {
    font-size: clamp(1.4rem, 1.2vw, 1.7rem);
  }
} */


/* ======================================
   MOBILE-SPECIFIC SLIDER CONTROLS
   ====================================== */

@media (max-width: 768px) {
  .pricing-slider-controls {
    position: static !important;
    display: block;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible;
    gap: 0;
  }

  .pricing-dots {
    display: none !important;
  }

  .pricing-nav {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 30;
    background: var(--white, #fff);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    display: flex !important;
  }

  .pricing-nav.prev {
    right: 0rem !important;
    left: auto !important;
  }

  .pricing-nav.next {
    left: 0rem !important;
    right: auto !important;
  }
}

@media (min-width: 769px) {
  .pricing-nav { display: none !important; }
  .pricing-slider-controls { display: none; }
}


/* ======================================
   COLOR THEMES
   ====================================== */

/* .white-pricing */
 
.white-pricing .pricing-section-title {
    color: var(--lightHelper);
}
 
.white-pricing .pricing-section-title::after {
    background-image: linear-gradient(90deg, var(--lightHelper) 0%, var(--lightHelper) 100%);
}
 
.white-pricing .pricing-top {
    background-color: var(--white);
}
 
.white-pricing .currency-tabs-viewport {
    border-color: var(--lightHelper);
}
 
.white-pricing .currency-tab-arrow {
    background: var(--lightHelper);
    color: var(--white);
    border: none;
}
 
.white-pricing .currency-btn {
    color: var(--lightHelper);
    border-color: var(--lightHelper);
    background: var(--white);
}
 
.white-pricing .currency-btn:hover {
    background-color: var(--white);
    color: var(--lightHelper);
}
 
.white-pricing .currency-btn.active {
    background-color: var(--lightHelper);
    color: var(--white);
    border-color: var(--lightHelper);
    box-shadow: 0 clamp(0.2em, 0.8vw, 0.4em) clamp(0.5em, 1.5vw, 0.8em) rgba(2, 117, 216, 0.3);
}
 
.white-pricing .pricing-card {
    background: var(--lightHelper);
    border-color: var(--lightHelper);
}
 
.white-pricing .pricing-card h3 {
    color: var(--white);
}
 
.white-pricing .pricing-card h3::after {
    background: var(--white);
}
 
.white-pricing .pricing-price {
    color: var(--white);
}
 
.white-pricing .currency-symbol {
    color: var(--white);
}
 
.white-pricing .pricing-features li {
    border-bottom-color: var(--white);
    color: var(--white);
}
 
.white-pricing .pricing-btn {
    background-color: var(--white);
    color: var(--lightHelper);
}
 
.white-pricing .pricing-btn:hover {
    background-color: var(--lightHelper);
}
 
.white-pricing .pricing-btn-info {
    background-color: var(--lightHelper);
    color: var(--white);
}
 
.white-pricing .package {
    background-color: #F8F5FF;
}
 
.white-pricing .packageHeading {
    background-color: var(--primaryColor);
    color: var(--helperColor);
}
 
.white-pricing .package .priceHolder {
    background-color: var(--helperColor);
    color: var(--white);
}
 
.white-pricing .package .priceHolder::before,
.white-pricing .package .priceHolder::after {
    background-color: var(--helperColor);
}
 
.white-pricing .package .mainPrice {
    color: var(--white);
}
 
.white-pricing .package .period {
    color: var(--primaryColor);
}
 
.white-pricing .packageFeatures .feature {
    border-bottom-color: var(--lightHelper);
    color: var(--helperColor);
}
 
.white-pricing .package .subscribe {
    background-color: var(--lightHelper);
    color: var(--white);
}
 
.white-pricing .currency-tabs-wrapper::before {
    background: linear-gradient(to left, rgba(82, 80, 80, 0.3) 0%, transparent 100%);
}
 
.white-pricing .currency-tabs-wrapper::after {
    background: linear-gradient(to right, rgba(82, 80, 80, 0.3) 0%, transparent 100%);
}

/* .blue-pricing */
 
.blue-pricing {
    background-color: var(--lightHelper);
    color: var(--lightHelper);
}
 
.blue-pricing .pricing-section-title {
    color: var(--lightHelper);
}
 
.blue-pricing .pricing-section-title::after {
    background-image: linear-gradient(90deg, var(--white) 0%, var(--white) 100%);
}
 
.blue-pricing .pricing-top {
    background-color: var(--white);
    box-shadow: 0 clamp(0.15em, 0.5vw, 0.3em) clamp(0.5em, 1.5vw, 0.8em) rgba(0, 0, 0, 0.15);
}
 
.blue-pricing .currency-tabs-viewport {
    border-color: var(--lightHelper);
}
 
.blue-pricing .currency-tab-arrow {
    background: var(--lightHelper);
    color: var(--white);
    border: 2px solid var(--white);
}
 
.blue-pricing .currency-btn {
    color: var(--lightHelper);
    border: 2px solid var(--lightHelper);
}
 
.blue-pricing .currency-btn:hover:not(.active) {
    background-color: rgba(0, 0, 0, 0.05);
}
 
.blue-pricing .currency-btn.active {
    background-color: var(--lightHelper);
    color: var(--white);
    border-color: var(--lightHelper);
    box-shadow: 0 clamp(0.2em, 0.8vw, 0.4em) clamp(0.5em, 1.5vw, 0.8em) rgba(0, 0, 0, 0.2);
}
 
.blue-pricing .pricing-card {
    border-color: var(--white);
    background-color: var(--white);
}
 
.blue-pricing .pricing-card h3 {
    color: var(--lightHelper);
}
 
.blue-pricing .pricing-price {
    color: var(--lightHelper);
}
 
.blue-pricing .currency-symbol {
    color: var(--lightHelper);
}
 
.blue-pricing .pricing-features li {
    border-bottom-color: var(--helperColor);
    color: var(--lightHelper);
}
 
.blue-pricing .pricing-btn {
    background-color: var(--lightHelper);
    color: var(--white);
}
 
.blue-pricing .pricing-btn-info {
    background-color: var(--white);
    color: var(--lightHelper);
}
 
.blue-pricing .package {
    background-color: rgba(255, 255, 255, 0.1);
}
 
.blue-pricing .packageHeading {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}
 
.blue-pricing .package .priceHolder {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
}
 
.blue-pricing .package .priceHolder::before,
.blue-pricing .package .priceHolder::after {
    background-color: rgba(255, 255, 255, 0.15);
}
 
.blue-pricing .package .mainPrice {
    color: var(--white);
}
 
.blue-pricing .package .period {
    color: rgba(255, 255, 255, 0.75);
}
 
.blue-pricing .packageFeatures .feature {
    border-bottom-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}
 
.blue-pricing .package .subscribe {
    background-color: var(--white);
    color: var(--lightHelper);
}
 
.blue-pricing .currency-tabs-wrapper::before {
    background: linear-gradient(to left, rgba(82, 80, 80, 0.3) 0%, transparent 100%);
}
 
.blue-pricing .currency-tabs-wrapper::after {
    background: linear-gradient(to right, rgba(82, 80, 80, 0.3) 0%, transparent 100%);
}
.nav-hidden {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
@media (min-width: 1025px) {
  .pricing-flat-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    width: 100%;
  }

  .pricing-flat-grid .pricing-slide {
    flex: 1 1 calc(33.33% - 1.34rem);
    max-width: calc(33.33% - 1.34rem);
    box-sizing: border-box;
    padding: 0;
    display: flex;
    justify-content: center;
    list-style: none;
  }

  .pricing-flat-grid .pricing-slide .pricing-card {
    width: 100%;
    max-width: 100%;
    margin: 0;
    height: 100%;
  }

 
  .pricing-page-grid > .pricing-slider {
    display: none;
  }
}