* {
  box-sizing: border-box;
}

html {
  font-size: 100% !important;
}

/* Reset Styles */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

/* Theme Variables */
:root {
  --brand-yellow: #ffc600;
  --brand-blue: #1a222e;
  --gray-dark: #485363;
  --gray: #d7dadd;
  --gray-light: #f3f3f3;
  --white: #ffffff;
  --black: #000000;
  --dark-bg: #0d1117;
  --dark-bg-50: rgba(13, 17, 23, 0.5);

  /* Gradients */
  --gradient-dark: linear-gradient(180deg, var(--brand-blue) 0%, var(--dark-bg) 100%);

  /* Typography */
  --font-h1: 3rem;
  --font-h1-mobile: 2rem;
  --font-h2: 2.4375rem;
  --font-h2-mobile: 1.75rem;
  --font-h3-mobile: 1.625rem;
  --font-h3: 1.9375rem;
  --font-h4-mobile: 1.25rem;
  --font-h4: 1.5625rem;
  --font-h5: 1.25rem;
  --font-h5-mobile: 1.125rem;
  --font-h6: 1rem;
  --font-body-large: 1.125rem;
  --font-body: 1rem;
  --font-body-small: 0.875rem;
  --font-body-xsmall: 0.75rem;
  --font-body-xxsmall: 0.625rem;
  --line-height-none: 100%;
  --line-height-tight: 130%;
  --line-height-base: 150%;
  --line-height-loose: 175%;
}

.cart-step-theme--dark {
  background-color: var(--dark-bg);
  color: var(--white);
}

.cart-step-theme--light {
  color: var(--brand-blue);
}

/* // text and backgroudn colors depending if dark or light them for every main section */

.cart-step-theme--light .cart-step-header {
  background-color: var(--gray-light);
  color: var(--brand-blue);
}

.cart-step-theme--dark .cart-step-header {
  background-color: var(--dark-bg);
  color: var(--white);
}

/* Base Typography */
.cart-step-h1 {
  font-weight: 700;
  font-size: var(--font-h1-mobile);
  line-height: var(--line-height-none);
  color: var(--white);
}

@media (min-width: 1024px) {
  .cart-step-h1 {
    font-size: var(--font-h1);
  }
}

.cart-step-h2 {
  font-weight: 700;
  font-size: var(--font-h2-mobile);
  line-height: var(--line-height-none);
  color: var(--white);
}

@media (min-width: 1024px) {
  .cart-step-h2 {
    font-size: var(--font-h2);
  }
}

.cart-step-h3 {
  font-weight: 700;
  font-size: var(--font-h3-mobile);
  line-height: var(--line-height-none);
  color: var(--white);
}

@media (min-width: 1024px) {
  .cart-step-h3 {
    font-size: var(--font-h3);
  }
}

.cart-step-h4 {
  font-weight: 700;
  font-size: var(--font-h4-mobile);
  line-height: var(--line-height-none);
  color: var(--white);
}

@media (min-width: 1024px) {
  .cart-step-h4 {
    font-size: var(--font-h4);
  }
}

.cart-step-h5 {
  font-weight: 700;
  font-size: var(--font-h5-mobile);
  line-height: var(--line-height-none);
  color: var(--white);
}

@media (min-width: 1024px) {
  .cart-step-h5 {
    font-size: var(--font-h5);
  }
}

.cart-step-h6 {
  font-weight: 700;
  font-size: var(--font-h6);
  line-height: var(--line-height-none);
  color: var(--white);
}

.cart-step-body {
  font-weight: 400;
  font-size: var(--font-body);
  line-height: var(--line-height-none);
  letter-spacing: 0.01em;
  color: var(--white);
}

.cart-step-body-small {
  font-weight: 400;
  font-size: var(--font-body-small);
  line-height: var(--line-height-none);
  letter-spacing: 0.01em;
  color: var(--white);
}

.cart-step-body-extra-small {
  font-size: var(--font-body-xsmall);
  line-height: var(--line-height-none);
  letter-spacing: 0.01em;
  color: var(--white);
}

