/** Shopify CDN: Minification failed

Line 841:40 Expected ":"

**/
.drawer {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  background-color: rgba(var(--color-foreground), 0.5);
  z-index: 2222222;
  transition: visibility var(--duration-default) ease;
}

.drawer.active {
  visibility: visible;
}

.drawer__inner {
  right: 0px;
  top: 0px;
  position: relative;
  bottom: 0px;
  height: 100%;
  width: 48rem;
  max-width: calc(100vw - 3rem);
  padding: 0 1.5rem;
  border: 0.1rem solid rgba(var(--color-foreground), 0.2);
  border-right: 0;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--duration-default) ease;
  overflow: hidden;
}

.drawer__inner-empty {
  height: 100%;
  padding: 0 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cart-drawer__warnings {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
}

cart-drawer.is-empty .drawer__inner {
  display: grid;
  grid-template-rows: 1fr;
  align-items: center;
  padding: 0;
}

cart-drawer.is-empty .drawer__header {
  display: none;
}

cart-drawer:not(.is-empty) .cart-drawer__warnings,
cart-drawer:not(.is-empty) .cart-drawer__collection {
  display: none;
}

.cart-drawer__warnings--has-collection .cart__login-title {
  margin-top: 2.5rem;
}

.drawer.active .drawer__inner {
  transform: translateX(0);
}

.drawer__header {
  position: relative;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer__heading {
  margin: 0 0 1rem;
}

.drawer__close {
  display: inline-block;
  padding: 0;
  min-width: 4.4rem;
  min-height: 4.4rem;
  box-shadow: 0 0 0 0.2rem rgba(var(--color-button), 0);
  position: absolute;
  top: 10px;
  right: -10px;
  color: rgb(var(--color-foreground));
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.cart-drawer__warnings .drawer__close {
  right: 5px;
}

.drawer__close .svg-wrapper {
  height: 2rem;
  width: 2rem;
}

.drawer__contents {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.drawer__footer {
  border-top: 0.1rem solid rgba(var(--color-foreground), 0.2);
  padding: 1.5rem 0;
}

.drawer__footer .product_payments {
    padding-bottom: 0px;
    padding-top: 14px;
}

cart-drawer-items.is-empty + .drawer__footer {
  display: none;
}

.drawer__footer > details {
  margin-top: -1.5rem;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.2);
}

.drawer__footer > details[open] {
  padding-bottom: 1.5rem;
}

.drawer__footer summary {
  display: flex;
  position: relative;
  line-height: 1;
  padding: 1.5rem 2.8rem 1.5rem 0;
}

.drawer__footer > details + .cart-drawer__footer {
  padding-top: 1.5rem;
}

cart-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
}

.cart-drawer__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.cart-drawer__overlay:empty {
  display: block;
}

.cart-drawer__form {
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
}

.cart-drawer__collection {
  margin: 0 2.5rem 1.5rem;
}

.cart-drawer .drawer__cart-items-wrapper {
  flex-grow: 1;
}

.cart-drawer .cart-items,
.cart-drawer tbody {
  display: block;
  width: 100%;
}

.cart-drawer thead {
  display: inline-table;
  width: 100%;
}

cart-drawer-items {
  overflow: auto;
  flex: 1;
}

@media screen and (max-height: 650px) {
  /* cart-drawer-items {
    overflow: visible;
  } */

  .drawer__inner {
    overflow: scroll;
  }
}

.cart-drawer .cart-item {
  display: grid;
  grid-template: repeat(2, auto) / repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
  padding-bottom: 14px;
  position: relative;
}

.cart-drawer .cart-item:last-child {
  margin-bottom: 1rem;
}

.cart-drawer .cart-item__media {
  grid-row: 1 / 3;
}

.cart-drawer .cart-item__image {
  max-width: 100%;
}

.cart-drawer .cart-item__nested-line .cart-item__image {
  max-width: 60%;
  float: right;
}

.cart-drawer .cart-items thead {
  margin-bottom: 0.5rem;
}

.cart-drawer .cart-items thead th:first-child,
.cart-drawer .cart-items thead th:last-child {
  width: 0;
  padding: 0;
}

.cart-drawer .cart-items thead th:nth-child(2) {
  width: 50%;
  padding-left: 0;
}

.cart-drawer .cart-items thead tr {
  display: table-row;
  margin-bottom: 0;
}

.cart-drawer .cart-items th {
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
}

.cart-drawer .cart-item:last-child {
  margin-bottom: 1.5rem;
}

.cart-drawer .cart-item .loading__spinner {
  right: 5px;
  padding-top: 2.5rem;
  inset: 0;
  position: relative;
  padding: 0px;
}

.cart-drawer .cart-items td {
  padding-top: 1.7rem;
}

.cart-drawer .cart-items .cart-item__nested-line td:not(.cart-item__quantity) {
  padding-top: 1rem;
}

.cart-drawer .cart-item > td + td {
  padding-left: 1rem;
}

.cart-drawer .cart-item__details {
  width: auto;
  grid-column: 2 / 5;
}

.cart-drawer .cart-item__totals {
  pointer-events: none;
  position: relative;
}

.cart-drawer.cart-drawer .cart-item__price-wrapper > *:only-child {
  margin-top: 0;
}

.cart-drawer .cart-item__price-wrapper .cart-item__discounted-prices {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cart-drawer .unit-price {
  margin-top: 0.6rem;
}

.cart-drawer .cart-items .cart-item__quantity {
  padding-top: 0;
  grid-column: 2 / 5;
}

@media screen and (max-width: 749px) {
  .cart-drawer .cart-item cart-remove-button {
    margin-left: 0;
  }
}

.cart-drawer__footer > * + * {
  margin-top: 1rem;
}

.cart-drawer .totals {
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.cart-drawer .price {
  line-height: 1;
}

.cart-drawer .tax-note {
  margin: 1.2rem 0 2rem auto;
  text-align: left;
}

.cart-drawer .product-option dd {
  word-break: break-word;
}

.cart-drawer details[open] > summary .icon-caret {
  transform: rotate(180deg);
}

.cart-drawer .cart__checkout-button {
  max-width: none;
}

.drawer__footer .cart__dynamic-checkout-buttons {
  max-width: 100%;
}

.drawer__footer #dynamic-checkout-cart ul {
  flex-wrap: wrap !important;
  flex-direction: row !important;
  margin: 0.5rem -0.5rem 0 0 !important;
  gap: 0.5rem;
}

.drawer__footer [data-shopify-buttoncontainer] {
  justify-content: flex-start;
}

.drawer__footer #dynamic-checkout-cart ul > li {
  flex-basis: calc(50% - 0.5rem) !important;
  margin: 0 !important;
}

.drawer__footer #dynamic-checkout-cart ul > li:only-child {
  flex-basis: 100% !important;
  margin-right: 0.5rem !important;
}

@media screen and (min-width: 750px) {
  .drawer__footer #dynamic-checkout-cart ul > li {
    flex-basis: calc(100% / 3 - 0.5rem) !important;
    margin: 0 !important;
  }

  .drawer__footer #dynamic-checkout-cart ul > li:first-child:nth-last-child(2),
  .drawer__footer #dynamic-checkout-cart ul > li:first-child:nth-last-child(2) ~ li,
  .drawer__footer #dynamic-checkout-cart ul > li:first-child:nth-last-child(4),
  .drawer__footer #dynamic-checkout-cart ul > li:first-child:nth-last-child(4) ~ li {
    flex-basis: calc(50% - 0.5rem) !important;
  }
}

