:root {
  --checkbutton-cc-color: #3362ab;
  --card-background-active: #F7FDFF;
  --card-border-active: #3362AB;
  --card-border: #E0E0E0;
  --card-background: #ffffff;
  --card-text-primary: #333;
  --card-text-secondary: #808080;
  --sale-text: #f00;
  --best-value-text: #333333;
  --best-seller-text: #fff;
  --text-badge: undefined;
  --free-shipping-popup-title-color: #000000;
  --free-shipping-popup-text-color: #000000;
  --payment-heading-bg-color: #f0f5ff;
  --best-seller-background: #4F27E6;
  --best-value-background: #FFC438;
  --acf-ecs_cc_v4_border_color: #A3A3A3;
  --acf-ecs_cc_v4_bg_color: #F5F5F5;
  --acf-ecs_cc_v4_text_color: #0A0A0A;
  --acf-ecs_cc_v4_text_dimmed_color: #525252;
}
/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
body {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  font-family: 'Roboto', sans-serif;
  background: #f5f5f5;
  transition: opacity ease-in 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ===== TYPOGRAPHY ===== */
.roboto {
  font-family: 'Roboto', sans-serif;
}
.poppins {
  font-family: 'Poppins', sans-serif;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo span {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -1px;
}

/* ===== LAYOUT ===== */
.main {
  background-color: #f5f5f5;
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
}
@media (max-width: 767px) {
  .main {
    display: initial;
    padding: 16px 0 16px;
    background-color: #fff;
  }
}

.contentContainer {
  max-width: 1072px;
  margin: 0 auto;
  display: flex;
  width: 100%;
}
@media (max-width: 767px) {
  .contentContainer {
    flex-direction: column;
    padding: 0;
  }
}

.contentContainer>.productContainer {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  width: 598px;
  padding: 24px 38px;
  border-right: 1px solid #e0e0e0;
}
@media (max-width: 767px) {
  .contentContainer>.productContainer {
    padding: 24px 16px 0;
    margin-bottom: 0;
    width: 100%;
    border-right: 0;
  }
}

.contentContainer>.summaryContainer {
  width: 443px;
  background-color: #f5f5f5;
  padding: 40px 0 40px 38px;
}
@media (max-width: 767px) {
  .contentContainer>.summaryContainer {
    width: 100%;
    padding: 16px 16px 24px 16px;
  }
}

/* ===== TOPBAR ===== */
.topbarOffer {
  background: #000;
  color: #fff;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  padding: 4px 16px;
}

/* ===== HEADER ===== */
.topLine__header {
  border-bottom: 1px solid #e0e0e0;
  background: #fff;
}
.topLine {
  max-width: 1072px;
  padding: 16px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topLine__logo {
  height: 32px;
}
@media (max-width: 767px) {
  .topLine__logo {
    height: 24px;
  }
}
.topLine__shoppingBag {
  width: 24px;
  height: 24px;
}
@media (max-width: 767px) {
  .topLine__shoppingBag {
    width: 20px;
    height: 20px;
  }
}

/* ===== BARS ===== */
.bars__container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 32px;
}
@media (max-width: 767px) {
  .bars__container {
    padding: 0;
  }
}
.bars {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 12px 16px;
}
.bars__bar_1 {
  background: #fff5f3;
  justify-content: space-between;
}
.bars__bar_1_leftText {
  color: #333;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  margin-right: 16px;
  white-space: nowrap;
}
.bars__bar_1_leftText_red {
  color: #ff2d2b;
}
.bars__bar_1__colorBar {
  border-radius: 100px;
  border: 1px solid #e0e0e0;
  background: #fff;
  display: flex;
  width: 100%;
  height: 12px;
  flex: 1;
}
.bars__bar_1__colorBar_colored {
  background: linear-gradient(90deg, #cbfe00 0%, #fee500 48.44%, #ff2b2b 100%);
  border-radius: 100px 0 0 100px;
  width: 78.1327%;
}
.bars__bar_1_rightText {
  color: #333;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  margin-left: 24px;
  white-space: nowrap;
}
.bars__bar_2 {
  background: #f0f5ff;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  gap: 8px;
}
.bars__bar_2 img {
  width: 19px;
  height: 19px;
}
.bars__bar_3 {
  background: #fffef3;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  gap: 8px;
}
.bars__bar_3 svg {
  flex-shrink: 0;
}
.bars__bar_3_clockTime {
  font-weight: 700;
}

/* ===== PRODUCT PACKAGES ===== */
.productPackages__wrapper {
  display: grid;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 32px;
}
@media (max-width: 767px) {
  .productPackages__wrapper {
    padding-bottom: 16px;
  }
}
.productPackages__heading {
  color: #333;
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  padding-bottom: 16px;
}
@media (max-width: 767px) {
  .productPackages__heading {
    padding-top: 24px;
  }
}

.productPackages__containerWrapper {
  border-radius: 4px;
  transition: background-color 300ms ease-in-out, outline 300ms ease-in-out;
  cursor: pointer;
}
.productPackages__containerWrapper--unchecked {
  outline: 1px solid var(--card-border);
  background-color: var(--card-background);
}
.productPackages__containerWrapper--checked {
  outline: 1px solid var(--card-border-active);
  background-color: var(--card-background-active);
}

.productPackages__container {
  display: grid;
  grid-template-columns: auto auto auto auto minmax(114px, auto);
  align-items: center;
  padding: 16px;
}
@media (max-width: 1071px) {
  .productPackages__container {
    grid-template-columns: minmax(100px, auto) 1px minmax(110px, 30%);
    padding: 12px;
  }
}
@media (max-width: 375px) {
  .productPackages__container {
    padding: 12px 8px;
  }
}

.productPacItem__firstBlock {
  display: flex;
  align-items: center;
}
.productPacItem__image {
  width: 85px;
  height: 85px;
  object-fit: cover;
  border-radius: 3.085px;
  margin-right: 24px;
}
@media (max-width: 1071px) {
  .productPacItem__image {
    margin-right: 12px;
  }
}
@media (max-width: 375px) {
  .productPacItem__image {
    width: 64px;
    height: 64px;
  }
}

.productPacItem__label__container {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-right: 16px;
}
.productPacItem__label__amount {
  color: var(--card-text-primary);
  font-size: 28px;
  font-weight: 900;
  line-height: 40px;
  text-transform: capitalize;
}
.productPacItem__label {
  color: var(--card-text-primary);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}
@media (max-width: 1071px) {
  .productPacItem__label {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 6px;
  }
}

.productPacItem__divider {
  height: 100%;
  width: 1px;
  background-color: var(--card-border);
}
@media (max-width: 1071px) {
  .productPacItem__divider.mobileHide {
    display: none;
  }
}

.productPacItem__discount__container.mobileHide {
  display: flex;
  justify-content: center;
}
@media (max-width: 1071px) {
  .productPacItem__discount__container.mobileHide {
    display: none;
  }
}

.productPacItem__discount__box {
  display: flex;
  padding: 8px 10px;
  gap: 4px;
  width: 86px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  background: #fafafa;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  margin: 0 16px;
  white-space: nowrap;
}
.productPacItem__discount__box img {
  width: 12px;
  height: 12px;
}
.productPacItem__discount__box.desktopHide {
  display: none;
}
@media (max-width: 1071px) {
  .productPacItem__discount__box.desktopHide {
    display: flex;
    width: 57px;
    padding: 4px 8px;
    font-size: 12px;
    margin: 0;
  }
}

.productPacItem__priceBlock__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-left: 16px;
}
@media (max-width: 1071px) {
  .productPacItem__priceBlock__container {
    margin: 0 auto;
  }
}

.productPacItem__priceBlock__oldPrice {
  color: var(--card-text-secondary);
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  text-decoration: line-through;
}
.productPacItem__priceBlock__mainPriceBlock {
  display: flex;
  justify-content: center;
  align-items: center;
}
.productPacItem__priceBlock__price {
  color: var(--card-text-primary);
  font-size: 24px;
  font-weight: 900;
  line-height: 17px;
  text-transform: capitalize;
}
.productPacItem__priceBlock__centsBlock {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 2px;
}
.productPacItem__priceBlock__cents {
  color: var(--card-text-primary);
  font-size: 12px;
  font-weight: 900;
  line-height: 9px;
}
.productPacItem__priceBlock__each {
  color: var(--card-text-primary);
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
}
.productPacItem__priceBlock sup {
  color: var(--card-text-primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 11px;
  vertical-align: super;
}

.productPacItem__priceBlock__bestValueTag {
  border-radius: 4px;
  background: #FFC438;
  display: flex;
  padding: 4px 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: var(--best-value-text);
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
}
.productPacItem__priceBlock__labelTag {
  border-radius: 4px;
  background: #4F27E6;
  display: flex;
  padding: 4px 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--best-seller-text);
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
}

/* Check button style */
.productPackages__button {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #bdbdbd;
  background-color: transparent;
  position: relative;
  margin-right: 16px;
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color 150ms ease-in;
}
.productPackages__button::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  height: 10px;
  width: 10px;
  top: calc(50% - 5px);
  left: calc(50% - 5px);
  background-color: var(--checkbutton-cc-color);
  transform: scale(0);
  transition: transform 150ms ease-in;
}
.productPackages__containerWrapper--checked .productPackages__button {
  border-color: var(--checkbutton-cc-color);
}
.productPackages__containerWrapper--checked .productPackages__button::before {
  transform: scale(1);
}

/* ===== FORM ===== */
.paymentMethodNew {
  width: 100%;
}
.expressCheckout__wrapper {
  width: 100%;
  padding-bottom: 32px;
}
.expressCheckout__container {
  display: grid;
  position: relative;
  gap: 16px;
  padding: 20px;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
}
.expressCheckout__container::before {
  content: attr(data-before);
  position: absolute;
  color: #828282;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  top: -19px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 16px;
  background-color: #fff;
}
.expressCheckout__container::after {
  content: attr(data-after);
  color: #828282;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  position: absolute;
  left: 50%;
  bottom: -7px;
  padding: 0 16px;
  transform: translateX(-50%);
  background-color: #fff;
  white-space: nowrap;
}
.paypal-container {
  grid-column: 1 / -1;
}
.submitPaypal {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFC438;
  border: none;
  border-bottom: 2px solid #DBA72D;
  padding: 12px 0;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 150ms ease-in;
}
.submitPaypal:hover {
  background: #FFD87A;
  border-bottom-color: #E1B64F;
}
.submitPaypal__paypalLogo {
  width: 123px;
  height: 32px;
}

.form-order {
  display: flex;
  flex-direction: column;
}
.form_fieldsgroup--withPaddings {
  padding-bottom: 32px;
}
@media (max-width: 767px) {
  .form_fieldsgroup--withPaddings {
    padding-bottom: 16px;
  }
}

.dividedForm__headings {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: #333;
  padding-bottom: 16px;
}
.dividedForm__contactFields {
  display: grid;
  gap: 12px;
}
.dividedForm__contactFields__nameFields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.dividedForm__deliveryFields {
  display: grid;
  gap: 12px;
}
.dividedForm__deliveryFields__triple {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
@media (max-width: 767px) {
  .dividedForm__deliveryFields__triple {
    grid-template-columns: 1fr 1fr;
  }
  .dividedForm__deliveryFields__triple .input-container:first-child {
    grid-column: 1/3;
  }
}

.input-container {
  margin-bottom: 12px;
  position: relative;
  width: 100%;
}
.input {
  border: 1px solid #e0e0e0;
  height: 52px;
  border-radius: 4px;
  position: relative;
  padding: 8px 12px 0 12px;
  box-sizing: border-box;
  background-color: #fff;
}
.input:focus-within {
  background: #fff;
  border: 1px solid #3362ab;
}
.input--text {
  background-color: #fff;
  transition: padding .2s;
  position: relative;
}
.input--customSelect {
  position: relative;
}
.input--select {
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  font-family: 'Roboto', sans-serif;
  color: #495057;
  border: none;
  text-align: left;
  padding-top: 14px;
  position: relative;
  appearance: none;
  background: transparent url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.99998 12C7.74907 12 7.49819 11.904 7.3069 11.7123L1.2872 5.67776C0.904267 5.29388 0.904267 4.6715 1.2872 4.28779C1.66997 3.90407 2.29071 3.90407 2.67367 4.28779L7.99998 9.62748L13.3263 4.28797C13.7092 3.90426 14.3299 3.90426 14.7127 4.28797C15.0958 4.67169 15.0958 5.29407 14.7127 5.67794L8.69306 11.7125C8.50167 11.9042 8.25079 12 7.99998 12Z" fill="%23828282"/></svg>') no-repeat right 0rem top 50%;
  background-size: 16px auto;
  cursor: pointer;
}
.input--select:focus {
  outline: none;
}
.overflowed-select {
  text-overflow: ellipsis;
  padding-right: 12px;
}

.styledLabel {
  position: absolute;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  color: #828282;
  top: calc(50% - 9px);
  left: 12px;
  opacity: 1;
  z-index: 0;
  background: transparent;
  transition: font-size 150ms ease-in, top 150ms ease-in, opacity .3s;
  pointer-events: none;
}
.styledLabel--active {
  top: 8px;
  font-size: 12px;
  line-height: 16px;
}
.styledLabel__enhancedContrast {
  color: var(--acf-ecs_cc_v4_text_dimmed_color, #828282);
}

.styledInput {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  transition: padding .3s;
  padding-top: 24px;
  padding-left: 12px;
  padding-right: 12px;
  color: #333;
  background: transparent;
  border: none;
  outline: none;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.styledInput::placeholder {
  color: #bdbdbd;
  opacity: 1;
}

/* ===== ACCORDION ===== */
.accordionContainer {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  width: 100%;
}
.accordionContainer__heading {
  display: flex;
  padding: 16px;
  background-color: #f0f5ff;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 300ms ease-in;
  cursor: pointer;
}
.accordionContainer__heading--unchecked {
  background-color: transparent;
  border-bottom: 1px solid #e0e0e0;
}
.accordionContainer__button {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--checkbutton-cc-color);
  background-color: transparent;
  position: relative;
  margin-right: 16px;
  flex-shrink: 0;
  transition: border-color 150ms ease-in, background-color 150ms ease-in;
}
.accordionContainer__button::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  height: 12px;
  width: 12px;
  top: calc(50% - 6px);
  left: calc(50% - 6px);
  background-color: var(--checkbutton-cc-color);
  transform: scale(1);
  transition: transform 150ms ease-in, opacity 150ms ease-in;
}
.accordionContainer__heading--unchecked .accordionContainer__button {
  border-color: #bdbdbd;
}
.accordionContainer__heading--unchecked .accordionContainer__button::before {
  transform: scale(0);
}
.accordionContainer__wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms cubic-bezier(0.26, 0, 0.24, 0.99);
}
.accordionContainer__wrapper[aria-expanded="true"] {
  max-height: 400px;
  transition: max-height 300ms cubic-bezier(0.26, 0, 0.24, 0.99) 300ms;
}
.accordionContainer__content {
  padding: 12px 12px 12px 12px;
  background: #fafafa;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #e8e8e8;
}
.cardRadio__labelText {
  font-size: 14px;
  font-weight: 400;
  color: #333;
  text-transform: capitalize;
}
.cardRadio__labelText.enhancedContrast {
  color: var(--acf-ecs_cc_v4_text_color, #333);
  font-weight: 500;
}

.cardsContainer {
  display: flex;
  margin-left: auto;
  position: relative;
}
.cardsContainer__cardImage {
  display: inline;
  width: auto;
  height: 22px;
  margin-right: 4px;
}

/* ===== BUTTON ===== */
.button--submit {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 8px;
  border: none;
  border-radius: 10px;
  color: #fff;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  background-color: #0d40ff;
  border-bottom: 2px solid #0d40ff;
  cursor: pointer;
  transition: background-color 150ms ease-in;
  margin-top: 12px;
}
.button--submit:hover {
  background-color: #002fdd;
}
.button--submit .submit__text {
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
}

/* ===== PAYMENT ICONS ===== */
.paymentIcons {
  margin-top: 16px;
  margin-bottom: 16px;
  display: grid;
  justify-items: center;
  row-gap: 16px;
}
.paymentIcons__text {
  display: flex;
  align-items: center;
  gap: 8px;
}
.paymentIcons__text span:last-of-type {
  font-size: 14px;
  font-weight: 400;
  color: #828282;
  text-align: center;
}

/* ===== SUMMARY ===== */
.summaryContainer.v2 {
  padding-top: 24px;
}
@media (max-width: 767px) {
  .summaryContainer.v2 {
    padding-top: 16px;
  }
}

.orderOverviewDrawerV3 {
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  background: #fff;
  margin-bottom: 24px;
}
.orderOverviewDrawerV3__opener {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.orderOverviewDrawerV3_label_title {
  display: flex;
  align-items: center;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  gap: 8px;
}
.orderOverviewDrawerV3__content {
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: all .4s ease-in-out;
}
.orderOverviewDrawerV3__content__show {
  max-height: 800px;
}
.orderOverviewDrawerV3_label_price {
  color: #333;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.productCard {
  display: grid;
  grid-template-columns: 64px auto 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.productCard__imageContainer {
  position: relative;
  height: 64px;
  width: 64px;
}
.productCard__imageContainer__indicator {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 21px;
  height: 21px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #5c5c5c;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  line-height: 21px;
}
.productCard img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
}
.productCard__titleBlock {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.productCard__titleBlock__title {
  color: #333;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 4px;
}
.productCard__priceBlock {
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-self: end;
  text-align: right;
}
.productCard__priceBlock__price {
  color: #333;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.productCard__priceBlock__oldPrice {
  color: #5c5c5c;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  text-decoration: line-through;
  margin-bottom: 4px;
}

/* ===== WARRANTY ===== */
.warranty__checkbox {
  width: 100%;
  display: grid;
  grid-template-columns: min-content 1fr;
  align-items: center;
  gap: 8px;
}
.warranty__input {
  display: none;
}
.warranty__label {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  cursor: pointer;
}
.warranty__check {
  cursor: pointer;
  display: grid;
  justify-content: center;
  align-content: center;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid #bdbdbd;
  flex-shrink: 0;
}
.warranty__input:checked~.warranty__check {
  background-color: #333;
  border: 0 !important;
}
.warranty__input:checked~.warranty__check span {
  display: inline-block;
}
.warranty__check span {
  display: none;
  width: 10.31px;
  height: 9.45px;
  background-color: #333;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/* ===== ORDER TOTALS ===== */
.orderTotals__container {
  margin: 16px 0;
}
.orderTotals__item {
  display: flex;
  justify-content: space-between;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.orderTotals__item:first-child {
  margin-bottom: 8px;
}
.orderTotals__item__shippingLabel {
  display: flex;
  align-items: center;
  gap: 4px;
}

.orderOverviewDrawerV3__savingsLabel__cont__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
}
.orderOverviewDrawerV3__savingsLabel {
  color: #00b834;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.total {
  display: flex;
  justify-content: space-between;
}
.total div {
  color: #333;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}
.separator {
  display: flex;
  align-items: center;
  color: #333;
  margin: 16px 0;
}
.separator::before,
.separator::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #e0e0e0;
}
.separator__text {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding: 0 16px;
}
.separator__benefits {
  margin-top: 24px;
}

/* ===== BENEFITS ===== */
.benefitsV2__item {
  display: flex;
  margin-bottom: 16px;
}
.benefitsV2__item:last-child {
  margin-bottom: 24px;
}
.benefitsV2__item img {
  align-self: flex-start;
  margin-right: 16px;
  width: 32px;
  height: 32px;
}
.benefitsV2__item__title {
  color: #333;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  margin-bottom: 8px;
}
.benefitsV2__item__text {
  color: #5c5c5c;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

/* ===== TESTIMONIALS ===== */
.testimonials__container {
  display: flex;
  flex-direction: column;
}
.testimonials__box {
  display: flex;
  flex-direction: column;
  padding: 16px;
  border-radius: 6px;
  border: 1px solid #e3e3e3;
  background: #fff;
  margin-bottom: 12px;
}
.testimonials__box:last-child {
  margin-bottom: 0;
}
.testimonials__upperRow {
  display: flex;
  justify-content: space-between;
}
.testimonials__upperRow__inside {
  display: flex;
  align-items: center;
}
.testimonials__name {
  color: #5c5c5c;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.testimonials__stars {
  display: flex;
  margin-right: 8px;
}
.testimonials__stars img {
  height: 16px;
  width: auto;
}
.testimonials__buyerLabel {
  color: #00b890;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
}
.testimonials__title {
  color: #333;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  margin: 8px 0;
}
.testimonials__text {
  color: #5c5c5c;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

/* ===== FOOTER ===== */
.simpleFooter {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid #e0e0e0;
}
.simpleFooter_links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.simpleFooter_links a {
  color: #333;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

/* ===== MOBILE ===== */
.mobileSectionSeperator {
  display: none;
}
@media (max-width: 767px) {
  .mobileSectionSeperator {
    display: block;
    width: 100vw;
    height: 16px;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    background: #f5f5f5;
    position: relative;
    left: 0;
    margin-left: -16px;
    margin-top: 16px;
    margin-bottom: 16px;
  }
}

/* ===== MONEY BACK BADGE ===== */
.summaryContainer>div:first-child {
  display: flex;
  padding: 16px;
  align-items: flex-start;
  gap: 16px;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  background: #f5f5f5;
  margin-bottom: 24px;
}
.summaryContainer>div:first-child img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}
.summaryContainer>div:first-child h3 {
  color: #000;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  margin: 0 0 4px;
}
.summaryContainer>div:first-child div {
  color: #3c3c3c;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}