/* Buttons */
.cart-step-button {
  height: 46px;
  padding: 0 28px;
  font-size: 16px;
  line-height: var(--line-height-none);
  font-weight: 700;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.cart-step-button--rounded {
  border-radius: 54px;
}

.cart-step-button:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {
  .cart-step-button {
    height: 56px;
  }
}
.cart-step-button--primary:hover,
.cart-step-button--primary:focus,
.cart-step-button--primary {
  background: var(--brand-yellow);
  color: var(--dark-bg);
}

.cart-step-button--secondary {
  background: var(--brand-blue);
  color: var(--white);
  border: 1px solid var(--gray-dark);
}

.cart-step-button--secondary:hover,
.cart-step-button--secondary:focus {
  background: var(--gray-dark);
  color: var(--white);
}

.cart-step-button--tertiary {
  background: var(--white);
  color: var(--dark-bg);
}

.cart-step-button--tertiary:hover,
.cart-step-button--tertiary:focus {
  background: var(--white);
  color: var(--dark-bg);
}

.cart-step-container {
  padding: 0 28px;
}

.cart-step-page-container {
  max-width: 102rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px;
  width: 100%;
}

@media (min-width: 1280px) {
  .cart-step-page-container {
    padding-left: 56px;
    padding-right: 56px;
  }
}

@media (min-width: 1440px) {
  .cart-step-page-container {
    padding-left: 96px;
    padding-right: 96px;
  }
}

.full-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 1;
}

.cart-step-payment-methods {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  padding: 6px 0;
  justify-content: center;
  gap: 16px;
}

@media (min-width: 1024px) {
  .cart-step-payment-methods {
    gap: 24px;
  }
}

.cart-step-payment-methods img {
  height: 25px;
  width: auto;
}

/* Video preview section start */
.cart-step-video-preview {
  order: 1;
  border: 1px solid var(--gray-dark);
  border-radius: 20px;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-decoration: none;
  overflow: hidden;
  align-items: center;
  gap: 20px;
  background: var(--gradient-dark);
  color: var(--white);

  transition: border-color 0.3s ease-in-out;
}

.cart-step-video-preview:hover {
  border-color: var(--gray-light);
}

.cart-step-video-preview-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 44px 28px;
  text-align: center;
}
.cart-step-video-preview-content p {
  color: var(--gray);
  line-height: var(--line-height-base);
}

