:root {
  --strass-cart-ink: #15131f;
  --strass-cart-muted: #6d7079;
  --strass-cart-soft: #f7f7f9;
  --strass-cart-line: #ececf0;
  --strass-cart-accent: #e61010;
  --strass-cart-accent-dark: #c7115d;
  --strass-cart-shadow: 0 24px 70px rgba(18, 18, 28, 0.22);
}

.ps-shoppingcart.side-cart #blockcart-content {
  width: min(420px, 100vw);
  padding: 0;
  border: 0;
  background: #fff;
  color: var(--strass-cart-ink);
  box-shadow: var(--strass-cart-shadow);
}

.ps-shoppingcart.side-cart .show #blockcart-content {
  transform: translate3d(0, 0, 0);
}

#blockcart-content,
#blockcart-content * {
  letter-spacing: 0;
}

#blockcart-content .cart-title {
  position: sticky;
  top: 0;
  z-index: 3;
  padding: 18px 22px 14px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--strass-cart-line);
  backdrop-filter: blur(10px);
}

#blockcart-content .cart-title hr {
  display: none;
}

#blockcart-content .modal-title {
  color: var(--strass-cart-ink);
  font-size: 23px;
  font-weight: 700;
  line-height: 1.1;
}

#blockcart-content #js-cart-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: var(--strass-cart-soft);
  color: var(--strass-cart-muted);
  opacity: 1;
  text-shadow: none;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

#blockcart-content #js-cart-close span {
  display: block;
  margin-top: -2px;
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
}

#blockcart-content #js-cart-close:hover,
#blockcart-content #js-cart-close:focus {
  background: #15131f;
  color: #fff;
  transform: rotate(90deg);
}

#blockcart-content .cart-products {
  flex: 1 1 auto;
  min-height: 0;
  padding: 16px 18px 12px;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  list-style: none;
  scrollbar-width: thin;
  scrollbar-color: #c9c9d1 transparent;
}

#blockcart-content .cart-products::-webkit-scrollbar {
  width: 7px;
}

#blockcart-content .cart-products::-webkit-scrollbar-thumb {
  background: #c9c9d1;
  border-radius: 999px;
}

#blockcart-content .cart-products > li {
  padding: 14px;
  margin: 0 0 12px;
  border: 1px solid var(--strass-cart-line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #fbfbfc 100%);
  box-shadow: 0 8px 24px rgba(21, 19, 31, 0.06);
}

#blockcart-content .cart-products > li:last-child {
  margin-bottom: 0;
  border-bottom: 1px solid var(--strass-cart-line);
}

#blockcart-content .cart-products .row.no-gutters.align-items-center {
  align-items: flex-start !important;
}

#blockcart-content .cart-products .col-3 {
  flex: 0 0 82px;
  max-width: 82px;
}

#blockcart-content .product-image,
#blockcart-content .product-image a {
  display: block;
}

#blockcart-content .product-image img {
  width: 72px;
  height: 72px;
  border: 1px solid var(--strass-cart-line);
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
}

#blockcart-content .cart-products .col-info {
  min-width: 0;
  padding-left: 12px;
}

#blockcart-content .cart-products .col-info > .pb-1 {
  padding-bottom: 8px !important;
}

#blockcart-content .cart-products .col-info > .pb-1 a {
  display: -webkit-box;
  color: var(--strass-cart-ink);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.25;
  text-decoration: none;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#blockcart-content .cart-products .col-info > .pb-1 a:hover,
#blockcart-content .cart-products .col-info > .pb-1 a:focus {
  color: var(--strass-cart-accent);
}

#blockcart-content .product-attributes {
  margin: 2px 0 8px;
  padding: 0 !important;
  color: var(--strass-cart-muted) !important;
  font-size: 12px;
  line-height: 1.35;
}

#blockcart-content .cart-products .row.align-items-center.mt-2 {
  display: grid;
  grid-template-columns: auto minmax(92px, 1fr);
  align-items: center !important;
  gap: 8px 10px !important;
  margin-top: 8px !important;
}

#blockcart-content .cart-products .row.align-items-center.mt-2 > .col,
#blockcart-content .cart-products .row.align-items-center.mt-2 > .col.p-0 {
  width: auto;
  max-width: none;
  padding: 0 !important;
}

#blockcart-content .cart-products .bootstrap-touchspin {
  display: grid;
  grid-template-columns: 38px 25px;
  width: 63px;
  height: 38px;
  border: 1px solid var(--strass-cart-line);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

#blockcart-content .cart-products .block-cart-product-quantity,
#blockcart-content .cart-products .block-cart-product-quantity-gift {
  width: 38px !important;
  min-width: 38px;
  height: 38px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  color: var(--strass-cart-ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 38px;
  text-align: center;
  appearance: textfield;
}

#blockcart-content .cart-products .block-cart-product-quantity::-webkit-outer-spin-button,
#blockcart-content .cart-products .block-cart-product-quantity::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

#blockcart-content .cart-products .input-group-btn-vertical {
  display: grid;
  grid-template-rows: 1fr 1fr;
  width: 25px;
  border-left: 1px solid var(--strass-cart-line);
}

#blockcart-content .cart-products .btn-touchspin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 19px;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: var(--strass-cart-muted);
  font-size: 10px;
  line-height: 1;
  padding: 0;
}

#blockcart-content .cart-products .btn-touchspin:hover,
#blockcart-content .cart-products .btn-touchspin:focus {
  background: var(--strass-cart-soft);
  color: var(--strass-cart-ink);
}

#blockcart-content .cart-products .text-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  text-align: right !important;
  color: var(--strass-cart-ink);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

#blockcart-content .remove-from-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff0;
  color: var(--strass-cart-muted);
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
}

#blockcart-content .remove-from-cart:hover,
#blockcart-content .remove-from-cart:focus {
  background: #fff0f5;
  color: var(--strass-cart-accent);
}

#blockcart-content .cart-subtotals,
#blockcart-content .cart-totals,
#blockcart-content .cart-buttons {
  flex: 0 0 auto;
  margin: 0 18px;
}

#blockcart-content .cart-subtotals {
  padding: 14px 0;
  border-top: 1px solid var(--strass-cart-line);
}

#blockcart-content .cart-summary-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 5px;
  color: var(--strass-cart-ink);
  font-size: 15px;
  line-height: 1.3;
}

#blockcart-content .cart-summary-line:last-child {
  margin-bottom: 0;
}

#blockcart-content .cart-summary-line .label {
  color: var(--strass-cart-muted);
  font-weight: 500;
}

#blockcart-content .cart-summary-line .value {
  float: none !important;
  color: var(--strass-cart-ink);
  font-weight: 700;
  text-align: right;
}

#blockcart-content .cart-totals {
  padding: 16px 0 14px;
  border-top: 2px solid #bdbdc5;
  color: var(--strass-cart-ink);
  font-size: 23px;
  line-height: 1.15;
}

#blockcart-content .cart-totals .clearfix {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

#blockcart-content .cart-totals .label {
  font-weight: 700;
}

#blockcart-content .cart-totals .value {
  float: none !important;
  font-weight: 750;
  text-align: right;
}

#blockcart-content .iqitfreedeliverycount,
#blockcart-content [class*="freedelivery"],
#blockcart-content [class*="free-delivery"] {
  margin: 0 18px 14px;
}

#blockcart-content .iqitfreedeliverycount p,
#blockcart-content [class*="freedelivery"] p,
#blockcart-content [class*="free-delivery"] p {
  margin: 0;
  padding: 11px 12px;
  border: 1px solid #b9edf6;
  border-radius: 6px;
  background: linear-gradient(135deg, #d8fbff 0%, #bdf0f7 100%);
  color: #104f5b;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
}

#blockcart-content .cart-buttons {
  padding: 0 0 calc(18px + env(safe-area-inset-bottom));
  text-align: center;
}

#blockcart-content .cart-buttons .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  width: 100%;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

#blockcart-content .cart-buttons .btn:hover,
#blockcart-content .cart-buttons .btn:focus {
  transform: translateY(-1px);
}

#blockcart-content .cart-buttons .btn-primary {
  border-color: #000;
  background: #000;
  color: #fff;
}

#blockcart-content .cart-buttons .btn-primary:hover,
#blockcart-content .cart-buttons .btn-primary:focus {
  border-color: var(--strass-cart-accent);
  background: var(--strass-cart-accent);
  color: #fff;
}

#blockcart-content .cart-buttons .btn-secondary {
  border-color: var(--strass-cart-accent);
  background: var(--strass-cart-accent);
  color: #fff;
}

#blockcart-content .cart-buttons .btn-secondary:hover,
#blockcart-content .cart-buttons .btn-secondary:focus {
  border-color: var(--strass-cart-accent-dark);
  background: var(--strass-cart-accent-dark);
  color: #fff;
}

#blockcart-content .no-items {
  display: block;
  margin: 22px;
  padding: 18px;
  border: 1px solid var(--strass-cart-line);
  border-radius: 8px;
  background: var(--strass-cart-soft);
  color: var(--strass-cart-muted);
  text-align: center;
}

@media (min-width: 768px) {
  .ps-shoppingcart.side-cart #blockcart-content {
    width: 410px;
  }
}

