@font-face {
  font-family: "IQOS";
  src: url("/styles/fonts/IQOS-Light.eot");
  src: url("/styles/fonts/IQOS-Light.eot?#iefix") format("embedded-opentype"), url("/styles/fonts/IQOS-Light.woff2") format("woff2"), url("/styles/fonts/IQOS-Light.woff") format("woff"), url("/styles/fonts/IQOS-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IQOS";
  src: url("/styles/fonts/IQOS-Bold.eot");
  src: url("/styles/fonts/IQOS-Bold.eot?#iefix") format("embedded-opentype"), url("/styles/fonts/IQOS-Bold.woff2") format("woff2"), url("/styles/fonts/IQOS-Bold.woff") format("woff"), url("/styles/fonts/IQOS-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IQOS";
  src: url("/styles/fonts/IQOS-Regular.eot");
  src: url("/styles/fonts/IQOS-Regular.eot?#iefix") format("embedded-opentype"), url("/styles/fonts/IQOS-Regular.woff2") format("woff2"), url("/styles/fonts/IQOS-Regular.woff") format("woff"), url("/styles/fonts/IQOS-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IQOS AR";
  src: url("/styles/fonts/ar/IQOSSansArabic-Light.eot");
  src: url("/styles/fonts/ar/IQOSSansArabic-Light.eot?#iefix") format("embedded-opentype"), url("/styles/fonts/ar/IQOSSansArabic-Light.woff2") format("woff2"), url("/styles/fonts/ar/IQOSSansArabic-Light.woff") format("woff"), url("/styles/fonts/ar/IQOSSansArabic-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IQOS AR";
  src: url("/styles/fonts/ar/IQOSSansArabic-Bold.eot");
  src: url("/styles/fonts/ar/IQOSSansArabic-Bold.eot?#iefix") format("embedded-opentype"), url("/styles/fonts/ar/IQOSSansArabic-Bold.woff2") format("woff2"), url("/styles/fonts/ar/IQOSSansArabic-Bold.woff") format("woff"), url("/styles/fonts/ar/IQOSSansArabic-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IQOS AR";
  src: url("/styles/fonts/ar/IQOSSansArabic-Regular.eot");
  src: url("/styles/fonts/ar/IQOSSansArabic-Regular.eot?#iefix") format("embedded-opentype"), url("/styles/fonts/ar/IQOSSansArabic-Regular.woff2") format("woff2"), url("/styles/fonts/ar/IQOSSansArabic-Regular.woff") format("woff"), url("/styles/fonts/ar/IQOSSansArabic-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --default-text-color: var(--current-text-color, #34303d);
  --default-text-color-inverse: var(--current-text-color-inverse, white);
  --default-current-color: var(--current-color, #00d1d2);
}

:root {
  --container-gutter-x: 20px;
  --container-width: calc(100vw - var(--container-gutter-x));
}
@media (min-width: 400px) {
  :root {
    --container-gutter-x: 20px;
  }
}
@media (min-width: 768px) {
  :root {
    --container-width: calc(720px - var(--container-gutter-x));
    --container-gutter-x: 16px;
  }
}
@media (min-width: 992px) {
  :root {
    --container-width: calc(960px - var(--container-gutter-x));
  }
}
@media (min-width: 1200px) {
  :root {
    --container-width: calc(1140px - var(--container-gutter-x));
  }
}
@media (min-width: 1400px) {
  :root {
    --container-width: calc(calc(1324px + var(--container-gutter-x)) - var(--container-gutter-x));
  }
}

:root {
  --container-flex-direction: row;
  --container-flex-direction-inverse: row-reverse;
  --arrow-direction: 0deg;
  --flip-value: 1;
}

/* General Mixins & Functions */
.checkout-store-dropdown-container {
  margin-bottom: 32px;
}
.checkout-store-dropdown-container .select2-container {
  width: 100% !important;
  text-align: start;
}
.checkout-store-dropdown-container .select2-container .select2-selection--single {
  position: relative;
  padding: 24px 15px;
  border: 1px solid #b0b0b0;
  background-color: #fff;
  display: flex;
  align-items: center;
  padding-inline: 16px 40px;
  outline: none;
  box-shadow: none;
  transition: all 0.6s ease;
}
.checkout-store-dropdown-container .select2-container .select2-selection--single .select2-selection__arrow {
  display: none;
}
.checkout-store-dropdown-container .select2-container .select2-selection--single::before {
  content: "";
  display: block;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  inset-inline-end: 56px;
  translate: -50% -50%;
  background-image: url(/images/icons/red-x-circle.svg);
  background-size: 100%;
  width: 25px;
  aspect-ratio: 1;
}
.checkout-store-dropdown-container .select2-container .select2-selection--single::after {
  content: "";
  position: absolute;
  top: 50%;
  inset-inline-end: 20px;
  translate: 0 -50%;
  mask-image: url(/images/icons/chevron-down.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url(/images/icons/chevron-down.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  background-color: #34303d;
  width: 12px;
  aspect-ratio: 1;
}
.checkout-store-dropdown-container .select2-container .select2-selection--single .select2-selection__rendered {
  padding-inline: 0;
  color: #34303d;
  font-size: 16px;
}
.checkout-store-dropdown-container .select2-container .select2-results__options {
  margin: 0;
  padding: 0;
}
.checkout-store-dropdown-container .select2-container .select2-results__options .select2-results__option {
  list-style: none;
  font-size: 14px;
  padding: 6px 10px;
}
.checkout-store-dropdown-container .select2-container .select2-results__options .select2-results__option.select2-results__option--highlighted, .checkout-store-dropdown-container .select2-container .select2-results__options .select2-results__option:hover {
  background-color: #00d1d2;
  color: #34303d;
}
.checkout-store-dropdown-container .select2-container input {
  font-size: 14px;
  padding: 6px 10px;
  outline: #00d1d2;
}

.checkout-page-content .checkout-page-title {
  margin-bottom: 32px;
  margin-top: 32px;
}
.checkout-page-content .checkout-page-layout {
  width: 100%;
  --page-gap: 50px;
  --gap: var(--page-gap);
  --col-width: calc((100% / 1) - (var(--gap) * (1 - 1) / 1));
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
}
.checkout-page-content .checkout-page-layout:where(ul, ol) {
  margin-bottom: 0;
}
.checkout-page-content .checkout-page-layout > .col,
.checkout-page-content .checkout-page-layout > .col:is(:first-child, :last-child),
.checkout-page-content .checkout-page-layout > .listingItemDIV {
  flex: unset;
  width: var(--col-width);
}
@media (min-width: 992px) {
  .checkout-page-content .checkout-page-layout {
    --gap: var(--page-gap);
    --col-width: calc((100% / 2) - (var(--gap) * (2 - 1) / 2));
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap);
  }
  .checkout-page-content .checkout-page-layout:where(ul, ol) {
    margin-bottom: 0;
  }
  .checkout-page-content .checkout-page-layout > .col,
  .checkout-page-content .checkout-page-layout > .col:is(:first-child, :last-child),
  .checkout-page-content .checkout-page-layout > .listingItemDIV {
    flex: unset;
    width: var(--col-width);
  }
}
.checkout-page-content .checkout-section-title {
  text-wrap: pretty;
  font-size: clamp(24px, 21.9357798165px + 0.4587155963vw, 28px);
  font-size: clamp(24px, 21.9357798165px + 0.4587155963vw, 28px);
  line-height: 1.3;
  font-weight: 600;
}
.checkout-page-content .checkout-section-title.regular {
  font-weight: 400;
}
.checkout-page-content .checkout-section-title {
  margin-bottom: 32px;
}
.checkout-page-content .checkout-subsection-title {
  text-wrap: pretty;
  font-size: clamp(24px, 21.9357798165px + 0.4587155963vw, 28px);
  font-size: clamp(24px, 21.9357798165px + 0.4587155963vw, 28px);
  line-height: 1.3;
  font-weight: 600;
}
.checkout-page-content .checkout-subsection-title.regular {
  font-weight: 400;
}
.checkout-page-content .checkout-subsection-title {
  margin-bottom: 32px;
}
.checkout-page-content .checkout-divider {
  border: 0;
  border-bottom: 1px solid rgba(52, 48, 61, 0.12);
  margin: 22px 0;
  display: none;
}
.checkout-page-content .checkout-toggle-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  border-bottom: solid 1px #eeeeee;
  margin-bottom: 32px;
  padding-bottom: 32px;
}
.checkout-page-content .checkout-toggle-btn {
  --color: var(--default-text-color);
  --background-color: transparent;
  --border-color: var(--default-text-color);
  --hover-color: var(--default-text-color-inverse);
  --hover-background-color: var(--default-text-color);
  --hover-border-color: var(--default-text-color);
  display: inline-block;
  border: 2px solid var(--border-color);
  background-color: var(--background-color);
  color: var(--color);
  padding: 5px 32px 9px;
  border-radius: 24px;
  letter-spacing: 0.5px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.6s ease;
  text-wrap: nowrap;
}
.checkout-page-content .checkout-toggle-btn:empty {
  display: none;
}
.checkout-page-content .checkout-toggle-btn:hover {
  background-color: var(--hover-background-color);
  color: var(--hover-color);
  border-color: var(--hover-border-color);
}
.checkout-page-content .checkout-toggle-btn {
  --hover-color: #34303d;
  --hover-background-color: #00d1d2;
  --hover-border-color: #00d1d2;
}
.checkout-page-content .checkout-toggle-btn.active {
  background-color: #00d1d2;
  color: #34303d;
  border-color: #00d1d2;
}
.checkout-page-content .checkout-address-section:not(:last-child) {
  margin-bottom: 32px;
}
.checkout-page-content .checkout-same-as-shipping {
  font-size: 16px;
  line-height: 1.5;
  text-wrap: pretty;
}
.checkout-page-content .checkout-same-as-shipping:empty {
  display: none;
}
.checkout-page-content .checkout-same-as-shipping p {
  margin-bottom: 16px;
}
.checkout-page-content .checkout-same-as-shipping p:last-child {
  margin-bottom: 0;
}
.checkout-page-content .checkout-same-as-shipping ul,
.checkout-page-content .checkout-same-as-shipping ol {
  padding-inline-start: 1rem;
  margin-inline-start: 20px;
}
.checkout-page-content .checkout-same-as-shipping li {
  list-style: disc;
}
.checkout-page-content .checkout-same-as-shipping {
  margin-top: 12px;
  margin-bottom: 16px;
}
.checkout-page-content .checkout-same-as-shipping label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  position: relative;
}
.checkout-page-content .checkout-same-as-shipping label input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  border: 1.5px solid rgba(52, 48, 61, 0.3);
  background: #fff;
  cursor: pointer;
  transition: all 0.6s ease;
  position: relative;
  flex-shrink: 0;
}
.checkout-page-content .checkout-same-as-shipping label input[type=checkbox]:checked {
  background: #34303d;
  border-color: #34303d;
}
.checkout-page-content .checkout-same-as-shipping label input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 10px;
  height: 6px;
  border: 2px solid #fff;
  border-top: 0;
  border-right: 0;
}
.checkout-page-content .checkout-addresses-wrapper {
  display: grid;
  gap: 0;
}
.checkout-page-content input {
  accent-color: #00d1d2;
}
.checkout-page-content .checkout-address-card {
  position: relative;
  display: block;
  background: transparent;
  padding: 20px 0;
  border-bottom: solid 1px #eeeeee;
  transition: all 0.6s ease;
  cursor: pointer;
}
.checkout-page-content .checkout-address-card > input[type=radio] {
  position: absolute;
  inset: 0 0 0 0;
  opacity: 0;
  pointer-events: none;
}
.checkout-page-content .checkout-address-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  border: 1.5px solid rgba(52, 48, 61, 0.3);
  background: #fff;
  transition: all 0.6s ease;
}
.checkout-page-content .checkout-address-card.selected::before {
  background: #34303d;
  border-color: #34303d;
}
.checkout-page-content .checkout-address-card.selected::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 25px;
  width: 10px;
  height: 6px;
  border: 2px solid #fff;
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg);
}
.checkout-page-content .checkout-address-card__content {
  padding-left: 32px;
}
.checkout-page-content .checkout-address-card__header strong {
  font-size: 16px;
  line-height: 1.5;
  text-wrap: pretty;
}
.checkout-page-content .checkout-address-card__header strong:empty {
  display: none;
}
.checkout-page-content .checkout-address-card__header strong p {
  margin-bottom: 16px;
}
.checkout-page-content .checkout-address-card__header strong p:last-child {
  margin-bottom: 0;
}
.checkout-page-content .checkout-address-card__header strong ul,
.checkout-page-content .checkout-address-card__header strong ol {
  padding-inline-start: 1rem;
  margin-inline-start: 20px;
}
.checkout-page-content .checkout-address-card__header strong li {
  list-style: disc;
}
.checkout-page-content .checkout-address-card__header strong {
  font-size: clamp(17px, 16.4839449541px + 0.1146788991vw, 18px);
  line-height: 1.5;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.checkout-page-content .checkout-address-card__name {
  font-size: 16px;
  line-height: 1.5;
  text-wrap: pretty;
}
.checkout-page-content .checkout-address-card__name:empty {
  display: none;
}
.checkout-page-content .checkout-address-card__name p {
  margin-bottom: 16px;
}
.checkout-page-content .checkout-address-card__name p:last-child {
  margin-bottom: 0;
}
.checkout-page-content .checkout-address-card__name ul,
.checkout-page-content .checkout-address-card__name ol {
  padding-inline-start: 1rem;
  margin-inline-start: 20px;
}
.checkout-page-content .checkout-address-card__name li {
  list-style: disc;
}
.checkout-page-content .checkout-address-card__name {
  font-size: clamp(13px, 12.4839449541px + 0.1146788991vw, 14px);
  line-height: 1.5;
  color: var(--default-text-color);
  line-height: 1.5;
  margin-bottom: 2px;
}
.checkout-page-content .checkout-address-card__phone, .checkout-page-content .checkout-address-card__email, .checkout-page-content .checkout-address-card__details {
  font-size: 16px;
  line-height: 1.5;
  text-wrap: pretty;
}
.checkout-page-content .checkout-address-card__phone:empty, .checkout-page-content .checkout-address-card__email:empty, .checkout-page-content .checkout-address-card__details:empty {
  display: none;
}
.checkout-page-content .checkout-address-card__phone p, .checkout-page-content .checkout-address-card__email p, .checkout-page-content .checkout-address-card__details p {
  margin-bottom: 16px;
}
.checkout-page-content .checkout-address-card__phone p:last-child, .checkout-page-content .checkout-address-card__email p:last-child, .checkout-page-content .checkout-address-card__details p:last-child {
  margin-bottom: 0;
}
.checkout-page-content .checkout-address-card__phone ul,
.checkout-page-content .checkout-address-card__phone ol, .checkout-page-content .checkout-address-card__email ul,
.checkout-page-content .checkout-address-card__email ol, .checkout-page-content .checkout-address-card__details ul,
.checkout-page-content .checkout-address-card__details ol {
  padding-inline-start: 1rem;
  margin-inline-start: 20px;
}
.checkout-page-content .checkout-address-card__phone li, .checkout-page-content .checkout-address-card__email li, .checkout-page-content .checkout-address-card__details li {
  list-style: disc;
}
.checkout-page-content .checkout-address-card__phone, .checkout-page-content .checkout-address-card__email, .checkout-page-content .checkout-address-card__details {
  font-size: clamp(13px, 12.4839449541px + 0.1146788991vw, 14px);
  line-height: 1.5;
  color: var(--default-text-color);
  line-height: 1.5;
}
.checkout-page-content .checkout-address-card__email {
  word-break: break-all;
}
.checkout-page-content .checkout-add-address-btn {
  background: transparent;
  border: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--default-text-color);
  font-size: 16px;
  text-decoration: underline;
  cursor: pointer;
  transition: all 0.6s ease;
  border: none;
  background-color: transparent;
}
.checkout-page-content .checkout-add-address-btn:hover {
  color: #00d1d2;
}
.checkout-page-content .checkout-add-address-btn {
  text-decoration: none;
  margin-top: 16px;
  font-size: 14px;
}
.checkout-page-content .checkout-add-address-btn span {
  font-size: 16px;
  line-height: 1;
}
.checkout-page-content .checkout-payment-section .checkout-payment-option {
  font-size: 16px;
  line-height: 1.5;
  text-wrap: pretty;
}
.checkout-page-content .checkout-payment-section .checkout-payment-option:empty {
  display: none;
}
.checkout-page-content .checkout-payment-section .checkout-payment-option p {
  margin-bottom: 16px;
}
.checkout-page-content .checkout-payment-section .checkout-payment-option p:last-child {
  margin-bottom: 0;
}
.checkout-page-content .checkout-payment-section .checkout-payment-option ul,
.checkout-page-content .checkout-payment-section .checkout-payment-option ol {
  padding-inline-start: 1rem;
  margin-inline-start: 20px;
}
.checkout-page-content .checkout-payment-section .checkout-payment-option li {
  list-style: disc;
}
.checkout-page-content .checkout-payment-section .checkout-payment-option {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  cursor: pointer;
  border-bottom: solid 1px #eeeeee;
  padding-bottom: 30px;
  width: 100%;
}
.checkout-page-content .checkout-payment-section .checkout-payment-option input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(52, 48, 61, 0.3);
  background: #fff;
  cursor: pointer;
  transition: all 0.6s ease;
  position: relative;
  flex-shrink: 0;
}
.checkout-page-content .checkout-payment-section .checkout-payment-option input[type=radio]:checked {
  border-color: rgb(197, 197, 197);
  background: white;
}
.checkout-page-content .checkout-payment-section .checkout-payment-option input[type=radio]:checked::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00d1d2;
}
.checkout-page-content .checkout-section--sidebar .checkout-summary,
.checkout-page-content .checkout-section--sidebar .summary-card,
.checkout-page-content .checkout-section--sidebar .checkout-summary-container {
  background: #f6f4f0;
  padding: 32px;
  transition: all 0.6s ease;
}
.checkout-page-content .checkout-summary-title {
  text-wrap: pretty;
  font-size: clamp(26px, 20.8394495413px + 1.1467889908vw, 36px);
  line-height: 1.3;
  font-weight: 600;
}
.checkout-page-content .checkout-summary-title.regular {
  font-weight: 400;
}
.checkout-page-content .checkout-summary-title {
  margin-bottom: 32px;
}
.checkout-page-content .checkout-items-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 16px;
}
.checkout-page-content .checkout-items-list .checkout-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(52, 48, 61, 0.08);
}
.checkout-page-content .checkout-items-list .checkout-item:first-child {
  padding-top: 0;
}
.checkout-page-content .checkout-items-list .checkout-item:last-child {
  border-bottom: 0;
}
.checkout-page-content .checkout-items-list .checkout-item-image {
  width: 64px;
  height: 64px;
}
.checkout-page-content .checkout-items-list .checkout-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.checkout-page-content .checkout-items-list .checkout-item-name {
  font-size: 16px;
  line-height: 1.5;
  text-wrap: pretty;
}
.checkout-page-content .checkout-items-list .checkout-item-name:empty {
  display: none;
}
.checkout-page-content .checkout-items-list .checkout-item-name p {
  margin-bottom: 16px;
}
.checkout-page-content .checkout-items-list .checkout-item-name p:last-child {
  margin-bottom: 0;
}
.checkout-page-content .checkout-items-list .checkout-item-name ul,
.checkout-page-content .checkout-items-list .checkout-item-name ol {
  padding-inline-start: 1rem;
  margin-inline-start: 20px;
}
.checkout-page-content .checkout-items-list .checkout-item-name li {
  list-style: disc;
}
.checkout-page-content .checkout-items-list .checkout-item-name {
  font-size: clamp(17px, 16.4839449541px + 0.1146788991vw, 18px);
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 4px;
}
.checkout-page-content .checkout-items-list .checkout-item-quantity, .checkout-page-content .checkout-items-list .checkout-item-points {
  font-size: 16px;
  line-height: 1.5;
  text-wrap: pretty;
}
.checkout-page-content .checkout-items-list .checkout-item-quantity:empty, .checkout-page-content .checkout-items-list .checkout-item-points:empty {
  display: none;
}
.checkout-page-content .checkout-items-list .checkout-item-quantity p, .checkout-page-content .checkout-items-list .checkout-item-points p {
  margin-bottom: 16px;
}
.checkout-page-content .checkout-items-list .checkout-item-quantity p:last-child, .checkout-page-content .checkout-items-list .checkout-item-points p:last-child {
  margin-bottom: 0;
}
.checkout-page-content .checkout-items-list .checkout-item-quantity ul,
.checkout-page-content .checkout-items-list .checkout-item-quantity ol, .checkout-page-content .checkout-items-list .checkout-item-points ul,
.checkout-page-content .checkout-items-list .checkout-item-points ol {
  padding-inline-start: 1rem;
  margin-inline-start: 20px;
}
.checkout-page-content .checkout-items-list .checkout-item-quantity li, .checkout-page-content .checkout-items-list .checkout-item-points li {
  list-style: disc;
}
.checkout-page-content .checkout-items-list .checkout-item-quantity, .checkout-page-content .checkout-items-list .checkout-item-points {
  font-size: clamp(13px, 12.4839449541px + 0.1146788991vw, 14px);
  line-height: 1.5;
  color: rgba(52, 48, 61, 0.8);
  line-height: 1.4;
}
.checkout-page-content .checkout-items-list .checkout-item-price {
  font-size: 16px;
  line-height: 1.5;
  text-wrap: pretty;
}
.checkout-page-content .checkout-items-list .checkout-item-price:empty {
  display: none;
}
.checkout-page-content .checkout-items-list .checkout-item-price p {
  margin-bottom: 16px;
}
.checkout-page-content .checkout-items-list .checkout-item-price p:last-child {
  margin-bottom: 0;
}
.checkout-page-content .checkout-items-list .checkout-item-price ul,
.checkout-page-content .checkout-items-list .checkout-item-price ol {
  padding-inline-start: 1rem;
  margin-inline-start: 20px;
}
.checkout-page-content .checkout-items-list .checkout-item-price li {
  list-style: disc;
}
.checkout-page-content .checkout-items-list .checkout-item-price {
  font-size: clamp(17px, 16.4839449541px + 0.1146788991vw, 18px);
  line-height: 1.5;
  font-weight: 600;
  white-space: nowrap;
  align-self: start;
}
.checkout-page-content .promo-code-section {
  margin: 12px 0 16px;
}
.checkout-page-content .promo-code-section .promo-code-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding-top: 8px;
}
.checkout-page-content .promo-code-section .promo-code-row:empty {
  display: none;
}
.checkout-page-content .promo-code-section .promo-code-input {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(52, 48, 61, 0.15);
  background: #fff;
  color: var(--default-text-color);
  transition: all 0.6s ease;
}
.checkout-page-content .promo-code-section .promo-code-input:focus {
  outline: none;
  border-color: #00d1d2;
}
.checkout-page-content .promo-code-section .error-promo-code {
  display: block;
  margin-top: 8px;
  color: #dd3333;
  font-size: 16px;
  line-height: 1.5;
  text-wrap: pretty;
}
.checkout-page-content .promo-code-section .error-promo-code:empty {
  display: none;
}
.checkout-page-content .promo-code-section .error-promo-code p {
  margin-bottom: 16px;
}
.checkout-page-content .promo-code-section .error-promo-code p:last-child {
  margin-bottom: 0;
}
.checkout-page-content .promo-code-section .error-promo-code ul,
.checkout-page-content .promo-code-section .error-promo-code ol {
  padding-inline-start: 1rem;
  margin-inline-start: 20px;
}
.checkout-page-content .promo-code-section .error-promo-code li {
  list-style: disc;
}
.checkout-page-content .promo-code-section .error-promo-code {
  font-size: clamp(13px, 12.4839449541px + 0.1146788991vw, 14px);
  line-height: 1.5;
}
.checkout-page-content .cart-totals-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.checkout-page-content .cart-totals-section .totals-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(52, 48, 61, 0.08);
}
.checkout-page-content .cart-totals-section .totals-row:last-child {
  border-bottom: 0;
}
.checkout-page-content .cart-totals-section .totals-row .label {
  font-size: 16px;
  line-height: 1.5;
  text-wrap: pretty;
}
.checkout-page-content .cart-totals-section .totals-row .label:empty {
  display: none;
}
.checkout-page-content .cart-totals-section .totals-row .label p {
  margin-bottom: 16px;
}
.checkout-page-content .cart-totals-section .totals-row .label p:last-child {
  margin-bottom: 0;
}
.checkout-page-content .cart-totals-section .totals-row .label ul,
.checkout-page-content .cart-totals-section .totals-row .label ol {
  padding-inline-start: 1rem;
  margin-inline-start: 20px;
}
.checkout-page-content .cart-totals-section .totals-row .label li {
  list-style: disc;
}
.checkout-page-content .cart-totals-section .totals-row .label {
  font-size: clamp(13px, 12.4839449541px + 0.1146788991vw, 14px);
  line-height: 1.5;
  color: rgba(52, 48, 61, 0.9);
}
.checkout-page-content .cart-totals-section .totals-row .value {
  font-size: 16px;
  line-height: 1.5;
  text-wrap: pretty;
}
.checkout-page-content .cart-totals-section .totals-row .value:empty {
  display: none;
}
.checkout-page-content .cart-totals-section .totals-row .value p {
  margin-bottom: 16px;
}
.checkout-page-content .cart-totals-section .totals-row .value p:last-child {
  margin-bottom: 0;
}
.checkout-page-content .cart-totals-section .totals-row .value ul,
.checkout-page-content .cart-totals-section .totals-row .value ol {
  padding-inline-start: 1rem;
  margin-inline-start: 20px;
}
.checkout-page-content .cart-totals-section .totals-row .value li {
  list-style: disc;
}
.checkout-page-content .cart-totals-section .totals-row .value {
  font-size: clamp(13px, 12.4839449541px + 0.1146788991vw, 14px);
  line-height: 1.5;
  font-weight: 500;
  color: rgba(52, 48, 61, 0.95);
  white-space: nowrap;
}
.checkout-page-content .cart-totals-section .totals-row.subtotal-row .value {
  font-weight: 600;
}
.checkout-page-content .cart-total-final {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-top: 1px solid rgba(52, 48, 61, 0.12);
  border-bottom: 1px solid rgba(52, 48, 61, 0.12);
  margin: 8px 0 16px;
}
.checkout-page-content .cart-total-final .label {
  font-size: 16px;
  line-height: 1.5;
  text-wrap: pretty;
}
.checkout-page-content .cart-total-final .label:empty {
  display: none;
}
.checkout-page-content .cart-total-final .label p {
  margin-bottom: 16px;
}
.checkout-page-content .cart-total-final .label p:last-child {
  margin-bottom: 0;
}
.checkout-page-content .cart-total-final .label ul,
.checkout-page-content .cart-total-final .label ol {
  padding-inline-start: 1rem;
  margin-inline-start: 20px;
}
.checkout-page-content .cart-total-final .label li {
  list-style: disc;
}
.checkout-page-content .cart-total-final .label {
  font-size: clamp(18px, 16.9678899083px + 0.2293577982vw, 20px);
  line-height: 1.5;
  font-weight: 600;
}
.checkout-page-content .cart-total-final .value {
  font-size: 16px;
  line-height: 1.5;
  text-wrap: pretty;
}
.checkout-page-content .cart-total-final .value:empty {
  display: none;
}
.checkout-page-content .cart-total-final .value p {
  margin-bottom: 16px;
}
.checkout-page-content .cart-total-final .value p:last-child {
  margin-bottom: 0;
}
.checkout-page-content .cart-total-final .value ul,
.checkout-page-content .cart-total-final .value ol {
  padding-inline-start: 1rem;
  margin-inline-start: 20px;
}
.checkout-page-content .cart-total-final .value li {
  list-style: disc;
}
.checkout-page-content .cart-total-final .value {
  font-size: clamp(18px, 16.9678899083px + 0.2293577982vw, 20px);
  line-height: 1.5;
  font-weight: 600;
  white-space: nowrap;
}
.checkout-page-content .checkout-action-buttons {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.checkout-page-content .checkout-action-buttons .checkout-confirm-btn {
  width: 100%;
  max-width: 280px;
}

.order-success-header {
  background: #f6f4f0;
  position: relative;
  z-index: 2;
  --section-pt: calc(100px * 0.5);
  --section-pb: calc(100px * 0.5);
  padding-top: var(--section-pt);
  padding-bottom: var(--section-pb);
  text-align: center;
  margin-bottom: 60px;
}
.order-success-header .order-success-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 28px;
}
.order-success-header .order-success-icon svg,
.order-success-header .order-success-icon img {
  width: 50px;
  height: 50px;
}
.order-success-header .order-success-title {
  text-wrap: pretty;
  font-size: clamp(24px, 21.9357798165px + 0.4587155963vw, 28px);
  font-size: clamp(24px, 21.9357798165px + 0.4587155963vw, 28px);
  line-height: 1.3;
  font-weight: 600;
}
.order-success-header .order-success-title.regular {
  font-weight: 400;
}
.order-success-header .order-success-title {
  font-weight: 600;
  margin: 0 auto 24px;
  max-width: 900px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .order-success-header .order-success-title {
    text-wrap: pretty;
  }
  .order-success-header .order-success-title.regular {
    font-weight: 400;
  }
}
.order-success-header .order-success-order-number {
  font-size: 16px;
  line-height: 1.5;
  text-wrap: pretty;
}
.order-success-header .order-success-order-number:empty {
  display: none;
}
.order-success-header .order-success-order-number p {
  margin-bottom: 16px;
}
.order-success-header .order-success-order-number p:last-child {
  margin-bottom: 0;
}
.order-success-header .order-success-order-number ul,
.order-success-header .order-success-order-number ol {
  padding-inline-start: 1rem;
  margin-inline-start: 20px;
}
.order-success-header .order-success-order-number li {
  list-style: disc;
}
.order-success-header .order-success-order-number {
  color: #34303d;
  margin: 0;
  font-weight: 400;
}