cart-drawer-items::-webkit-scrollbar {
  width: 3px;
}

cart-drawer-items::-webkit-scrollbar-thumb {
  background-color: rgba(var(--color-foreground), 0.7);
  border-radius: 100px;
}

cart-drawer-items::-webkit-scrollbar-track-piece {
  margin-top: 31px;
}

.drawer__upsell-wrapper::-webkit-scrollbar {
  width: 3px;
}

.drawer__upsell-wrapper::-webkit-scrollbar-thumb {
  background-color: rgba(var(--color-foreground), 0.7);
  border-radius: 100px;
}

.drawer__upsell-wrapper::-webkit-scrollbar-track-piece {
  margin-top: 31px;
}

.cart-drawer .quantity-popover-container {
  padding: 0;
}

.cart-drawer .quantity-popover__info.global-settings-popup {
  transform: translateY(0);
  top: 100%;
}

/* .cart-drawer .cart-item__error {
  margin-top: 0.8rem;
} */

.cart-drawer .quantity-popover__info + .cart-item__error {
  margin-top: 0.2rem;
}

@media screen and (min-width: 750px) {
  .cart-drawer .cart-item__quantity--info quantity-popover > * {
    padding-left: 0;
  }

  .cart-drawer .cart-item__error {
    margin-left: 0;
  }
}