@media (min-width: 768px) {
  .cart-step-video-preview-content {
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .cart-step-video-preview-content {
    padding: 44px 72px;
  }
}

.cart-step-video-preview-content h2 span {
  color: var(--brand-yellow);
}

.cart-step-video-preview:hover .cart-step-video-play-button {
  background-color: var(--white);
  color: var(--brand-blue);
}

.cart-step-video-preview h3 {
  font-weight: 700;
  justify-self: start;
  text-align: left;
  text-decoration: none;
}

.cart-step-video-image-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.cart-step-video-image-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-step-video-play-button {
  z-index: 1;
  background: rgba(26, 34, 46, 0.25);
  backdrop-filter: blur(4px);
  border-radius: 99px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.cart-step-video-preview .cart-step-button {
  width: 100%;
}

/* Header section start */

.cart-step-header-section {
  background: linear-gradient(to bottom, var(--dark-bg), var(--black));
  padding-top: 80px;
  padding-bottom: 80px;
  color: var(--white);
}

.cart-step-header-section-layout {
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  row-gap: 44px;
  column-gap: 28px;
}

@media (min-width: 1024px) {
  .cart-step-header-section-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-flow: column;
  }
}
@media (min-width: 1280px) {
  .cart-step-header-section-layout {
    grid-template-columns: 325px 1fr 1fr 325px;
  }
}

.cart-step-header-left-section {
  display: flex;
  flex-direction: column;
  gap: 44px;
  padding-top: 24px;
}

.cart-step-header-middle-section {
  grid-column: 2 / 4;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.cart-step-header-right-section {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

@media (min-width: 1024px) {
  .cart-step-header-left-section {
    padding-top: 44px;
  }
  .cart-step-header-right-section {
    padding-top: 44px;
  }
}
/* Header section end */

/* Pricing section start */
.cart-step-pricing-section {
  margin-bottom: 32px;
  text-align: center;
}
@media (min-width: 1024px) {
  .cart-step-pricing-section {
    text-align: left;
    margin-bottom: 0;
    grid-row-start: 1;
    grid-column: 1 / 2;
  }
}

.cart-step-pricing-section h1 {
  margin-bottom: 16px;
}

.cart-step-pricing-section-price {
  font-weight: 700;
}
.cart-step-pricing-section-price span {
  color: var(--brand-yellow);
}

.cart-step-header-separator {
  margin: 24px 0;
}
.cart-step-header-separator hr {
  border: none;
  border-top: 1px solid var(--gray-dark);
}
/* Pricing section end */

/* Trustpilot section start */
.cart-step-trustpilot {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
}
@media (min-width: 1024px) {
  .cart-step-trustpilot {
    justify-content: flex-start;
  }
}

.cart-step-trustpilot-stars {
  margin-right: 4px;
}

.cart-step-trustpilot-text {
  display: flex;
  align-items: center;
  margin-bottom:3px;
}

.cart-step-trustpilot-text span {
  font-weight: 700;
}
/* Trustpilot section end */

/* What's included section start */
.cart-step-whats-included {
  order: 0;
}

.cart-step-whats-included--desktop-only {
  display: none;
}

.cart-step-whats-included--mobile-only {
  display: block;
}

@media (min-width: 1024px) {
  .cart-step-whats-included--desktop-only {
    display: block;
  }

  .cart-step-whats-included--mobile-only {
    display: none;
  }
}

.cart-step-whats-included h3 {
  margin-bottom: 16px;
  font-weight: 700;
}

.cart-step-whats-included ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-step-whats-included li {
  line-height: var(--line-height-tight);
  color: var(--gray);
  display: flex;
  gap: 12px;
}

.cart-step-whats-included svg {
  flex-shrink: 0;
  margin-top: 4px;
  width: 14px;
  height: 14px;
}
/* What's included section end */

/* Agreement terms section start */
.cart-step-agreement-terms {
  order: 2;
}

.cart-step-agreement-terms {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-step-agreement-terms--mobile-only {
  display: flex;
  order: 1;
}

.cart-step-agreement-terms--desktop-only {
  display: none;
}

@media (min-width: 1024px) {
  .cart-step-agreement-terms--desktop-only {
    display: flex;
  }

  .cart-step-agreement-terms--mobile-only {
    display: none;
  }
}

.cart-step-agreement-terms li {
  display: flex;
  gap: 12px;
  align-items: start;
}
.cart-step-agreement-terms svg {
  margin-top: 2px;
  flex-shrink: 0;
}
.cart-step-agreement-terms p {
  line-height: var(--line-height-tight);
  color: var(--gray);
}

.cart-step-agreement-terms span {
  font-weight: 700;
}
/* Agreement terms section end */

/* Hero carousel section start */
.cart-step-header-middle-section {
  margin: 0 -28px;
}
@media (min-width: 1024px) {
  .cart-step-header-middle-section {
    margin: 0;
  }
}

.cart-step-hero-carousel {
  margin: 0;
}
.cart-step-hero-carousel {
  border-radius: 24px;
  overflow: hidden;
}

.cart-step-hero-carousel-image-wrapper {
  aspect-ratio: 2/3;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.cart-step-hero-carousel-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
/* Hero carousel section end */

/* Call to action section start */
.cart-step-call-the-action {
  order: 0;
}

@media (min-width: 1024px) {
  .cart-step-call-the-action {
    order: 1;
  }
}

.cart-step-call-the-action .cart-step-button {
  width: 100%;
  min-height: 54px;
}
/* Call to action section end */

/* Why section start */
.cart-step-why-section {
  order: 1;
}

.cart-step-why-section-title {
  margin-bottom: 28px;
  font-weight: 700;
}

.cart-step-why-section-title span {
  color: var(--brand-yellow);
}

.cart-step-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-step-benefits-list li {
  display: flex;
  gap: 12px;
  line-height: var(--line-height-tight);
}

.cart-step-benefits-list li span {
  font-weight: 700;
}

.cart-step-benefits-list li::before {
  content: "";
  display: block;
  width: 17px;
  height: 1px;
  background-color: var(--gray-dark);
  margin: auto 0;
}
/* Why section end */

/* hero carousel */
.cart-step-hero-carousel {
  --f-carousel-slide-width: 100%;
  /* --f-carousel-spacing: 0;
  --f-carousel-slide-padding: 0 1rem; */

  /* dots */
  --f-carousel-dots-width: 18px;
  --f-carousel-dots-height: 18px;
  --f-carousel-dots-border-radius: 100%;
  --f-carousel-dot-color: transparent;

  --f-carousel-dot-width: 10px;
  --f-carousel-dot-height: 10px;
  --f-carousel-dot-border-radius: 100%;
  --f-carousel-dot-bg: var(--white);
  --f-carousel-dot-active-bg: var(--white);
  --f-carousel-dot-opacity: 100%;
  --f-carousel-dot-hover-opacity: 100%;

  --f-button-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.cart-step-hero-carousel .f-carousel__nav button {
  --f-button-width: 54px;
  --f-button-height: 54px;
  --f-button-border-radius: 100%;

  --f-button-color: var(--white);

  --f-button-bg: var(--gray-dark);
  --f-button-hover-bg: var(--white);
  --f-button-hover-color: var(--gray-dark);
  --f-button-active-bg: var(--white);

  --f-button-next-pos: 28px;
  --f-button-prev-pos: 28px;

  --f-button-svg-width: 14px;
  --f-button-svg-height: 14x;

  --f-button-svg-stroke-width: 3px;
  --f-button-svg-filter: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  z-index: 10;
}
.cart-step-hero-carousel .f-carousel__nav button:not(:hover) {
  background-color: var(--gray-dark);
  color: var(--white);
}

.cart-step-hero-carousel.f-carousel {
  margin-bottom: 0;
}

.cart-step-hero-carousel .f-carousel__nav {
  display: none;
}

@media (min-width: 1024px) {
  .cart-step-hero-carousel .f-carousel__nav {
    display: block;
  }
}

/* // should adjust this */
.cart-step-hero-carousel .f-carousel__track {
  max-height: calc(100vh - 178px);
}

.cart-step-hero-carousel .f-carousel__dot {
  border: 1px solid var(--white);
}

.cart-step-hero-carousel .f-carousel__dots {
  bottom: 44px;
}

.cart-step-hero-carousel .f-carousel__nav button,
.cart-step-hero-carousel .f-carousel__dots button {
  min-width: auto;
}
.cart-step-hero-carousel .f-carousel__dots .is-current span {
  background-color: var(--white);
}

/* Update modal styles */
.fancybox__content {
  margin: 0;
  padding: 0;
  background: transparent;
}

.fancybox__backdrop {
  background: #0d1117bf;
  backdrop-filter: blur(4px);
}

.fancybox__content > .f-button.is-close-btn {
  position: fixed;
  background: none;
  top: 16px;
  right: 16px;
  z-index: 10;
}

.video-header-video-preview-box .fancybox__content {
  width: auto !important;
  height: auto !important;
  background: none !important;
}

.video-header-video-preview-box .is-close-btn {
  width: 44px;
  height: 44px;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
}

.video-header-video-preview-box .is-close-btn:hover {
  background: var(--brand-yellow) !important;
  color: var(--gray-dark) !important;
}
.video-header-video-preview-box .fancybox__nav {
  display: none;
}

.cart-step-sticky-buy-block {
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  border-radius: 28px 28px 0 0;
  padding: 20px 28px;
  gap: 16px;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
  background-color: #1A222E40;
  backdrop-filter: blur(60px);
}

.cart-step-sticky-buy-block.is-visible {
  opacity: 1;
  z-index: 2;
}

.cart-step-sticky-buy-block button {
  min-height: 54px;
}

.cart-step-sticky-buy-block p {
  font-weight: 700;
  text-align: center;
}

.cart-step-sticky-buy-block p span {
  color: var(--brand-yellow);
}

@media (min-width: 1024px) {
  .cart-step-sticky-buy-block {
    width: 325px;
    left: auto;
    right: 28px;
    bottom: 30px;
    padding: 28px;
    border-radius: 28px;
  }
}


/**********************************/
/********* Language Popup *********/
/**********************************/
/* Popup background */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
.popup-overlay::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(15px);
  z-index: -1;
}
/* Popup content */
.popup-content {
  /* background: #fff; */
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 450px;
  position: relative;
}
.popup-content h2 {
  color: #fff;
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 30px;
}
.popup-content .lang-flag {
  width: 40px;
}
/* Buttons inside popup */
.popup-btn {
  display: flex;
  gap: 20px;
  margin: 10px 0;
  padding: 20px 10px;
  background: #0D1117;
  color: #fff;
  text-decoration: none;
  border-radius: 17px;
  border: 1px solid #485363;
  transition: 0.3s;
  align-items: center;
  justify-content: center;
}
.popup-btn:hover,
.popup-btn:active,
.popup-btn:focus {
  background: #1A222E;
  border: 1px solid #fff;
  color: #fff;
}
.popup-btn span {
  display: flex;
  width: 160px;
  gap: 20px;
}
/* Close button */
.popup-close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 20px;
  cursor: pointer;
  color: #fff;
}
/**********************************/
/********* Language Popup *********/
/**********************************/