@media (max-width: 767.98px) {
  .ps-shoppingcart.side-cart #blockcart-content,
  #mobile-header .ps-shoppingcart.side-cart #blockcart-content {
    width: 100vw;
    max-width: 100vw;
    height: 100dvh;
    padding-bottom: 0;
  }

  #blockcart-content .cart-title {
    padding: 15px 16px 12px;
  }

  #blockcart-content .modal-title {
    font-size: 21px;
  }

  #blockcart-content .cart-products {
    padding: 12px 12px 10px;
  }

  #blockcart-content .cart-products > li {
    padding: 12px;
    margin-bottom: 10px;
  }

  #blockcart-content .cart-products .col-3 {
    flex: 0 0 72px;
    max-width: 72px;
  }

  #blockcart-content .product-image img {
    width: 64px;
    height: 64px;
  }

  #blockcart-content .cart-products .col-info {
    padding-left: 10px;
  }

  #blockcart-content .cart-products .col-info > .pb-1 a {
    font-size: 13px;
    -webkit-line-clamp: 2;
  }

  #blockcart-content .cart-products .row.align-items-center.mt-2 {
    grid-template-columns: 63px minmax(88px, 1fr);
  }

  #blockcart-content .cart-subtotals,
  #blockcart-content .cart-totals,
  #blockcart-content .cart-buttons {
    margin-right: 12px;
    margin-left: 12px;
  }

  #blockcart-content .cart-totals {
    font-size: 21px;
  }

  #blockcart-content .iqitfreedeliverycount,
  #blockcart-content [class*="freedelivery"],
  #blockcart-content [class*="free-delivery"] {
    margin-right: 12px;
    margin-left: 12px;
  }

  #blockcart-content .cart-buttons .btn {
    min-height: 48px;
  }
}

@media (max-width: 374px) {
  #blockcart-content .cart-products > li {
    padding: 10px;
  }

  #blockcart-content .cart-products .col-3 {
    flex: 0 0 62px;
    max-width: 62px;
  }

  #blockcart-content .product-image img {
    width: 56px;
    height: 56px;
  }

  #blockcart-content .cart-products .col-info {
    padding-left: 8px;
  }

  #blockcart-content .cart-products .text-right {
    gap: 4px;
    font-size: 13px;
  }
}

/* Strass side cart summary alignment refinements */
#blockcart-content .cart-subtotals .cart-summary-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  column-gap: 16px;
}

#blockcart-content .cart-subtotals .cart-summary-line .label {
  min-width: 0;
  text-align: left;
}

#blockcart-content .cart-subtotals .cart-summary-line .value {
  min-width: 88px;
  text-align: right;
  justify-self: end;
}

#blockcart-content .cart-subtotals #cart-subtotal-shipping-blockcart .value {
  color: var(--strass-cart-ink);
}

#blockcart-content .cart-subtotals #cart-subtotal-shipping-blockcart .value:is([data-strass-free]),
#blockcart-content .cart-subtotals #cart-subtotal-shipping-blockcart .value.strass-free-shipping-value {
  color: #168a45;
}

#blockcart-content .cart-totals {
  font-size: 20px;
}

#blockcart-content .cart-totals .label {
  font-size: 20px;
  line-height: 1.15;
}

#blockcart-content .cart-totals .value {
  min-width: 104px;
  font-size: 21px;
}

@media (max-width: 767.98px) {
  #blockcart-content .cart-subtotals .cart-summary-line .value {
    min-width: 82px;
  }

  #blockcart-content .cart-totals,
  #blockcart-content .cart-totals .label {
    font-size: 19px;
  }

  #blockcart-content .cart-totals .value {
    min-width: 96px;
    font-size: 20px;
  }
}

/* Strass side cart shipping state refinements */
#blockcart-content .cart-subtotals #cart-subtotal-products-blockcart .value,
#blockcart-content .cart-subtotals #cart-subtotal-shipping-blockcart .value {
  text-align: right;
  justify-self: end;
}

#blockcart-content .cart-subtotals #cart-subtotal-shipping-blockcart > .value.strass-free-shipping-value {
  color: #168a45;
}


#blockcart-content .cart-totals .label {
  font-size: 18px;
}

#blockcart-content .cart-totals .value {
  text-align: right;
}

@media (max-width: 767.98px) {
  #blockcart-content .cart-totals .label {
    font-size: 17px;
  }

}

/* Strass side cart compact totals and free-shipping progress */
#blockcart-content .cart-subtotals {
  padding: 10px 14px 8px;
  border-top: 1px solid #eceef2;
  background: #fff;
}

#blockcart-content .cart-subtotals .cart-summary-line {
  min-height: 28px;
  margin: 0;
  padding: 2px 0;
  font-size: 15px;
  line-height: 1.25;
}

#blockcart-content .cart-subtotals .cart-summary-line .label {
  color: #6a6f7b;
  font-weight: 600;
}

#blockcart-content .cart-subtotals .cart-summary-line .value {
  min-width: 96px;
  color: #151723;
  font-weight: 800;
  text-align: right;
}

#blockcart-content .cart-totals {
  margin: 8px 14px 0;
  padding: 14px 0 0;
  border-top: 2px solid #aeb3bd;
  font-size: 0;
}

#blockcart-content .cart-totals .clearfix {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  column-gap: 18px;
}

#blockcart-content .cart-totals .label {
  min-width: 0;
  color: #1b1d29;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.15;
}

#blockcart-content .cart-totals .value {
  min-width: 104px;
  color: #1b1d29;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
  text-align: right;
  justify-self: end;
}

#blockcart-content .iqitfreedeliverycount {
  --strass-free-progress: 0%;
  position: relative;
  margin: 12px 14px 14px;
  padding: 12px 14px 14px !important;
  overflow: hidden;
  color: #0f4e5c;
  background: linear-gradient(180deg, #f3fdff 0%, #e4faff 100%);
  border: 1px solid #9ee8f4;
  border-radius: 6px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

#blockcart-content .iqitfreedeliverycount::before {
  content: "";
  position: absolute;
  right: -34px;
  top: -42px;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  background: rgba(230, 16, 16, .08);
}

#blockcart-content .iqitfreedeliverycount::after {
  content: "";
  position: relative;
  display: block;
  width: 100%;
  height: 8px;
  margin-top: 11px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, #e61010 0 var(--strass-free-progress), transparent var(--strass-free-progress) 100%),
    #d8edf3;
  box-shadow: inset 0 1px 2px rgba(15, 78, 92, .13);
  animation: strassFreeProgress 680ms cubic-bezier(.22, 1, .36, 1) both;
}

#blockcart-content .iqitfreedeliverycount-title {
  position: relative;
  z-index: 1;
  margin: 0 !important;
  color: #0f4e5c;
  font-size: 15px;
  line-height: 1.35;
  text-wrap: balance;
}

#blockcart-content .iqitfreedeliverycount-title strong {
  font-weight: 850;
}

#blockcart-content .iqitfreedeliverycount .ifdc-remaining-price {
  color: #e61010;
  font-weight: 950;
  white-space: nowrap;
}

#blockcart-content .iqitfreedeliverycount.strass-free-shipping-reached {
  color: #167246;
  background: #ecfff4;
  border-color: #9adfba;
}

#blockcart-content .iqitfreedeliverycount.strass-free-shipping-reached::after {
  background: #20a95f;
}

@keyframes strassFreeProgress {
  from {
    opacity: .6;
    transform: scaleX(.94);
    transform-origin: left center;
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@media (max-width: 767.98px) {
  #blockcart-content .cart-subtotals {
    padding: 9px 14px 7px;
  }

  #blockcart-content .cart-subtotals .cart-summary-line {
    min-height: 26px;
    font-size: 14px;
  }

  #blockcart-content .cart-totals {
    margin-top: 7px;
    padding-top: 12px;
  }

  #blockcart-content .cart-totals .label {
    font-size: 17px;
  }

  #blockcart-content .cart-totals .value {
    min-width: 94px;
    font-size: 21px;
  }

  #blockcart-content .iqitfreedeliverycount {
    margin-top: 11px;
    padding: 11px 12px 13px !important;
  }

  #blockcart-content .iqitfreedeliverycount-title {
    font-size: 14px;
  }
}

/* Strass side cart softer total and green free-shipping progress */
#blockcart-content .cart-totals {
  border-top: 1px solid #d7dbe2;
}

#blockcart-content .cart-totals .label {
  font-size: 17px;
  font-weight: 750;
}

#blockcart-content .cart-totals .value {
  font-size: 20px;
  font-weight: 850;
}

#blockcart-content .iqitfreedeliverycount::before {
  background: rgba(32, 169, 95, .10);
}

#blockcart-content .iqitfreedeliverycount::after {
  background:
    linear-gradient(90deg, #20a95f 0 var(--strass-free-progress), transparent var(--strass-free-progress) 100%),
    #d7edf1;
}

#blockcart-content .iqitfreedeliverycount .ifdc-remaining-price {
  color: #168a45;
}

@media (max-width: 767.98px) {
  #blockcart-content .cart-totals .label {
    font-size: 16px;
  }

  #blockcart-content .cart-totals .value {
    font-size: 19px;
  }
}

/* Strass side cart total divider aligned with summary rows */
#blockcart-content .cart-totals {
  margin-left: 19px;
  margin-right: 19px;
}

@media (max-width: 767.98px) {
  #blockcart-content .cart-totals {
    margin-left: 19px;
    margin-right: 19px;
  }
}

/* Strass side cart total spacing adjustment */
#blockcart-content .cart-totals {
  margin-top: 0;
}


/* Strass free-shipping progress shared between side cart and cart page */
body#cart .iqitfreedeliverycount,
body.page-cart .iqitfreedeliverycount,
.cart-grid-right .iqitfreedeliverycount,
.cart-summary .iqitfreedeliverycount,
#cart-summary-product-list .iqitfreedeliverycount,
#checkout .iqitfreedeliverycount {
  --strass-free-progress: 0%;
  position: relative;
  margin: 12px 0 16px !important;
  padding: 12px 14px 14px !important;
  overflow: hidden !important;
  color: #0f4e5c !important;
  background: linear-gradient(180deg, #f3fdff 0%, #e4faff 100%) !important;
  border: 1px solid #9ee8f4 !important;
  border-radius: 6px !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8) !important;
}

body#cart .iqitfreedeliverycount::before,
body.page-cart .iqitfreedeliverycount::before,
.cart-grid-right .iqitfreedeliverycount::before,
.cart-summary .iqitfreedeliverycount::before,
#cart-summary-product-list .iqitfreedeliverycount::before,
#checkout .iqitfreedeliverycount::before {
  content: "";
  position: absolute;
  right: -34px;
  top: -42px;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  background: rgba(32, 169, 95, .10) !important;
}