.cart-item__name {
    font-weight: 600;
    letter-spacing: 0;
}

.cart-item__details .product-option {
    font-weight: 500;
    letter-spacing: 0;
    color: black;
}

.cart-item__price-wrapper span.price {
    font-weight: 500;
    color: black;
    letter-spacing: 0;
}

.cart-item__name:hover {
    text-decoration: unset!Important;
}

quantity-input.cart-quantity:after {
    content: unset;
}

quantity-input.cart-quantity {
    border: 1px solid black;
    border-radius: 15px;
}

quantity-input.cart-quantity button.quantity__button span {
    width: 13px;
    height: 13px;
}


.upsell_col {
    width: 80%;
    display: flex;
}

product-card.lx_productCard_main {
    width: 100%;
}

.recommendation-item_image img {
    width: 100%;
}
custom-slider .slider {
    position: relative;
    display: flex;
    flex-wrap: inherit;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1rem;
    scroll-padding-left: 0;
    cursor: grab;
    scrollbar-width: none;
}
.recommendation-item {
    position: relative;
}

/* .recommendation-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
} */

product-card.lx_productCard_main {
    display: flex;
}

.recommendation-item {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 14px;
}

/* custom-slider .slider.recommended_products__wrapper {
    gap: 20px;
} */
/* .upsell_col {
    scroll-snap-align: start;
} */
.upsell_col .product-form__submit {
    font-size: 12px;
}
.cart-drawer__footer * {
    color: black;
}
.cart-drawer__footer * {
    color: black;
}

.cart__checkout-button:after {
    content: unset;
}

.cart__checkout-button {
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0;
    font-weight: 500;
    transition: .8s cubic-bezier(.5,0,0,1);
    border: 1px solid;
}

button#CartDrawer-Checkout:hover {
    color: rgba(var(--color-button),var(--alpha-button-background));
    background: transparent;
}
.lx_cartDrawer_upsell h5 {
    font-size: 20px;
    margin: 0;
    color: black;
    letter-spacing: 0;
    margin-bottom: 10px;
}
.cart__drawer__re_info_left h3 {
    margin: 0;
    font-size: 16px;
    letter-spacing: 0;
    text-decoration: none;
}
.recommendation-item span.badge.price__badge-sale {
    display: none;
}
.recommendation-item_image {
    width: 80px;
    min-width: 80px;
    height: 100%;
    object-fit: cover;
}

.recommendation-item_image img {
    height: 100%;
}
.cart__drawer__re_info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: auto;
    justify-content: space-between;
    align-items: flex-start;
}

.recom___price * {font-size: 14px;letter-spacing: 0;font-weight: 500;}

.cart__drawer__re_info_left {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-decoration: none;
}

.cart__drawer__re_info_right .product-form__buttons button {
    padding: 9px 0!important;
    min-height: unset!important;
    margin-bottom: 0!Important;
    border-radius: 50px;
}
/* custom-slider .slider.active:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
} */
custom-slider .slider.active {
    position: relative;
}
@media (max-width:500px){
  .cart__drawer__re_info {
      flex-direction: column;
      gap: 8px;
  }
}
@media (max-width:600px){
  custom-slider .slider.recommended_products__wrapper {
      gap: 9px;
  }
  .drawer__inner {
      padding: 0 12px;
  }
  .cart-item__price-wrapper .price {
    font-size: 12px;
  }
}