@media (max-width: 992px) {
  .checkout-page-content .checkout-section--sidebar {
    position: static;
    margin-top: 40px;
  }
  .checkout-page-content .checkout-summary,
  .checkout-page-content .summary-card,
  .checkout-page-content .checkout-summary-container {
    padding: 24px !important;
  }
  .checkout-page-content .checkout-summary-title {
    font-size: 20px;
    margin-bottom: 24px;
  }
}
@media (max-width: 768px) {
  .checkout-page-content .checkout-page-title {
    margin-bottom: 24px;
    margin-top: 24px;
    font-size: 24px;
  }
  .checkout-page-content .checkout-section-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .checkout-page-content .checkout-subsection-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .checkout-page-content .checkout-toggle-buttons {
    margin-bottom: 24px;
    padding-bottom: 24px;
  }
  .checkout-page-content .checkout-address-section:not(:last-child) {
    margin-bottom: 24px;
  }
  .checkout-page-content .checkout-section--sidebar .checkout-summary,
  .checkout-page-content .checkout-section--sidebar .summary-card,
  .checkout-page-content .checkout-section--sidebar .checkout-summary-container {
    padding: 20px !important;
  }
  .checkout-page-content .checkout-summary-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .checkout-page-content .checkout-items-list {
    margin-bottom: 12px;
  }
  .checkout-page-content .checkout-items-list .checkout-item {
    grid-template-columns: 60px 1fr auto;
    gap: 12px;
    padding: 12px 0;
  }
  .checkout-page-content .checkout-items-list .checkout-item-image {
    width: 60px;
    height: 60px;
  }
  .checkout-page-content .checkout-items-list .checkout-item-name {
    font-size: 14px;
    margin-bottom: 2px;
  }
  .checkout-page-content .checkout-items-list .checkout-item-quantity, .checkout-page-content .checkout-items-list .checkout-item-points {
    font-size: 12px;
  }
  .checkout-page-content .checkout-items-list .checkout-item-price {
    font-size: 14px;
    align-self: start;
  }
  .checkout-page-content .promo-code-section .promo-code-row {
    grid-template-columns: 1fr auto;
    gap: 8px;
  }
  .checkout-page-content .promo-code-section .promo-code-input {
    height: 36px;
    font-size: 14px;
  }
  .checkout-page-content .promo-code-section .apply-promo-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
  .checkout-page-content .cart-totals-section .totals-row {
    padding: 8px 0;
  }
  .checkout-page-content .cart-totals-section .totals-row .label {
    font-size: 13px;
  }
  .checkout-page-content .cart-totals-section .totals-row .value {
    font-size: 13px;
  }
  .checkout-page-content .cart-total-final {
    padding: 14px 0;
    margin: 12px 0;
  }
  .checkout-page-content .cart-total-final .label {
    font-size: 16px;
  }
  .checkout-page-content .cart-total-final .value {
    font-size: 16px;
  }
  .checkout-page-content .checkout-action-buttons {
    margin-top: 24px;
  }
  .checkout-page-content .checkout-action-buttons .checkout-confirm-btn {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .checkout-page-content .checkout-items-list .checkout-item {
    grid-template-columns: 50px 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
  }
  .checkout-page-content .checkout-items-list .checkout-item-image {
    width: 50px;
    height: 50px;
    grid-row: 1/2;
  }
  .checkout-page-content .checkout-items-list .checkout-item-details {
    grid-column: 2;
    grid-row: 1;
  }
  .checkout-page-content .checkout-items-list .checkout-item-price {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    align-self: center;
    font-weight: 600;
  }
  .checkout-page-content .promo-code-section .promo-code-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .checkout-page-content .promo-code-section .promo-code-row .apply-promo-btn {
    width: 100%;
  }
  .checkout-page-content .checkout-section--sidebar .checkout-summary,
  .checkout-page-content .checkout-section--sidebar .summary-card,
  .checkout-page-content .checkout-section--sidebar .checkout-summary-container {
    padding: 16px !important;
  }
}