body#cart .iqitfreedeliverycount::after,
body.page-cart .iqitfreedeliverycount::after,
.cart-grid-right .iqitfreedeliverycount::after,
.cart-summary .iqitfreedeliverycount::after,
#cart-summary-product-list .iqitfreedeliverycount::after,
#checkout .iqitfreedeliverycount::after {
  content: "";
  position: relative;
  display: block;
  width: 100%;
  height: 8px;
  margin-top: 11px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, #20a95f 0 var(--strass-free-progress), transparent var(--strass-free-progress) 100%),
    #d7edf1 !important;
  box-shadow: inset 0 1px 2px rgba(15, 78, 92, .13);
  animation: strassFreeProgress 680ms cubic-bezier(.22, 1, .36, 1) both;
}

body#cart .iqitfreedeliverycount-title,
body.page-cart .iqitfreedeliverycount-title,
.cart-grid-right .iqitfreedeliverycount-title,
.cart-summary .iqitfreedeliverycount-title,
#cart-summary-product-list .iqitfreedeliverycount-title,
#checkout .iqitfreedeliverycount-title {
  position: relative;
  z-index: 1;
  margin: 0 !important;
  color: #0f4e5c !important;
  font-size: 15px !important;
  line-height: 1.35 !important;
  text-wrap: balance;
}

body#cart .iqitfreedeliverycount-title strong,
body.page-cart .iqitfreedeliverycount-title strong,
.cart-grid-right .iqitfreedeliverycount-title strong,
.cart-summary .iqitfreedeliverycount-title strong,
#cart-summary-product-list .iqitfreedeliverycount-title strong,
#checkout .iqitfreedeliverycount-title strong {
  font-weight: 850 !important;
}

body#cart .iqitfreedeliverycount .ifdc-remaining-price,
body.page-cart .iqitfreedeliverycount .ifdc-remaining-price,
.cart-grid-right .iqitfreedeliverycount .ifdc-remaining-price,
.cart-summary .iqitfreedeliverycount .ifdc-remaining-price,
#cart-summary-product-list .iqitfreedeliverycount .ifdc-remaining-price,
#checkout .iqitfreedeliverycount .ifdc-remaining-price {
  color: #168a45 !important;
  font-weight: 950 !important;
  white-space: nowrap;
}

body#cart .iqitfreedeliverycount.strass-free-shipping-reached,
body.page-cart .iqitfreedeliverycount.strass-free-shipping-reached,
.cart-grid-right .iqitfreedeliverycount.strass-free-shipping-reached,
.cart-summary .iqitfreedeliverycount.strass-free-shipping-reached,
#cart-summary-product-list .iqitfreedeliverycount.strass-free-shipping-reached,
#checkout .iqitfreedeliverycount.strass-free-shipping-reached {
  color: #167246 !important;
  background: #ecfff4 !important;
  border-color: #9adfba !important;
}

body#cart .iqitfreedeliverycount.strass-free-shipping-reached::after,
body.page-cart .iqitfreedeliverycount.strass-free-shipping-reached::after,
.cart-grid-right .iqitfreedeliverycount.strass-free-shipping-reached::after,
.cart-summary .iqitfreedeliverycount.strass-free-shipping-reached::after,
#cart-summary-product-list .iqitfreedeliverycount.strass-free-shipping-reached::after,
#checkout .iqitfreedeliverycount.strass-free-shipping-reached::after {
  background: #20a95f !important;
}

/* Side cart button colors */
#blockcart-content .cart-buttons .btn {
  text-transform: uppercase !important;
  letter-spacing: 0 !important;
}

#blockcart-content .cart-buttons .btn-primary {
  border-color: #17a84b !important;
  background: #17a84b !important;
  color: #fff !important;
  font-weight: 750 !important;
}

#blockcart-content .cart-buttons .btn-primary:hover,
#blockcart-content .cart-buttons .btn-primary:focus {
  border-color: #12883d !important;
  background: #12883d !important;
  color: #fff !important;
}

#blockcart-content .cart-buttons .btn-secondary {
  border: 1px solid #000 !important;
  background: #fff !important;
  color: #000 !important;
  font-weight: 500 !important;
}

#blockcart-content .cart-buttons .btn-secondary:hover,
#blockcart-content .cart-buttons .btn-secondary:focus {
  border-color: #000 !important;
  background: #f7f7f7 !important;
  color: #000 !important;
}

/* Side cart free-shipping progress with delivery truck */
#blockcart-content .iqitfreedeliverycount {
  position: relative !important;
  padding: 12px 94px 15px 14px !important;
  overflow: hidden !important;
  background: linear-gradient(180deg, #f3fdff 0%, #e8fbff 100%) !important;
  border-color: #8fe2ef !important;
}

#blockcart-content .iqitfreedeliverycount::before {
  content: "" !important;
  position: absolute !important;
  right: 14px !important;
  top: 50% !important;
  z-index: 0 !important;
  width: 68px !important;
  height: 42px !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
  opacity: .22 !important;
  transform: translateY(-56%) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 96 56' fill='none'%3E%3Cpath d='M7 36V15c0-3.3 2.7-6 6-6h42c3.3 0 6 2.7 6 6v21' stroke='%23168a45' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M61 22h13l12 14v10H61V22Z' stroke='%23168a45' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M13 46h48M75 46h10M7 36h78' stroke='%23168a45' stroke-width='4' stroke-linecap='round'/%3E%3Ccircle cx='24' cy='46' r='7' stroke='%23168a45' stroke-width='4'/%3E%3Ccircle cx='68' cy='46' r='7' stroke='%23168a45' stroke-width='4'/%3E%3Cpath d='M69 27h8l5 6H69v-6Z' stroke='%23168a45' stroke-width='3' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
}

#blockcart-content .iqitfreedeliverycount-title {
  position: relative !important;
  z-index: 1 !important;
  padding-right: 0 !important;
}

#blockcart-content .iqitfreedeliverycount::after {
  content: "" !important;
  position: relative !important;
  z-index: 1 !important;
  display: block !important;
  width: 100% !important;
  height: 7px !important;
  margin-top: 10px !important;
  border-radius: 999px !important;
  background:
    linear-gradient(90deg, #17a84b 0 var(--strass-free-progress), transparent var(--strass-free-progress) 100%),
    #cfeef3 !important;
  box-shadow: inset 0 1px 2px rgba(15, 78, 92, .16) !important;
}

#blockcart-content .iqitfreedeliverycount .ifdc-remaining-price {
  color: #148a42 !important;
}

#blockcart-content .iqitfreedeliverycount.strass-free-shipping-reached::before {
  opacity: .30 !important;
}

#blockcart-content .iqitfreedeliverycount.strass-free-shipping-reached::after {
  background: #17a84b !important;
}

/* Unified free-shipping progress block: side cart, cart page and checkout */
#blockcart-content .iqitfreedeliverycount,
body#cart .iqitfreedeliverycount,
body.page-cart .iqitfreedeliverycount,
.cart-grid-right .iqitfreedeliverycount,
.cart-summary .iqitfreedeliverycount,
#cart-summary-product-list .iqitfreedeliverycount,
#checkout .iqitfreedeliverycount {
  --strass-free-progress: 0%;
  position: relative !important;
  min-height: 68px !important;
  margin-top: 12px !important;
  padding: 12px 98px 24px 14px !important;
  overflow: hidden !important;
  border: 1px solid #8fe2ef !important;
  border-radius: 5px !important;
  background: linear-gradient(180deg, #f4fdff 0%, #e8fbff 100%) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85) !important;
  color: #0f4e5c !important;
}

#blockcart-content .iqitfreedeliverycount::before,
body#cart .iqitfreedeliverycount::before,
body.page-cart .iqitfreedeliverycount::before,
.cart-grid-right .iqitfreedeliverycount::before,
.cart-summary .iqitfreedeliverycount::before,
#cart-summary-product-list .iqitfreedeliverycount::before,
#checkout .iqitfreedeliverycount::before {
  content: "" !important;
  position: absolute !important;
  right: 16px !important;
  top: 50% !important;
  z-index: 0 !important;
  width: 66px !important;
  height: 42px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
  opacity: .42 !important;
  transform: translateY(-58%) !important;
  box-shadow: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 112 64' fill='none'%3E%3Cpath d='M10 39V17c0-3.3 2.7-6 6-6h48c3.3 0 6 2.7 6 6v22' stroke='%2317a84b' stroke-width='4.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M70 25h18l14 16v10H70V25Z' stroke='%2317a84b' stroke-width='4.5' stroke-linejoin='round'/%3E%3Cpath d='M14 51h10M38 51h36M88 51h12M10 39h92' stroke='%2317a84b' stroke-width='4.5' stroke-linecap='round'/%3E%3Ccircle cx='31' cy='51' r='7.5' fill='%23e8fbff' stroke='%2317a84b' stroke-width='4.5'/%3E%3Ccircle cx='82' cy='51' r='7.5' fill='%23e8fbff' stroke='%2317a84b' stroke-width='4.5'/%3E%3Cpath d='M78 31h9l6 7H78v-7Z' stroke='%2317a84b' stroke-width='3.5' stroke-linejoin='round'/%3E%3Cpath d='M21 24h28M21 33h37' stroke='%2317a84b' stroke-width='4.5' stroke-linecap='round' opacity='.75'/%3E%3C/svg%3E") !important;
}