cart-drawer-items.is-empty {
    display: none;
}

cart-drawer-items swiper-component {
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-bottom: 20px;
}
cart-drawer .list-payment{
  justify-content: center;
}

cart-drawer .lx_productCard_main{
  background-color: #eee;
    padding: 10px;
    border-radius: 10px;
    width: 100%;
}

cart-drawer dl .product-option{
  font-size: 12px;
}
cart-drawer td > .product-option{
  font-size: 14px;
}

cart-drawer .quantity{
    min-height: 36px;
    border-radius: 6px;
}


/* Custom  */
.cart-drawer .totals > * {
  font-size: 14px;
}
.cart-drawer .totals__total-value {
    font-size: 16px;
}
.cart-item__quantity-wrapper{
  justify-content: space-between;
  margin-bottom: 0.8rem;
}
.cart-drawer .quantity__button {
  width: calc(3.5rem / var(--font-body-scale));
}
.cart-drawer .quantity{
  width: calc(10rem / var(--font-body-scale) + var(--inputs-border-width) * 2);
}
.cart-drawer .cart-item__loading{
  position: absolute;
    width: 100%;
    left: 0;
    bottom: -1px;
}
.drawer__container{
  display: flex;
  height: 100%;
}
.drawer__upsell-inner{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.drawer__upsell-container{
  width: 220px;
  background: var(--gradient-background);
  padding-left: 1.5rem;
  border: .1rem solid rgba(var(--color-foreground), .2);
  border-right: 0;
  display: flex;
  flex-direction: column;
  transform: translate(100%);
  transition: transform var(--duration-default) ease;
  transition-delay: var(--duration-default);
  overflow: hidden;
  visibility: hidden;
  justify-content: space-between;
}
.drawer.active .drawer__upsell-container {
  transform: translate(0);
  visibility: visible;
  transition: visibility var(--duration-default) ease, transform var(--duration-default) ease;
  transition-delay: var(--duration-default);
}
.drawer__upsell-wrapper {
  height: 100%;
  padding-bottom: 2rem;
  padding-right: 12px; 
  overflow-y: auto;
}


.drawer__upsell-footer{
  padding-bottom: 1.5rem;
  position: sticky;
  bottom: 0;
  border-top: .1rem solid rgba(var(--color-foreground), .2);
  background: var(--gradient-background);
}
.drawer__upsell-point{
  font-size: 12px;
}
  .drawer__upsell-point {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }

  /* Controls the size of the icon container */
  .upsell-icon {
    width: 24px; 
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Ensures the image fits perfectly inside the container */
  .upsell-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
.drawer__upsell-inner custom-slider,
    .drawer__upsell-inner swiper-container,
    .cart-drawer .drawer__contents{
      width: 100%;
    }

    
    /* product card desktop */
    .drawer-product-card {
      background-color: #F5F5F5;
      border-radius: 12px;
      /* padding: 10px; */
      font-family: var(--font-body-family);
      text-align: left;
      width: 100%;
      box-sizing: border-box;
    }

    .drawer-card__media-wrapper {
      position: relative;
      background-color: #FFFFFF;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
      overflow: hidden;
    }

    .drawer-card__image img {
      width: 100%;
      height: auto;
      display: block;
    }

    .drawer-card__quick-view {
      position: absolute;
      bottom: 10px;
      left: 10px;
      right: 10px;
      background-color: #0046A0;
      color: #ffffff;
      border: none;
      border-radius: 8px;
      padding: 10px 0;
      font-size: 14px;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      cursor: pointer;
      transition: background-color 0.2s ease;
      width: calc(100% - 20px);
    }

    .drawer-card__quick-view:hover {
      background-color: #00337a;
    }

    .drawer-card__quick-view svg {
      width: 18px;drawer__upsell-wrapper
      height: 18px;
    }

    .drawer-card__info {
      padding: 0 12px;
      padding-bottom: 10px;
    }

    .drawer-product-card-url{
      text-decoration: none;
    }

    
    .drawer-card__title, .drawer-card__price * {
      font-size: 13px;
      font-weight: 400;
      color: #121212;
      margin: 0 0 8px 0;
      line-height: 1.4;
      margin: 0px;
      text-decoration: none;
    }
    .drawer-card__title{
      margin-bottom: 6px;
      font-size: 14px;
    }

    .ma_quickAdd_in{
        width: calc(100% - 20px);
    }
    .ma_quickAdd_atc:disabled{
      opacity: 0.6;
    }
    .ma_quickAdd_atc{
        --cd-btn-font-size: 14px;
        --cd-btn-color: #fff;
        width: 100%;
        background-color:rgb(12, 12, 12);
        padding: 14px 10px;
        border: none;
        color: var(--cd-btn-color);
        cursor: pointer;
        font-size: var(--cd-btn-font-size);
        
    }
    .ma_quickAdd_atc svg{
      width: var(--cd-btn-font-size);
      height: var(--cd-btn-font-size);
    }
    .ma_quickAdd_atc circle{
      stroke: var(--cd-btn-color);
    }
    .drawer-product-card ma-quickadd{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        bottom: 10px;
        transform: translate(-50%, 100%);
        left: 50%;
        visibility: hidden;
        transition: transform 0.2s ease;
    }
    .drawer-product-card:hover ma-quickadd{
        transform: translate(-50%, 0%);
         visibility: visible;
        transition: transform 0.2s ease;
    }

    /* product card desktop */


    /* Product line card mobile */
    /* Product line card mobile */

    /* =========================================
   Cart Drawer Upsell - Scoped Styles
   ========================================= */
   @media screen and (min-width: 767px) {
    .drawer__upsell-container-mobile  {
  display: none;
}
.drawer__upsell-container-mobile { display: none !important; }
}


.drawer__upsell-footer-inner h5{
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 4px;
    color: #1a1a1a;
    letter-spacing: .5px;
} 
.drawer__upsell-container-mobile {
  margin-top: auto;
  box-sizing: border-box;
}


.drawer__upsell-container-mobile .drawer__upsell-header h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 16px 0;
  color: #1a1a1a;
  letter-spacing: 0.5px;
}
a.drawer-product-line-card-url {
    text-decoration: none;
}

h3.drawer-line-card__title {
    margin-block: 8px;
}
.drawer__upsell-container-mobile .drawer__upsell-inner {
  position: relative;
  width: 100%;
}

.drawer__upsell-container-mobile swiper-container.js-swiper-template {
  width: 100%;
  display: block;
}

.drawer__upsell-container-mobile swiper-slide {
  height: auto;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.drawer__upsell-container-mobile swiper-slide:hover {
  border-color: #d1d1d1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.drawer__upsell-container-mobile .cart-drawer-line-product {
  padding: 10px;
}


.drawer__upsell-container-mobile .swiper-custom-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  gap: 15px;
}

.drawer__upsell-container-mobile .swiper-progress-track {
  flex-grow: 1;
  height: 4px;
  background-color: #e0e0e0;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.drawer__upsell-container-mobile .swiper-progress-fill {
  height: 100%;
  background-color: #1a1a1a;
  width: 0;
  transition: width 0.3s ease;
}

.drawer__upsell-container-mobile .swiper-custom-controls-nav {
  display: flex;
  gap: 8px;
}

.drawer__upsell-container-mobile .swiper-custom-arrow {
  width: 32px;
  height: 32px;
  border: 1px solid #d1d1d1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #fff;
  transition: all 0.2s ease;
  color: #333;
}

.drawer__upsell-container-mobile .swiper-custom-arrow:hover {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
  color: #ffffff;
}

.drawer__upsell-container-mobile .swiper-custom-arrow svg {
  width: 16px;
  height: 16px;
}

.drawer__upsell-container-mobile .swiper-custom-scrollbar {
  margin-top: 10px;
  height: 4px;
  background: rgba(0,0,0,0.1);
}


.drawer-line-card__image img{
  width: 100%;
  height: 100%;
}
.drawer__upsell-container-mobile .drawer__upsell-point:last-child {
  margin-bottom: 0;
}



@media screen and (min-width: 768px) {
  .drawer__upsell-container-mobile .hide-on-desktop { display: none !important; }
  .usp-bar-container {
    display: none;
}
.drawer__upsell-footer-inner h5{
  margin-bottom: 16px;
}
}

.drawer__upsell-footer-inner {
    padding-top: 10px;
}
.drawer__upsell-container-mobile .drawer-product-line-card-url {
  display: flex;       
  flex-direction: row;
  text-decoration: none;
  padding: 8px;
  background: #fff;
  border-radius: 12px;            
  border: 1px solid #f0f0f0;      
  box-shadow: 0 4px 12px rgba(0,0,0,0.03); 
  position: relative;             
  gap: 15px;
      background: #f9f9f9;                      
}


.drawer__upsell-container-mobile .drawer-line-card__media-wrapper {
  width: 90px;         
  height: 90px;        
  flex-shrink: 0;                 
  padding-bottom: 0;   
  background: transparent;        
  position: static;    
  border-radius: 8px;
  overflow: hidden;               
}

.drawer__upsell-container-mobile .drawer-line-card__image {
  width: 100%;
  height: 100%;
  padding-bottom: 0;
  border-radius: 8px;
}

.drawer__upsell-container-mobile .drawer-line-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  border-radius: 8px;
}