#blockcart-content .iqitfreedeliverycount::after,
body#cart .iqitfreedeliverycount::after,
body.page-cart .iqitfreedeliverycount::after,
.cart-grid-right .iqitfreedeliverycount::after,
.cart-summary .iqitfreedeliverycount::after,
#cart-summary-product-list .iqitfreedeliverycount::after,
#checkout .iqitfreedeliverycount::after {
  content: "" !important;
  position: absolute !important;
  left: 14px !important;
  right: 98px !important;
  bottom: 10px !important;
  z-index: 1 !important;
  display: block !important;
  width: auto !important;
  height: 7px !important;
  margin: 0 !important;
  border-radius: 999px !important;
  background:
    linear-gradient(90deg, #17a84b 0 var(--strass-free-progress), transparent var(--strass-free-progress) 100%),
    #c9edf3 !important;
  box-shadow: inset 0 1px 2px rgba(15, 78, 92, .18) !important;
  transform: none !important;
  opacity: 1 !important;
  animation: none !important;
}

#blockcart-content .iqitfreedeliverycount-title,
body#cart .iqitfreedeliverycount-title,
body.page-cart .iqitfreedeliverycount-title,
.cart-grid-right .iqitfreedeliverycount-title,
.cart-summary .iqitfreedeliverycount-title,
#cart-summary-product-list .iqitfreedeliverycount-title,
#checkout .iqitfreedeliverycount-title {
  position: relative !important;
  z-index: 2 !important;
  max-width: 100% !important;
  margin: 0 !important;
  color: #0f4e5c !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  line-height: 1.28 !important;
}

#blockcart-content .iqitfreedeliverycount .ifdc-remaining-price,
body#cart .iqitfreedeliverycount .ifdc-remaining-price,
body.page-cart .iqitfreedeliverycount .ifdc-remaining-price,
.cart-grid-right .iqitfreedeliverycount .ifdc-remaining-price,
.cart-summary .iqitfreedeliverycount .ifdc-remaining-price,
#cart-summary-product-list .iqitfreedeliverycount .ifdc-remaining-price,
#checkout .iqitfreedeliverycount .ifdc-remaining-price {
  color: #148a42 !important;
  font-weight: 950 !important;
}

#blockcart-content .iqitfreedeliverycount.strass-free-shipping-reached::after,
body#cart .iqitfreedeliverycount.strass-free-shipping-reached::after,
body.page-cart .iqitfreedeliverycount.strass-free-shipping-reached::after,
.cart-grid-right .iqitfreedeliverycount.strass-free-shipping-reached::after,
.cart-summary .iqitfreedeliverycount.strass-free-shipping-reached::after,
#cart-summary-product-list .iqitfreedeliverycount.strass-free-shipping-reached::after,
#checkout .iqitfreedeliverycount.strass-free-shipping-reached::after {
  background: #17a84b !important;
}

/* Strass cart page and side-cart free-shipping refinement 20260629 */
#blockcart-content .iqitfreedeliverycount,
body#cart .cart-grid-right .iqitfreedeliverycount,
body.page-cart .cart-grid-right .iqitfreedeliverycount,
.cart-summary .iqitfreedeliverycount {
  min-height: 78px !important;
  padding: 12px 92px 28px 14px !important;
  border: 1px solid #8fe2ef !important;
  border-radius: 5px !important;
  background: linear-gradient(180deg, #f5fdff 0%, #e7fbff 100%) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.88) !important;
}

body#cart #blockcart-content .iqitfreedeliverycount,
body.page-cart #blockcart-content .iqitfreedeliverycount {
  margin-left: 18px !important;
  margin-right: 18px !important;
  width: auto !important;
}

#blockcart-content .iqitfreedeliverycount::before,
body#cart .cart-grid-right .iqitfreedeliverycount::before,
body.page-cart .cart-grid-right .iqitfreedeliverycount::before,
.cart-summary .iqitfreedeliverycount::before {
  content: "" !important;
  position: absolute !important;
  right: 14px !important;
  top: 50% !important;
  z-index: 0 !important;
  width: 64px !important;
  height: 42px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
  opacity: .34 !important;
  transform: translateY(-53%) !important;
  box-shadow: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 116 70'%3E%3Cg fill='%2317a84b'%3E%3Cpath d='M10 18c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v33H10V18Zm8 0v25h48V18H18Z'/%3E%3Cpath d='M70 25h18c2.1 0 4.1.9 5.4 2.5L106 42.9c1.2 1.4 1.8 3.2 1.8 5.1V51H70V25Zm8 8v10h19.1L87.3 33H78Z'/%3E%3Cpath d='M5 48h106v8H5z'/%3E%3Ccircle cx='31' cy='56' r='10'/%3E%3Ccircle cx='84' cy='56' r='10'/%3E%3Ccircle cx='31' cy='56' r='4' fill='%23e7fbff'/%3E%3Ccircle cx='84' cy='56' r='4' fill='%23e7fbff'/%3E%3Cpath d='M20 25h34v6H20zM20 35h42v6H20z' opacity='.78'/%3E%3C/g%3E%3C/svg%3E") !important;
}

#blockcart-content .iqitfreedeliverycount-title,
body#cart .cart-grid-right .iqitfreedeliverycount-title,
body.page-cart .cart-grid-right .iqitfreedeliverycount-title,
.cart-summary .iqitfreedeliverycount-title {
  position: relative !important;
  z-index: 2 !important;
  max-width: none !important;
  margin: 0 !important;
  color: #0f4e5c !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  line-height: 1.32 !important;
}

#blockcart-content .iqitfreedeliverycount::after,
body#cart .cart-grid-right .iqitfreedeliverycount::after,
body.page-cart .cart-grid-right .iqitfreedeliverycount::after,
.cart-summary .iqitfreedeliverycount::after {
  content: "" !important;
  position: absolute !important;
  left: 14px !important;
  right: 92px !important;
  bottom: 11px !important;
  z-index: 2 !important;
  display: block !important;
  width: auto !important;
  height: 7px !important;
  margin: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, #17a84b 0 var(--strass-free-progress), transparent var(--strass-free-progress) 100%), #caedf3 !important;
  box-shadow: inset 0 1px 2px rgba(15, 78, 92, .18) !important;
  transform: none !important;
  opacity: 1 !important;
  animation: none !important;
}

body#cart .cart-grid,
body.page-cart .cart-grid {
  align-items: flex-start;
}

body#cart .cart-grid-body,
body.page-cart .cart-grid-body {
  padding-right: 24px;
}

body#cart .cart-overview,
body.page-cart .cart-overview {
  overflow: visible;
}

body#cart .cart-items,
body.page-cart .cart-items {
  margin: 0;
  padding: 0;
}

body#cart .cart-item,
body.page-cart .cart-item {
  margin: 0 0 14px !important;
  padding: 18px 18px !important;
  border: 1px solid #e6e8ee !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 8px 24px rgba(18, 20, 32, .04) !important;
}

body#cart .cart-item .product-line-grid,
body.page-cart .cart-item .product-line-grid {
  align-items: center;
}

body#cart .cart-item .product-image,
body.page-cart .cart-item .product-image,
body#cart .cart-item img,
body.page-cart .cart-item img {
  border-radius: 8px;
}

body#cart .cart-item .product-line-info a,
body.page-cart .cart-item .product-line-info a,
body#cart .cart-item .label,
body.page-cart .cart-item .label {
  color: #151723 !important;
  font-weight: 700 !important;
  line-height: 1.28 !important;
}

body#cart .cart-item .product-price,
body.page-cart .cart-item .product-price,
body#cart .cart-item .current-price,
body.page-cart .cart-item .current-price {
  color: #151723 !important;
  font-weight: 750 !important;
}

body#cart .cart-item .product-line-grid-right .price,
body.page-cart .cart-item .product-line-grid-right .price,
body#cart .cart-item .product-line-grid-right .value,
body.page-cart .cart-item .product-line-grid-right .value {
  color: #e61010 !important;
  font-weight: 850 !important;
}

body#cart .cart-grid-right .cart-summary,
body.page-cart .cart-grid-right .cart-summary {
  overflow: hidden;
  border: 1px solid #e2e5eb !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 12px 30px rgba(18, 20, 32, .06) !important;
}

body#cart .cart-summary .card-body,
body.page-cart .cart-summary .card-body,
body#cart .cart-summary .card-block,
body.page-cart .cart-summary .card-block {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

body#cart .cart-detailed-subtotals,
body.page-cart .cart-detailed-subtotals,
body#cart .cart-summary-subtotals-container,
body.page-cart .cart-summary-subtotals-container {
  padding-top: 14px !important;
  padding-bottom: 12px !important;
}

body#cart .cart-summary-line,
body.page-cart .cart-summary-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  color: #151723;
  font-size: 15px;
  line-height: 1.35;
}

body#cart .cart-summary-line .label,
body.page-cart .cart-summary-line .label {
  color: #6a6f7b;
  font-weight: 600;
}

body#cart .cart-summary-line .value,
body.page-cart .cart-summary-line .value {
  float: none !important;
  color: #151723;
  font-weight: 800;
  text-align: right;
}

body#cart .cart-summary-totals,
body.page-cart .cart-summary-totals {
  border-top: 1px solid #d7dbe2;
}

body#cart .cart-summary-line.cart-total,
body.page-cart .cart-summary-line.cart-total {
  font-size: 20px !important;
  font-weight: 850 !important;
}

body#cart .cart-summary-line.cart-total .label,
body.page-cart .cart-summary-line.cart-total .label,
body#cart .cart-summary-line.cart-total .value,
body.page-cart .cart-summary-line.cart-total .value {
  color: #1b1d29 !important;
  font-weight: 850 !important;
}

body#cart .cart-detailed-actions .btn-primary,
body.page-cart .cart-detailed-actions .btn-primary,
body#cart .checkout .btn-primary,
body.page-cart .checkout .btn-primary {
  min-height: 56px;
  border: 1px solid #17a84b !important;
  border-radius: 4px !important;
  background: #17a84b !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 750 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

body#cart .cart-detailed-actions .btn-primary:hover,
body.page-cart .cart-detailed-actions .btn-primary:hover,
body#cart .checkout .btn-primary:hover,
body.page-cart .checkout .btn-primary:hover {
  border-color: #12883d !important;
  background: #12883d !important;
}

body#cart .block-promo,
body.page-cart .block-promo {
  padding: 14px 16px !important;
  border-top: 1px solid #eceef2;
  background: #f8f8fa;
}

body#cart .promo-input,
body.page-cart .promo-input,
body#cart .block-promo input,
body.page-cart .block-promo input {
  min-height: 44px;
  border-color: #d9dde5 !important;
  border-radius: 4px !important;
  background: #fff !important;
}

body#cart .promo-code-button,
body.page-cart .promo-code-button,
body#cart .block-promo .btn,
body.page-cart .block-promo .btn {
  min-height: 44px;
  border-radius: 4px !important;
  font-weight: 650 !important;
}

@media (max-width: 991.98px) {
  body#cart .cart-grid-body,
  body.page-cart .cart-grid-body {
    padding-right: 15px;
  }

  body#cart .cart-grid-right,
  body.page-cart .cart-grid-right {
    margin-top: 18px;
  }
}

/* Strass checkout compact delivery cards 20260710 */
body#checkout .delivery-option {
  display: grid !important;
  grid-template-columns: 24px minmax(0, 1fr) !important;
  align-items: center !important;
  min-height: 0 !important;
  padding: 14px 18px !important;
}

body#checkout .delivery-option > .col-sm-1 {
  width: 24px !important;
  max-width: 24px !important;
  padding: 0 !important;
}

body#checkout .delivery-option > .delivery-option-2 {
  width: 100% !important;
  max-width: none !important;
  padding: 0 0 0 12px !important;
}

body#checkout .delivery-option > .delivery-option-2 > .row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) max-content !important;
  grid-template-rows: auto auto !important;
  column-gap: 20px !important;
  row-gap: 3px !important;
  margin: 0 !important;
}

body#checkout .delivery-option > .delivery-option-2 > .row > .col-sm-5 {
  grid-column: 1 !important;
  grid-row: 1 !important;
  width: auto !important;
  max-width: none !important;
  padding: 0 !important;
}

body#checkout .delivery-option .carrier-hasLogo {
  display: grid !important;
  grid-template-columns: 72px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 14px !important;
  margin: 0 !important;
}

body#checkout .delivery-option .carrier-hasLogo > .col-xs-3 {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 72px !important;
  max-width: 72px !important;
  padding: 0 !important;
}

body#checkout .delivery-option .carrier-hasLogo > .carriere-name-container {
  width: auto !important;
  max-width: none !important;
  padding: 0 !important;
}

body#checkout .delivery-option img,
body#checkout .carrier-logo img,
body#checkout .delivery-option picture img {
  width: auto !important;
  max-width: 72px !important;
  height: auto !important;
  max-height: 48px !important;
  object-fit: contain !important;
}

body#checkout .delivery-option .carrier-name {
  display: block !important;
  margin: 0 !important;
  font-size: 15px !important;
  line-height: 1.25 !important;
  font-weight: 750 !important;
}

body#checkout .delivery-option > .delivery-option-2 > .row > .col-sm-4 {
  grid-column: 1 !important;
  grid-row: 2 !important;
  width: auto !important;
  max-width: none !important;
  padding: 0 0 0 86px !important;
}

body#checkout .delivery-option .carrier-delay {
  display: block !important;
  color: #6d7280 !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  font-weight: 500 !important;
}

body#checkout .delivery-option > .delivery-option-2 > .row > .col-sm-3 {
  grid-column: 2 !important;
  grid-row: 1 / span 2 !important;
  align-self: center !important;
  width: auto !important;
  max-width: none !important;
  padding: 0 !important;
  text-align: right !important;
}

body#checkout .delivery-option .carrier-price {
  display: block !important;
  white-space: nowrap !important;
  font-size: 15px !important;
  font-weight: 800 !important;
}

@media (max-width: 575.98px) {
  body#checkout .delivery-option {
    grid-template-columns: 20px minmax(0, 1fr) !important;
    padding: 12px !important;
  }

  body#checkout .delivery-option > .col-sm-1 {
    width: 20px !important;
    max-width: 20px !important;
  }

  body#checkout .delivery-option > .delivery-option-2 {
    padding-left: 9px !important;
  }

  body#checkout .delivery-option > .delivery-option-2 > .row {
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-rows: auto auto auto !important;
    row-gap: 6px !important;
  }

  body#checkout .delivery-option > .delivery-option-2 > .row > .col-sm-5 {
    grid-column: 1 / -1 !important;
    grid-row: 1 !important;
  }

  body#checkout .delivery-option .carrier-hasLogo {
    grid-template-columns: 52px minmax(0, 1fr) !important;
    gap: 10px !important;
  }

  body#checkout .delivery-option .carrier-hasLogo > .col-xs-3 {
    width: 52px !important;
    max-width: 52px !important;
  }

  body#checkout .delivery-option img,
  body#checkout .carrier-logo img,
  body#checkout .delivery-option picture img {
    max-width: 52px !important;
    max-height: 38px !important;
  }

  body#checkout .delivery-option .carrier-name,
  body#checkout .delivery-option .carrier-price {
    font-size: 13px !important;
  }

  body#checkout .delivery-option > .delivery-option-2 > .row > .col-sm-4 {
    grid-column: 1 !important;
    grid-row: 2 !important;
    padding-left: 0 !important;
  }

  body#checkout .delivery-option > .delivery-option-2 > .row > .col-sm-3 {
    grid-column: 1 !important;
    grid-row: 3 !important;
    align-self: auto !important;
    justify-self: end !important;
  }

  body#checkout .delivery-option .carrier-delay {
    font-size: 12px !important;
  }
}

/* Strass cart-page side panel final override 20260629 */
body#cart #blockcart-content .iqitfreedeliverycount,
body.page-cart #blockcart-content .iqitfreedeliverycount {
  min-height: 78px !important;
  margin: 12px 18px 16px !important;
  padding: 12px 92px 28px 14px !important;
  width: auto !important;
  overflow: hidden !important;
  border: 1px solid #8fe2ef !important;
  border-radius: 5px !important;
  background: linear-gradient(180deg, #f5fdff 0%, #e7fbff 100%) !important;
  color: #0f4e5c !important;
}

body#cart #blockcart-content .iqitfreedeliverycount::before,
body.page-cart #blockcart-content .iqitfreedeliverycount::before {
  content: "" !important;
  position: absolute !important;
  right: 14px !important;
  top: 50% !important;
  z-index: 0 !important;
  width: 64px !important;
  height: 42px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 116 70'%3E%3Cg fill='%2317a84b'%3E%3Cpath d='M10 18c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v33H10V18Zm8 0v25h48V18H18Z'/%3E%3Cpath d='M70 25h18c2.1 0 4.1.9 5.4 2.5L106 42.9c1.2 1.4 1.8 3.2 1.8 5.1V51H70V25Zm8 8v10h19.1L87.3 33H78Z'/%3E%3Cpath d='M5 48h106v8H5z'/%3E%3Ccircle cx='31' cy='56' r='10'/%3E%3Ccircle cx='84' cy='56' r='10'/%3E%3Ccircle cx='31' cy='56' r='4' fill='%23e7fbff'/%3E%3Ccircle cx='84' cy='56' r='4' fill='%23e7fbff'/%3E%3Cpath d='M20 25h34v6H20zM20 35h42v6H20z' opacity='.78'/%3E%3C/g%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
  opacity: .34 !important;
  transform: translateY(-53%) !important;
  box-shadow: none !important;
}

body#cart #blockcart-content .iqitfreedeliverycount::after,
body.page-cart #blockcart-content .iqitfreedeliverycount::after {
  content: "" !important;
  position: absolute !important;
  left: 14px !important;
  right: 92px !important;
  bottom: 11px !important;
  z-index: 2 !important;
  display: block !important;
  width: auto !important;
  height: 7px !important;
  margin: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, #17a84b 0 var(--strass-free-progress), transparent var(--strass-free-progress) 100%), #caedf3 !important;
  box-shadow: inset 0 1px 2px rgba(15, 78, 92, .18) !important;
  transform: none !important;
  opacity: 1 !important;
  animation: none !important;
}

/* Strass side cart stable drawer position 20260707 */
.ps-shoppingcart.side-cart #_desktop_blockcart-content,
.ps-shoppingcart.side-cart #_mobile_blockcart-content,
.ps-shoppingcart.side-cart > .dropdown-menu-custom.dropdown-menu,
.ps-shoppingcart.side-cart > .dropdown-menu,
#_desktop_blockcart-content.dropdown-menu,
#_mobile_blockcart-content.dropdown-menu {
  right: 0 !important;
  left: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  transform: translate3d(100%, 0, 0) !important;
}

.ps-shoppingcart.side-cart #_desktop_blockcart-content.show,
.ps-shoppingcart.side-cart #_mobile_blockcart-content.show,
.ps-shoppingcart.side-cart > .dropdown-menu-custom.dropdown-menu.show,
.ps-shoppingcart.side-cart > .dropdown-menu.show,
.ps-shoppingcart.side-cart.show #_desktop_blockcart-content,
.ps-shoppingcart.side-cart.show #_mobile_blockcart-content,
.ps-shoppingcart.side-cart .show > #_desktop_blockcart-content,
.ps-shoppingcart.side-cart .show > #_mobile_blockcart-content,
.sticky-desktop-wrapper .ps-shoppingcart.side-cart #_desktop_blockcart-content.show,
.stuck .ps-shoppingcart.side-cart #_desktop_blockcart-content.show,
.sticky .ps-shoppingcart.side-cart #_desktop_blockcart-content.show,
.fixed-header .ps-shoppingcart.side-cart #_desktop_blockcart-content.show {
  right: 0 !important;
  left: auto !important;
  margin: 0 !important;
  transform: translate3d(0, 0, 0) !important;
}

.ps-shoppingcart.side-cart #blockcart-content,
.ps-shoppingcart #blockcart-content,
#blockcart-content.blockcart-content {
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  height: 100% !important;
  max-height: none !important;
  margin: 0 !important;
  transform: none !important;
}