.drawer__upsell-container-mobile .drawer-line-card__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 0;
    justify-content: space-between;
    gap: 20px;
    height: 100%;
}

.drawer__upsell-container-mobile .drawer-line-card__title {
  font-size: 14px;
  font-weight: 700;               
  color: #111;
  margin: 0 0 6px 0;
  line-height: 1.3;
  white-space: normal;            
}


.drawer__upsell-container-mobile .drawer-line-card__price .price__container {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-direction: row-reverse;    
  justify-content: flex-end;
}

.drawer__upsell-container-mobile .price-item--sale,
.drawer__upsell-container-mobile .price-item--regular {
  color: #000;
  font-size: 16px;
}

.drawer__upsell-container-mobile .price__sale s.price-item--regular {
  color: #d32f2f;      
  text-decoration: line-through;
  font-size: 13px;
  font-weight: 400;
  opacity: 0.8;
}


.drawer__upsell-container-mobile .ma_quickAdd_atc {
  background: transparent;
  border: none;
  padding: 0;
  color: #000;
  text-decoration: underline; 
  font-size: 13px;
  font-weight: 500;
  text-transform: capitalize;
  box-shadow: none;
  width: auto;
  height: auto;
  min-height: 0;
  display: inline-block;
}

.drawer__upsell-container-mobile .ma_quickAdd_atc:hover {
  color: #000;
  background: transparent;
}