@media (min-width: 768px) {
  .ps-shoppingcart.side-cart #_desktop_blockcart-content,
  .ps-shoppingcart.side-cart #_mobile_blockcart-content,
  .ps-shoppingcart.side-cart > .dropdown-menu-custom.dropdown-menu,
  .ps-shoppingcart.side-cart > .dropdown-menu,
  #_desktop_blockcart-content.dropdown-menu,
  #_mobile_blockcart-content.dropdown-menu {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    display: block !important;
    width: 430px !important;
    min-width: 430px !important;
    max-width: min(430px, 100vw) !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    overflow: visible !important;
    z-index: 2147483000 !important;
  }
}

@media (max-width: 767.98px) {
  .ps-shoppingcart.side-cart #_desktop_blockcart-content,
  .ps-shoppingcart.side-cart #_mobile_blockcart-content,
  .ps-shoppingcart.side-cart > .dropdown-menu-custom.dropdown-menu,
  .ps-shoppingcart.side-cart > .dropdown-menu,
  #_desktop_blockcart-content.dropdown-menu,
  #_mobile_blockcart-content.dropdown-menu {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    display: block !important;
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    overflow: visible !important;
    z-index: 2147483000 !important;
  }
}


/* Strass side cart viewport scrollbar gutter correction 20260707 */
@media (min-width: 768px) {
  .ps-shoppingcart.side-cart #_desktop_blockcart-content,
  .ps-shoppingcart.side-cart #_mobile_blockcart-content,
  .ps-shoppingcart.side-cart > .dropdown-menu-custom.dropdown-menu,
  .ps-shoppingcart.side-cart > .dropdown-menu,
  #_desktop_blockcart-content.dropdown-menu,
  #_mobile_blockcart-content.dropdown-menu {
    right: calc(100% - 100vw) !important;
  }
}


/* Strass side cart sticky transform fix 20260707 */
body.strass-sidecart-open #sticky-cart-wrapper {
  transform: none !important;
}

/* Strass cart summary right aligned totals 20260707 */
body#cart .cart-grid-right .cart-summary .cart-summary-line,
body.page-cart .cart-grid-right .cart-summary .cart-summary-line {
  width: 100% !important;
  display: flex !important;
  align-items: baseline !important;
  justify-content: space-between !important;
  gap: 18px !important;
}

body#cart .cart-grid-right .cart-summary .cart-summary-line .label,
body.page-cart .cart-grid-right .cart-summary .cart-summary-line .label {
  flex: 1 1 auto !important;
  min-width: 0 !important;
}

body#cart .cart-grid-right .cart-summary .cart-summary-line .value,
body.page-cart .cart-grid-right .cart-summary .cart-summary-line .value,
body#cart .cart-grid-right .cart-summary .cart-summary-line .float-right,
body.page-cart .cart-grid-right .cart-summary .cart-summary-line .float-right {
  flex: 0 0 auto !important;
  min-width: 112px !important;
  margin-left: auto !important;
  float: none !important;
  text-align: right !important;
}

body#cart .cart-grid-right .cart-summary .cart-summary-line.cart-total .value,
body.page-cart .cart-grid-right .cart-summary .cart-summary-line.cart-total .value,
body#cart .cart-grid-right .cart-summary .cart-summary-line.cart-total .float-right,
body.page-cart .cart-grid-right .cart-summary .cart-summary-line.cart-total .float-right {
  min-width: 130px !important;
}

/* Strass cart subtotal rows vertical alignment 20260707 */
body#cart .cart-grid-right .cart-summary .cart-detailed-subtotals .cart-summary-line,
body.page-cart .cart-grid-right .cart-summary .cart-detailed-subtotals .cart-summary-line,
body#cart .cart-grid-right .cart-summary .cart-summary-subtotals-container .cart-summary-line,
body.page-cart .cart-grid-right .cart-summary .cart-summary-subtotals-container .cart-summary-line {
  align-items: flex-start !important;
}

body#cart .cart-grid-right .cart-summary .cart-detailed-subtotals .cart-summary-line .label,
body.page-cart .cart-grid-right .cart-summary .cart-detailed-subtotals .cart-summary-line .label,
body#cart .cart-grid-right .cart-summary .cart-summary-subtotals-container .cart-summary-line .label,
body.page-cart .cart-grid-right .cart-summary .cart-summary-subtotals-container .cart-summary-line .label,
body#cart .cart-grid-right .cart-summary .cart-detailed-subtotals .cart-summary-line .value,
body.page-cart .cart-grid-right .cart-summary .cart-detailed-subtotals .cart-summary-line .value,
body#cart .cart-grid-right .cart-summary .cart-summary-subtotals-container .cart-summary-line .value,
body.page-cart .cart-grid-right .cart-summary .cart-summary-subtotals-container .cart-summary-line .value {
  display: block !important;
  line-height: 1.28 !important;
}

body#cart .cart-grid-right .cart-summary .cart-detailed-subtotals .cart-summary-line .value,
body.page-cart .cart-grid-right .cart-summary .cart-detailed-subtotals .cart-summary-line .value,
body#cart .cart-grid-right .cart-summary .cart-summary-subtotals-container .cart-summary-line .value,
body.page-cart .cart-grid-right .cart-summary .cart-summary-subtotals-container .cart-summary-line .value {
  width: 132px !important;
  min-width: 132px !important;
  max-width: 132px !important;
  text-align: right !important;
}

/* Strass cart subtotal values fixed right column 20260707 */
body#cart .cart-grid-right .cart-summary .cart-detailed-subtotals .cart-summary-line,
body.page-cart .cart-grid-right .cart-summary .cart-detailed-subtotals .cart-summary-line,
body#cart .cart-grid-right .cart-summary .cart-summary-subtotals-container .cart-summary-line,
body.page-cart .cart-grid-right .cart-summary .cart-summary-subtotals-container .cart-summary-line {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 132px !important;
  column-gap: 18px !important;
  align-items: start !important;
}

body#cart .cart-grid-right .cart-summary .cart-detailed-subtotals .cart-summary-line > .label,
body.page-cart .cart-grid-right .cart-summary .cart-detailed-subtotals .cart-summary-line > .label,
body#cart .cart-grid-right .cart-summary .cart-summary-subtotals-container .cart-summary-line > .label,
body.page-cart .cart-grid-right .cart-summary .cart-summary-subtotals-container .cart-summary-line > .label {
  grid-column: 1 !important;
}

body#cart .cart-grid-right .cart-summary .cart-detailed-subtotals .cart-summary-line > .value,
body.page-cart .cart-grid-right .cart-summary .cart-detailed-subtotals .cart-summary-line > .value,
body#cart .cart-grid-right .cart-summary .cart-summary-subtotals-container .cart-summary-line > .value,
body.page-cart .cart-grid-right .cart-summary .cart-summary-subtotals-container .cart-summary-line > .value {
  grid-column: 2 !important;
  justify-self: end !important;
  align-self: start !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  margin-left: 0 !important;
  text-align: right !important;
}

/* Strass floating sticky cart button 20260708 */
@media (min-width: 768px) {
  #sticky-cart-wrapper {
    position: fixed !important;
    top: auto !important;
    right: 25px !important;
    bottom: 112px !important;
    left: auto !important;
    width: 62px !important;
    height: 62px !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    z-index: 1045 !important;
  }

  #sticky-cart-wrapper #ps-shoppingcart,
  #sticky-cart-wrapper #blockcart {
    width: 62px !important;
    height: 62px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  #sticky-cart-wrapper #cart-toogle,
  #sticky-cart-wrapper a.header-cart-btn {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 62px !important;
    height: 62px !important;
    min-width: 62px !important;
    min-height: 62px !important;
    padding: 0 !important;
    border: 1px solid rgba(17, 17, 17, .08) !important;
    border-radius: 999px !important;
    background: #fff !important;
    color: #111 !important;
    box-shadow: 0 14px 34px rgba(15, 17, 22, .18) !important;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease !important;
  }

  #sticky-cart-wrapper #cart-toogle:hover,
  #sticky-cart-wrapper a.header-cart-btn:hover {
    transform: translateY(-2px) !important;
    border-color: rgba(230, 16, 16, .28) !important;
    box-shadow: 0 18px 40px rgba(15, 17, 22, .22) !important;
  }

  #sticky-cart-wrapper #cart-toogle .icon,
  #sticky-cart-wrapper a.header-cart-btn .icon {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    margin: 0 !important;
    font-size: 0 !important;
    line-height: 1 !important;
    color: #111 !important;
  }

  #sticky-cart-wrapper .fa-shopping-bag::before,
  #sticky-cart-wrapper .fa-shopping-cart::before {
    width: 36px !important;
    height: 36px !important;
    background-color: transparent !important;
    background-size: 36px 36px !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    border-radius: 0 !important;
  }

  #sticky-cart-wrapper #cart-toogle .info-wrapper,
  #sticky-cart-wrapper #cart-toogle .title,
  #sticky-cart-wrapper #cart-toogle .cart-toggle-details,
  #sticky-cart-wrapper #cart-toogle .cart-products-count,
  #sticky-cart-wrapper #cart-toogle .value,
  #sticky-cart-wrapper #cart-toogle .cart-separator {
    display: none !important;
  }

  #sticky-cart-wrapper .cart-products-count-btn {
    position: absolute !important;
    top: -7px !important;
    right: -7px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 24px !important;
    height: 24px !important;
    padding: 0 7px !important;
    border: 2px solid #fff !important;
    border-radius: 999px !important;
    background: #018f4e !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 20px !important;
    box-shadow: 0 5px 12px rgba(1, 143, 78, .28) !important;
  }

  body.strass-sidecart-open #sticky-cart-wrapper {
    transform: none !important;
  }
}

@media (max-width: 767.98px) {
  #sticky-cart-wrapper {
    display: none !important;
  }
}


/* Strass hide floating widgets while side cart is open 20260708 */
body.strass-sidecart-open #back-to-top,
body.strass-sidecart-open iframe[src*="tawk.to"],
body.strass-sidecart-open iframe[title*="chat"],
body.strass-sidecart-open iframe[title*="Chat"],
body.strass-sidecart-open .tawk-min-container,
body.strass-sidecart-open .tawk-button,
body.strass-sidecart-open .tawk-bubble-container,
body.strass-sidecart-open .tawk-chat-bubble,
body.strass-sidecart-open #tawkchat-minified-wrapper {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Strass compact mobile side cart summary 20260708 */
@media (max-width: 767.98px) {
  #blockcart-content .cart-subtotals,
  #blockcart-content .cart-summary-subtotals-container,
  #blockcart-content .cart-detailed-subtotals {
    padding-top: 8px !important;
    padding-bottom: 6px !important;
  }

  #blockcart-content .cart-subtotals .cart-summary-line,
  #blockcart-content .cart-summary-subtotals-container .cart-summary-line,
  #blockcart-content .cart-detailed-subtotals .cart-summary-line {
    min-height: 22px !important;
    margin-bottom: 3px !important;
    padding: 0 !important;
    line-height: 1.2 !important;
  }

  #blockcart-content .cart-totals {
    margin-top: 5px !important;
    padding-top: 10px !important;
  }

  #blockcart-content .cart-summary-line.cart-total {
    margin-bottom: 8px !important;
  }

  #blockcart-content .cart-totals .label,
  #blockcart-content .cart-summary-line.cart-total .label {
    font-size: 16px !important;
    line-height: 1.15 !important;
  }

  #blockcart-content .cart-totals .value,
  #blockcart-content .cart-summary-line.cart-total .value {
    font-size: 20px !important;
    line-height: 1.1 !important;
  }

  #blockcart-content .iqitfreedeliverycount {
    min-height: 66px !important;
    margin-top: 8px !important;
    margin-bottom: 10px !important;
    padding: 10px 74px 19px 13px !important;
  }

  body#cart #blockcart-content .iqitfreedeliverycount,
  body.page-cart #blockcart-content .iqitfreedeliverycount {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }

  #blockcart-content .iqitfreedeliverycount-title {
    font-size: 13px !important;
    line-height: 1.18 !important;
    font-weight: 800 !important;
    text-wrap: auto !important;
  }

  #blockcart-content .iqitfreedeliverycount::before {
    right: 12px !important;
    width: 48px !important;
    height: 32px !important;
    opacity: .34 !important;
  }

  #blockcart-content .iqitfreedeliverycount::after {
    left: 13px !important;
    right: 74px !important;
    bottom: 8px !important;
    height: 7px !important;
  }
}

/* Strass tighter mobile side cart shipping-total gap 20260708 */
@media (max-width: 767.98px) {
  #blockcart-content .cart-subtotals,
  #blockcart-content .cart-summary-subtotals-container,
  #blockcart-content .cart-detailed-subtotals {
    padding-bottom: 2px !important;
    margin-bottom: 0 !important;
  }

  #blockcart-content .cart-subtotals .cart-summary-line:last-child,
  #blockcart-content .cart-summary-subtotals-container .cart-summary-line:last-child,
  #blockcart-content .cart-detailed-subtotals .cart-summary-line:last-child {
    margin-bottom: 0 !important;
  }

  #blockcart-content .cart-totals {
    margin-top: 0 !important;
    padding-top: 8px !important;
  }

  #blockcart-content .cart-totals::before,
  #blockcart-content .cart-summary-line.cart-total::before {
    margin-top: 0 !important;
  }
}

/* Strass checkout page aligned with cart page 20260708 */
body#checkout #main {
  padding-bottom: 48px;
}

body#checkout .page-title {
  margin: 24px 0 18px !important;
  color: #151723 !important;
  font-weight: 850 !important;
}

body#checkout .page-title span::after {
  width: 44px !important;
  height: 3px !important;
  margin-top: 14px !important;
  background: #e61010 !important;
}

body#checkout #main > .row {
  align-items: flex-start;
}

body#checkout #checkout-personal-information-step,
body#checkout .checkout-step {
  margin-bottom: 16px !important;
  overflow: hidden;
  border: 1px solid #e2e5eb !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 8px 24px rgba(18, 20, 32, .04) !important;
}

body#checkout .checkout-step .step-title {
  min-height: 66px;
  margin: 0 !important;
  padding: 18px 22px !important;
  border-bottom: 1px solid #eceef2 !important;
  color: #151723 !important;
  font-size: 24px !important;
  line-height: 1.2 !important;
  font-weight: 850 !important;
  background: #fff !important;
}

body#checkout .checkout-step .step-number {
  width: auto !important;
  min-width: 0 !important;
  margin-right: 8px !important;
  border: 0 !important;
  background: transparent !important;
  color: #151723 !important;
  font-size: inherit !important;
  font-weight: 850 !important;
}

body#checkout .checkout-step.-complete .step-title,
body#checkout .checkout-step.-reachable .step-title {
  cursor: pointer;
}

body#checkout .checkout-step.-complete .done {
  color: #17a84b !important;
}

body#checkout .checkout-step .step-edit {
  float: right !important;
  color: #e61010 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
}

body#checkout .checkout-step .content {
  padding: 18px 22px 22px !important;
}

body#checkout .checkout-step .form-group,
body#checkout .checkout-step .form-group.row {
  margin-bottom: 14px !important;
}

body#checkout .checkout-step label,
body#checkout .checkout-step .form-control-label,
body#checkout .checkout-step .col-form-label {
  color: #151723 !important;
  font-weight: 650 !important;
}

body#checkout .checkout-step .form-control,
body#checkout .checkout-step input[type="text"],
body#checkout .checkout-step input[type="email"],
body#checkout .checkout-step input[type="tel"],
body#checkout .checkout-step input[type="password"],
body#checkout .checkout-step select,
body#checkout .checkout-step textarea {
  min-height: 48px !important;
  border: 1px solid #d9dde5 !important;
  border-radius: 4px !important;
  background: #fff !important;
  color: #151723 !important;
  box-shadow: none !important;
}

body#checkout .checkout-step .form-control:focus,
body#checkout .checkout-step input:focus,
body#checkout .checkout-step select:focus,
body#checkout .checkout-step textarea:focus {
  border-color: #17a84b !important;
  box-shadow: 0 0 0 3px rgba(23, 168, 75, .12) !important;
}

body#checkout .checkout-step .help-block,
body#checkout .checkout-step .form-control-comment,
body#checkout .checkout-step small {
  color: #6a6f7b !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
}

body#checkout .checkout-step .custom-radio,
body#checkout .checkout-step input[type="radio"],
body#checkout .checkout-step input[type="checkbox"] {
  accent-color: #17a84b;
}

body#checkout .delivery-option,
body#checkout .payment-option,
body#checkout .address-item {
  border: 1px solid #e2e5eb !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 8px 20px rgba(18, 20, 32, .035) !important;
}

body#checkout .delivery-option,
body#checkout .payment-option {
  margin-bottom: 12px !important;
  padding: 14px 16px !important;
}

body#checkout .cart-grid-right .cart-summary,
body#checkout #js-checkout-summary {
  overflow: hidden;
  border: 1px solid #e2e5eb !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: 0 12px 30px rgba(18, 20, 32, .06) !important;
}

body#checkout #js-checkout-summary > .card-body,
body#checkout #js-checkout-summary .card-body,
body#checkout #js-checkout-summary .card-block {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

body#checkout #js-checkout-summary hr {
  margin: 0 !important;
  border-color: #d7dbe2 !important;
}

body#checkout .cart-summary-products {
  color: #151723 !important;
  font-size: 15px !important;
  font-weight: 650 !important;
}

body#checkout .cart-summary-products > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 38px;
}

body#checkout .cart-summary-products a[data-bs-toggle="collapse"] {
  float: none !important;
  margin-left: auto !important;
  color: #6a6f7b !important;
  font-size: 13px !important;
  font-weight: 650 !important;
  text-decoration: none !important;
}

body#checkout #cart-summary-product-list {
  padding-top: 12px;
}

body#checkout #cart-summary-product-list .media-list {
  margin: 0 !important;
}

body#checkout .cart-summary-product {
  margin: 0 0 10px !important;
  padding: 10px !important;
  border: 1px solid #e6e8ee !important;
  border-radius: 8px !important;
  background: #fff !important;
}

body#checkout .cart-summary-product .media-object,
body#checkout .cart-summary-product img {
  width: 64px !important;
  height: 64px !important;
  object-fit: contain !important;
  border: 1px solid #eceef2 !important;
  border-radius: 8px !important;
  background: #fff !important;
}

body#checkout .cart-summary-product .product-name {
  color: #151723 !important;
  font-size: 14px !important;
  line-height: 1.25 !important;
  font-weight: 750 !important;
}

body#checkout .cart-summary-product .pull-right {
  float: none !important;
  display: block !important;
  margin-top: 6px !important;
  color: #151723 !important;
  font-weight: 800 !important;
  text-align: left !important;
}

body#checkout .cart-summary-product .product-quantity {
  color: #6a6f7b !important;
  font-weight: 650 !important;
}

body#checkout .cart-summary-subtotals-container {
  padding-top: 14px !important;
  padding-bottom: 12px !important;
}

body#checkout .cart-summary-line {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 132px !important;
  column-gap: 18px !important;
  align-items: start !important;
  color: #151723 !important;
  font-size: 15px !important;
  line-height: 1.3 !important;
}

body#checkout .cart-summary-line + .cart-summary-line {
  margin-top: 6px !important;
}

body#checkout .cart-summary-line > .label {
  grid-column: 1 !important;
  color: #6a6f7b !important;
  font-weight: 650 !important;
}

body#checkout .cart-summary-line > .value,
body#checkout .cart-summary-line > .float-right {
  grid-column: 2 !important;
  justify-self: end !important;
  float: none !important;
  margin-left: 0 !important;
  color: #151723 !important;
  font-weight: 850 !important;
  text-align: right !important;
}