.drawer__upsell-container-mobile .ma-span {
  display: block;
}
.drawer__upsell-wrapper-mobile{
  width: 100%;
}
.drawer__upsell-wrapper-mobile .swiper-custom-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 4px;
}
.drawer__upsell-wrapper-mobile .swiper-custom-heading {
    font-size: 13px;
    font-weight: 600;
    margin: 0px;
}
.drawer__upsell-wrapper-mobile .swiper-custom-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 10px;
    gap: 0;
}
.drawer__upsell-wrapper-mobile .swiper-custom-prev, .swiper-custom-next {
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
}
.drawer__upsell-wrapper-mobile .swiper-custom-pagination {
    width: auto !important;
}
.drawer__upsell-wrapper-mobile .swiper-button-disabled {
    opacity: .5;
    cursor: not-allowed;
}

.drawer__upsell-wrapper-mobile .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
  }
  .drawer__upsell-wrapper-mobile .swiper-pagination-bullet-active {
      background: #000;
  }
  @media screen and (min-width: 767px) {
    .drawer__upsell-footer-mobile{
      display: none;
    }
  }
@media screen and (max-width: 767px) {
  .drawer__upsell-container-mobile .hide-on-mobile { display: none !important; }
.usp-bar-container {
    display: block;
    padding: 10px 0;
}
  .price__regular .price-item--regular {
    margin-right: 0;
    font-size: 12px;
  }
  .drawer__upsell-container { display: none !important; }
}