body#checkout .cart-summary-totals {
  padding-top: 18px !important;
  padding-bottom: 18px !important;
}

body#checkout .cart-summary-line.cart-total {
  font-size: 22px !important;
  font-weight: 850 !important;
}

body#checkout .cart-summary-line.cart-total > .label,
body#checkout .cart-summary-line.cart-total > .value {
  color: #1b1d29 !important;
  font-weight: 850 !important;
}

body#checkout .block-promo {
  padding: 16px !important;
  background: #f8f8fa !important;
}

body#checkout .block-promo .promo-input,
body#checkout .block-promo input {
  min-height: 48px !important;
  border-color: #d9dde5 !important;
  border-radius: 4px 0 0 4px !important;
  background: #fff !important;
  box-shadow: none !important;
}

body#checkout .block-promo .btn,
body#checkout .promo-code-button {
  min-height: 48px !important;
  border-radius: 0 4px 4px 0 !important;
  background: #e61010 !important;
  border-color: #e61010 !important;
  color: #fff !important;
  font-weight: 750 !important;
}

body#checkout .btn-primary,
body#checkout button[name="confirm-addresses"],
body#checkout button[name="confirmDeliveryOption"],
body#checkout #payment-confirmation button,
body#checkout .payment-options .btn {
  min-height: 54px !important;
  border: 1px solid #17a84b !important;
  border-radius: 4px !important;
  background: #17a84b !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
  box-shadow: none !important;
}

body#checkout .btn-primary:hover,
body#checkout button[name="confirm-addresses"]:hover,
body#checkout button[name="confirmDeliveryOption"]:hover,
body#checkout #payment-confirmation button:hover {
  border-color: #12883d !important;
  background: #12883d !important;
}

@media (max-width: 991.98px) {
  body#checkout .cart-grid-right {
    margin-top: 18px;
  }

  body#checkout .checkout-step .step-title {
    font-size: 21px !important;
  }
}

@media (max-width: 575.98px) {
  body#checkout .checkout-step .step-title,
  body#checkout .checkout-step .content {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  body#checkout .cart-summary-line {
    grid-template-columns: minmax(0, 1fr) 92px !important;
    column-gap: 12px !important;
  }

  body#checkout .cart-summary-line.cart-total {
    font-size: 18px !important;
  }

  body#checkout .cart-summary-product .media-object,
  body#checkout .cart-summary-product img {
    width: 56px !important;
    height: 56px !important;
  }
}


/* Strass checkout promo icon refinement 20260708 */
body#checkout .block-promo .voucher-icon,
body#checkout .block-promo .fa-tag.btn {
  min-height: 48px !important;
  border: 1px solid #d9dde5 !important;
  border-right: 0 !important;
  border-radius: 4px 0 0 4px !important;
  background: #f8f8fa !important;
  color: #151723 !important;
  box-shadow: none !important;
}

body#checkout .block-promo .input-group-append .btn {
  min-height: 48px !important;
  border-radius: 0 4px 4px 0 !important;
  background: #e61010 !important;
  border-color: #e61010 !important;
  color: #fff !important;
  font-weight: 750 !important;
}

/* Strass checkout shipping icons and sticky summary 20260710 */
@media (min-width: 992px) {
  body#checkout .cart-grid-right,
  body#checkout #js-checkout-summary {
    position: sticky !important;
    top: 92px !important;
    z-index: 4;
  }
}

body#checkout .delivery-option {
  align-items: center !important;
  min-height: 116px !important;
}

body#checkout .delivery-option img,
body#checkout .carrier-logo img,
body#checkout .delivery-option .carrier-logo,
body#checkout .delivery-option picture img {
  width: auto !important;
  max-width: 118px !important;
  height: auto !important;
  max-height: 74px !important;
  object-fit: contain !important;
}

body#checkout .delivery-option .carrier-logo,
body#checkout .delivery-option picture,
body#checkout .delivery-option .col-sm-3:first-child,
body#checkout .delivery-option .col-md-3:first-child,
body#checkout .delivery-option .col-lg-3:first-child {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

body#checkout .delivery-option .col-sm-3:first-child,
body#checkout .delivery-option .col-md-3:first-child,
body#checkout .delivery-option .col-lg-3:first-child {
  max-width: 150px !important;
}

body#checkout .delivery-option label,
body#checkout .delivery-option .row {
  align-items: center !important;
}

@media (max-width: 991.98px) {
  body#checkout .cart-grid-right,
  body#checkout #js-checkout-summary {
    position: static !important;
  }

  body#checkout .delivery-option img,
  body#checkout .carrier-logo img,
  body#checkout .delivery-option .carrier-logo,
  body#checkout .delivery-option picture img {
    max-width: 96px !important;
    max-height: 60px !important;
  }
}

/* Keep compact carrier artwork after the legacy checkout overrides. */
body#checkout .delivery-option {
  min-height: 0 !important;
}

body#checkout .delivery-option img,
body#checkout .carrier-logo img,
body#checkout .delivery-option picture img {
  max-width: 72px !important;
  max-height: 48px !important;
}

@media (max-width: 575.98px) {
  body#checkout .delivery-option img,
  body#checkout .carrier-logo img,
  body#checkout .delivery-option picture img {
    max-width: 52px !important;
    max-height: 38px !important;
  }
}

/* Strass checkout promotional code 20260710 */
body#checkout .block-promo {
  position: relative !important;
  margin: 0 !important;
  padding: 14px !important;
  border: 1px solid #dce8df !important;
  border-radius: 6px !important;
  background: #f8fbf9 !important;
  box-shadow: none !important;
}

body#checkout .block-promo::before {
  content: "Hai un codice sconto?" !important;
  display: block !important;
  margin: 0 0 9px !important;
  color: #1b1d29 !important;
  font-size: 13px !important;
  font-weight: 750 !important;
  line-height: 1.2 !important;
}

body#checkout .block-promo .promo-code,
body#checkout .block-promo form,
body#checkout .block-promo .input-group {
  margin: 0 !important;
}

body#checkout .block-promo .input-group {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
}

body#checkout .block-promo .voucher-icon,
body#checkout .block-promo .fa-tag.btn {
  flex: 0 0 48px !important;
  width: 48px !important;
  min-height: 48px !important;
  border-color: #cfded3 !important;
  border-radius: 5px 0 0 5px !important;
  background: #fff !important;
  color: #168746 !important;
}

body#checkout .block-promo .promo-input,
body#checkout .block-promo input {
  min-width: 0 !important;
  min-height: 48px !important;
  border-color: #cfded3 !important;
  border-left: 0 !important;
  border-radius: 0 !important;
  background: #fff !important;
  color: #1b1d29 !important;
  font-size: 15px !important;
  font-weight: 550 !important;
  box-shadow: none !important;
}

body#checkout .block-promo .promo-input:focus,
body#checkout .block-promo input:focus {
  position: relative !important;
  z-index: 2 !important;
  border-color: #18a64b !important;
  outline: 0 !important;
  box-shadow: 0 0 0 3px rgba(24, 166, 75, .12) !important;
}

body#checkout .block-promo .input-group-append .btn,
body#checkout .block-promo .promo-code-button {
  flex: 0 0 auto !important;
  min-height: 48px !important;
  padding: 0 20px !important;
  border-color: #17a84b !important;
  border-radius: 0 5px 5px 0 !important;
  background: #17a84b !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
  box-shadow: none !important;
  transition: background-color .18s ease, border-color .18s ease !important;
}

body#checkout .block-promo .input-group-append .btn:hover,
body#checkout .block-promo .promo-code-button:hover {
  border-color: #11853c !important;
  background: #11853c !important;
}

@media (max-width: 575.98px) {
  body#checkout .block-promo {
    padding: 11px !important;
  }

  body#checkout .block-promo .voucher-icon,
  body#checkout .block-promo .fa-tag.btn {
    flex-basis: 42px !important;
    width: 42px !important;
  }

  body#checkout .block-promo .input-group-append .btn,
  body#checkout .block-promo .promo-code-button {
    padding: 0 13px !important;
    font-size: 13px !important;
  }
}

/* Refined checkout promotional code surface 20260710 */
body#checkout .block-promo {
  padding: 20px 16px 18px !important;
  border: 0 !important;
  border-top: 1px solid #eaedf0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

body#checkout .block-promo::before {
  margin-bottom: 10px !important;
  color: #1b1d29 !important;
  font-size: 14px !important;
  font-weight: 800 !important;
}

body#checkout .block-promo .promo-code,
body#checkout .block-promo form,
body#checkout .block-promo .input-group {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

body#checkout .block-promo .voucher-icon,
body#checkout .block-promo .fa-tag.btn {
  min-height: 46px !important;
  border-color: #d9dde2 !important;
  background: #fff !important;
  color: #16181d !important;
}

body#checkout .block-promo .promo-input,
body#checkout .block-promo input {
  min-height: 46px !important;
  border-color: #d9dde2 !important;
  background: #fff !important;
  font-size: 15px !important;
}

body#checkout .block-promo .promo-input::placeholder,
body#checkout .block-promo input::placeholder {
  color: #777d88 !important;
  opacity: 1 !important;
}

body#checkout .block-promo .input-group-append .btn,
body#checkout .block-promo .promo-code-button {
  min-height: 46px !important;
  padding: 0 19px !important;
  border-color: #15171b !important;
  border-radius: 0 5px 5px 0 !important;
  background: #15171b !important;
  color: #fff !important;
}

body#checkout .block-promo .input-group-append .btn:hover,
body#checkout .block-promo .promo-code-button:hover {
  border-color: #000 !important;
  background: #000 !important;
}

@media (max-width: 575.98px) {
  body#checkout .block-promo {
    padding: 17px 12px 14px !important;
  }

  body#checkout .block-promo .input-group-append .btn,
  body#checkout .block-promo .promo-code-button {
    padding: 0 14px !important;
  }
}
