:root {
  --font-family-primary: sans-serif;
  --font-family-secondary: sans-serif;
}

body {
  margin: 0;
  font-family: var(--font-family-secondary);
}

.bc-cart-widget .open-cart-button,
.bc-cart-widget .open-cart-button:hover,
.bc-cart-widget .open-cart-button:focus {
  color: inherit;
  border: none;
  background: transparent;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bc-cart-widget .open-cart-button span.cart-count-wrapper,
.bc-cart-widget .open-cart-button:hover span.cart-count-wrapper,
.bc-cart-widget .open-cart-button:focus span.cart-count-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 4px;
  right: 6px;
  background: #262626;
  color: white;
  font-size: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50px;
  box-sizing: border-box;
  white-space: nowrap;
}
.bc-cart-widget .open-cart-button span.cart-count-wrapper.small-font,
.bc-cart-widget .open-cart-button:hover span.cart-count-wrapper.small-font,
.bc-cart-widget .open-cart-button:focus span.cart-count-wrapper.small-font {
  font-size: 8px;
}
.bc-cart-widget .cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Grey tint */
  z-index: 9998; /* Below the cart container */
  display: none; /* Hidden by default */
}
.bc-cart-widget .cart-container {
  box-sizing: border-box;
  position: fixed;
  right: -40%;
  top: 0;
  width: 40%;
  height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease-in-out;
  z-index: 9999; /* Above the overlay */
}
.bc-cart-widget .cart-container.open {
  right: 0;
}
.bc-cart-widget .cart-container.open ~ .cart-overlay {
  display: block; /* Show when cart is open */
}
.bc-cart-widget .cart-container .loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(255, 255, 255);
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10001;
  display: none;
}
.bc-cart-widget .cart-container .loading-overlay .spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #262626;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  translate: 50% -50%;
  top: 50%;
  right: 50%;
  position: absolute;
}
.bc-cart-widget .cart-container .cart-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding-block: 40px;
  padding-inline: 24px;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  z-index: 10000;
}
.bc-cart-widget .cart-container .cart-header div {
  display: flex;
  align-items: center;
  gap: 5px;
}
.bc-cart-widget .cart-container .cart-header div .cart-heading {
  display: inline-block;
  vertical-align: middle;
  font-weight: 300;
  color: #262626;
  font-size: 1rem;
  letter-spacing: 4px;
  text-align: left;
  text-transform: uppercase;
  line-height: normal;
  margin-right: 20px;
}
.bc-cart-widget .cart-container .cart-header div .cart-heading > span {
  display: inline-block;
}
.bc-cart-widget .cart-container .cart-header svg {
  cursor: pointer;
}
.bc-cart-widget .cart-container .cart-items {
  overflow-x: clip;
  overflow-y: auto;
  flex: 1;
  padding-inline: 24px;
  padding-top: 106px;
  padding-bottom: 238px;
}
.bc-cart-widget .cart-container .cart-items .relevant-products-wrapper {
  display: none;
}
.bc-cart-widget .cart-container .cart-items .relevant-products-wrapper .relevant-products-heading {
  font-size: 24px;
  margin-block: clamp(10px, -140px + 21.4286vh, 40px);
}
.bc-cart-widget .cart-container .cart-items .relevant-products-wrapper .swiper-container {
  position: relative;
}
.bc-cart-widget .cart-container .cart-items .relevant-products-wrapper .swiper-container .swiper-wrapper {
  height: unset;
}
.bc-cart-widget .cart-container .cart-items .relevant-products-wrapper .swiper-container .swiper-slide {
  max-width: 300px;
  width: calc(100% - 35px);
}
.bc-cart-widget .cart-container .cart-items .relevant-products-wrapper .swiper-container .swiper-slide .product-card {
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
}
.bc-cart-widget .cart-container .cart-items .relevant-products-wrapper .swiper-container .swiper-slide .product-card .product-cover {
  display: block;
  width: 100%;
  height: 100%;
}
.bc-cart-widget .cart-container .cart-items .relevant-products-wrapper .swiper-container .swiper-slide .product-card .product-cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bc-cart-widget .cart-container .cart-items .relevant-products-wrapper .swiper-container .swiper-slide .product-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 25%;
  transition: height 0.2s ease-in-out;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}
.bc-cart-widget .cart-container .cart-items .relevant-products-wrapper .swiper-container .swiper-slide .product-card .product-cover-title {
  position: absolute;
  bottom: 0;
  color: #fff;
  font-family: var(--font-family-primary);
  font-size: 21px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 30px;
  margin: 0;
  z-index: 2;
  transition: bottom 0.2s ease-in-out;
}
.bc-cart-widget .cart-container .cart-items .relevant-products-wrapper .swiper-container .swiper-slide .product-card .relevant-product-add-to-cart {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #262626;
  color: #fff;
  border: none;
  padding: 10px;
  width: 100%;
  z-index: 2;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.2s ease-in-out, transform 0.3s ease-in-out;
}
.bc-cart-widget .cart-container .cart-items .relevant-products-wrapper .swiper-container .swiper-slide .product-card:hover, .bc-cart-widget .cart-container .cart-items .relevant-products-wrapper .swiper-container .swiper-slide .product-card.open {
  cursor: pointer;
}
.bc-cart-widget .cart-container .cart-items .relevant-products-wrapper .swiper-container .swiper-slide .product-card:hover .relevant-product-add-to-cart, .bc-cart-widget .cart-container .cart-items .relevant-products-wrapper .swiper-container .swiper-slide .product-card.open .relevant-product-add-to-cart {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.2s ease-in-out, transform 0.3s ease-in-out;
}
.bc-cart-widget .cart-container .cart-items .relevant-products-wrapper .swiper-container .swiper-slide .product-card:hover .relevant-product-add-to-cart:hover, .bc-cart-widget .cart-container .cart-items .relevant-products-wrapper .swiper-container .swiper-slide .product-card.open .relevant-product-add-to-cart:hover {
  background-color: #2d2d2d;
}
.bc-cart-widget .cart-container .cart-items .relevant-products-wrapper .swiper-container .swiper-slide .product-card:hover .product-cover-title, .bc-cart-widget .cart-container .cart-items .relevant-products-wrapper .swiper-container .swiper-slide .product-card.open .product-cover-title {
  bottom: 24px;
}
.bc-cart-widget .cart-container .cart-items .relevant-products-wrapper .swiper-container .swiper-slide .product-card:hover::after, .bc-cart-widget .cart-container .cart-items .relevant-products-wrapper .swiper-container .swiper-slide .product-card.open::after {
  height: calc(25% + 35px);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0) 100%);
}
.bc-cart-widget .cart-container .cart-items .relevant-products-wrapper .swiper-container:hover .swiper-button-next,
.bc-cart-widget .cart-container .cart-items .relevant-products-wrapper .swiper-container:hover .swiper-button-prev {
  opacity: 1;
  display: flex;
}
.bc-cart-widget .cart-container .cart-items .relevant-products-wrapper .swiper-container .swiper-button-next {
  right: -7px;
}
.bc-cart-widget .cart-container .cart-items .relevant-products-wrapper .swiper-container .swiper-button-prev {
  left: -7px;
}
.bc-cart-widget .cart-container .cart-items .relevant-products-wrapper .swiper-container .swiper-button-next,
.bc-cart-widget .cart-container .cart-items .relevant-products-wrapper .swiper-container .swiper-button-prev {
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  justify-content: center;
  align-items: center;
  width: 47px;
  height: 33px;
  margin: 0;
  opacity: 0;
  color: #394d45;
  background-color: #fff;
  transition: opacity 0.3s ease-in-out;
}
.bc-cart-widget .cart-container .cart-items .relevant-products-wrapper .swiper-container .swiper-button-next:hover,
.bc-cart-widget .cart-container .cart-items .relevant-products-wrapper .swiper-container .swiper-button-prev:hover {
  background-color: #d7dbda;
}
.bc-cart-widget .cart-container .cart-items .relevant-products-wrapper .swiper-container .swiper-button-next:after,
.bc-cart-widget .cart-container .cart-items .relevant-products-wrapper .swiper-container .swiper-button-prev:after {
  display: none;
}
.bc-cart-widget .cart-container .cart-items .relevant-products-wrapper .swiper-container .swiper-button-next svg,
.bc-cart-widget .cart-container .cart-items .relevant-products-wrapper .swiper-container .swiper-button-prev svg {
  width: 20px;
}
.bc-cart-widget .cart-container .cart-items .relevant-products-wrapper .swiper-container .swiper-button-next.swiper-button-disabled,
.bc-cart-widget .cart-container .cart-items .relevant-products-wrapper .swiper-container .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}
.bc-cart-widget .cart-container .cart-items .cart-item {
  display: flex;
  gap: 24px;
  justify-content: stretch;
  border-bottom: 1px solid #e5e5e5;
  padding-block: 25px;
}
.bc-cart-widget .cart-container .cart-items .cart-item.is-updating {
  opacity: 0.5;
  transition: opacity 0.3s ease-in-out;
}
.bc-cart-widget .cart-container .cart-items .cart-item.deleting {
  opacity: 0.5;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
}
.bc-cart-widget .cart-container .cart-items .cart-item.deleting button,
.bc-cart-widget .cart-container .cart-items .cart-item.deleting input {
  opacity: 0.6;
  cursor: not-allowed;
}
.bc-cart-widget .cart-container .cart-items .cart-item:last-child {
  border-bottom: none;
}
.bc-cart-widget .cart-container .cart-items .cart-item a {
  width: 30%;
}
.bc-cart-widget .cart-container .cart-items .cart-item a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bc-cart-widget .cart-container .cart-items .cart-item .item-details {
  font-size: 14px;
  font-weight: 300;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}
.bc-cart-widget .cart-container .cart-items .cart-item .item-details .product-name {
  font-weight: 500;
  margin-bottom: 12px;
  margin-right: 40px;
}
.bc-cart-widget .cart-container .cart-items .cart-item .item-details .product-name a {
  color: #262626;
  text-decoration: none;
}
.bc-cart-widget .cart-container .cart-items .cart-item .item-details .product-name a:hover {
  color: #262626;
  text-decoration: none;
}
.bc-cart-widget .cart-container .cart-items .cart-item .item-details .trash-icon {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
.bc-cart-widget .cart-container .cart-items .cart-item .item-details .price {
  margin-bottom: 6px;
}
.bc-cart-widget .cart-container .cart-items .cart-item .item-details .quantity-selector {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e5e5e5;
  background: #fff;
  height: 42px;
  width: 75px;
}
.bc-cart-widget .cart-container .cart-items .cart-item .item-details .quantity-selector button {
  height: 100%;
  background: none;
  border: none;
  cursor: pointer;
  flex: 1;
  text-align: center;
  padding: 0;
  display: flex;
  color: #262626;
  background: transparent;
  justify-content: center;
  align-items: center;
}
.bc-cart-widget .cart-container .cart-items .cart-item .item-details .quantity-selector button:hover, .bc-cart-widget .cart-container .cart-items .cart-item .item-details .quantity-selector button:focus {
  color: #262626;
  background: transparent;
}
.bc-cart-widget .cart-container .cart-items .cart-item .item-details .quantity-selector .quantity {
  min-width: 0.8333333333rem;
  text-align: center;
  flex: 1;
  font-weight: 600;
  line-height: normal;
  padding: unset;
  font-size: inherit;
  border: none;
}
.bc-cart-widget .cart-container .cart-items .cart-item .item-details .quantity-selector .quantity:focus-visible {
  outline: none;
  border: none;
}
.bc-cart-widget .cart-container .cart-items .cart-item .item-details .total-price {
  white-space: nowrap;
  font-weight: 400;
  font-size: 0.875rem;
  color: #262626;
  letter-spacing: 3.5px;
  position: absolute;
  right: 0;
  bottom: 0;
  font-weight: bold;
}
.bc-cart-widget .cart-container .cart-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px solid #e5e5e5;
  background: #fff;
  z-index: 10000;
}
.bc-cart-widget .cart-container .cart-footer .subtotal {
  padding-block: 16px 40px;
  display: flex;
  justify-content: space-between;
  white-space: nowrap;
  font-weight: 400;
  font-size: 14px;
  color: #262626;
  letter-spacing: 3.5px;
  margin-inline: 24px;
}
.bc-cart-widget .cart-container .cart-footer .subtotal div {
  font-weight: bold;
}
.bc-cart-widget .cart-container .cart-footer .cart-actions {
  padding-block: 40px 60px;
  border-top: 1px solid #e5e5e5;
}
.bc-cart-widget .cart-container .cart-footer .cart-actions .go-to-cart {
  margin-inline: 24px;
  transition: all 0.15s ease-in;
  display: block;
  width: calc(100% - 48px);
  font-weight: 300;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.25rem;
  padding: 11px 33px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #262626;
  background: #262626;
  cursor: pointer;
}
.bc-cart-widget .cart-container .cart-footer .cart-actions .go-to-cart:focus {
  outline-color: #1e90ff;
  outline-style: auto;
  outline-width: 4px;
  outline-offset: 5px;
  z-index: 1;
}
@media (max-width: 768px) {
  .bc-cart-widget .cart-container {
    position: fixed;
    /* fallback */
    height: 100vh;
    /* dynamic for mobile toolbars */
    height: 100dvh;
    overflow: hidden;
    z-index: 9999;
    right: -100vw;
    width: 100vw;
    background: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  }
  .bc-cart-widget .cart-container.open {
    right: 0;
  }
  .bc-cart-widget .cart-container .cart-items .relevant-products-wrapper .relevant-products-heading {
    margin-block: 20px;
    margin-bottom: 25px;
    font-size: 22px;
  }
  .bc-cart-widget .cart-container .cart-footer .cart-actions {
    padding-block: 20px 30px;
  }
}

.add-to-cart-bar {
  position: fixed;
  bottom: -100%;
  left: 30px;
  right: 30px;
  z-index: 0;
  opacity: 0;
  border: 1px solid #e5e5e5;
  background-color: #fff;
  transition: bottom 0.8s ease-in-out, opacity 0.8s ease-in-out, z-index 0.8s ease-in-out;
}
.add-to-cart-bar.open {
  bottom: 30px;
  z-index: 9;
  opacity: 1;
}
.add-to-cart-bar .cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Grey tint */
  z-index: 9998; /* Below the cart container */
  display: none; /* Hidden by default */
}
.add-to-cart-bar .add-to-cart-bar-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 10px 16px;
  background: #fff;
  position: relative;
  z-index: 9999; /* Above the overlay */
}
.add-to-cart-bar .close-icon {
  display: none;
}
.add-to-cart-bar .product-description {
  display: flex;
  align-items: center;
}
.add-to-cart-bar .product-description .product-image {
  display: block;
  width: 60px;
  height: 60px;
  margin-right: 16px;
  flex-shrink: 0;
}
.add-to-cart-bar .name-and-price {
  display: flex;
  align-items: center;
  gap: 16px;
}
.add-to-cart-bar .name-and-price .product-name {
  font-size: 19px;
  font-weight: 500;
  display: inline-block;
  white-space: initial;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 1;
}
.add-to-cart-bar .name-and-price .product-price {
  font-size: 17px;
  font-weight: 300;
  flex-shrink: 0;
}
.add-to-cart-bar .name-and-price .product-image,
.add-to-cart-bar .name-and-price .quantity-selector {
  display: none;
}
.add-to-cart-bar .options-and-buttons {
  display: flex;
  align-items: center;
}
.add-to-cart-bar .options-and-buttons .product-options {
  height: 100%;
  display: flex;
  align-items: center;
  border-right: 1px solid #e5e5e5;
  padding-right: 16px;
}
.add-to-cart-bar .options-and-buttons .product-buttons {
  margin-left: 16px;
}
.add-to-cart-bar .options-and-buttons .product-buttons .product-add-to-cart .product-price {
  display: none;
}
.add-to-cart-bar .quantity-selector {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e5e5e5;
  background: #fff;
  height: 42px;
  width: 75px;
}
.add-to-cart-bar .quantity-selector button {
  height: 100%;
  background: none;
  border: none;
  cursor: pointer;
  flex: 1;
  text-align: center;
  padding: 0;
  display: flex;
  color: #262626;
  background: transparent;
  justify-content: center;
  align-items: center;
}
.add-to-cart-bar .quantity-selector button:hover, .add-to-cart-bar .quantity-selector button:focus {
  color: #262626;
  background: transparent;
}
.add-to-cart-bar .quantity-selector .quantity {
  min-width: 0.8333333333rem;
  text-align: center;
  flex: 1;
  font-weight: 600;
  line-height: normal;
  padding: unset;
  font-size: inherit;
  border: none;
}
.add-to-cart-bar .quantity-selector .quantity:focus-visible {
  outline: none;
  border: none;
}
.add-to-cart-bar .product-add-to-cart {
  justify-self: end;
  font-family: var(--font-family-primary);
  font-size: 15px;
  height: 42px;
  font-weight: 500;
  border: none;
  color: #fff;
  text-transform: uppercase;
  padding: 12px 24px;
  background-color: var(--e-global-color-accent);
  margin-top: auto;
  position: relative;
  z-index: 9;
  line-height: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.add-to-cart-bar .product-add-to-cart:hover {
  cursor: pointer;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .add-to-cart-bar {
    height: auto;
  }
  .add-to-cart-bar .add-to-cart-bar-wrapper {
    padding-block: 16px;
    flex-direction: column;
  }
  .add-to-cart-bar .product-description {
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e5e5;
  }
  .add-to-cart-bar .product-description .name-and-price {
    justify-content: space-between;
    flex: 1;
  }
  .add-to-cart-bar .options-and-buttons {
    margin-top: 16px;
    justify-content: space-between;
  }
  .add-to-cart-bar .options-and-buttons .product-options {
    border-right: none;
    padding-right: 0;
  }
  .add-to-cart-bar .options-and-buttons .product-buttons {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .add-to-cart-bar {
    height: auto;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .add-to-cart-bar.open {
    bottom: 0;
  }
  .add-to-cart-bar .add-to-cart-bar-wrapper {
    padding-inline: 14px;
    padding-top: 10px;
    padding-bottom: 10px; /* Fallback for browsers without env() support */
    padding-bottom: max(10px, env(safe-area-inset-bottom));
    gap: 10px;
  }
  .add-to-cart-bar .product-description {
    max-width: 50%;
    flex-shrink: 0;
    flex-grow: 1;
  }
  .add-to-cart-bar .product-description .product-image {
    display: block;
    width: 60px;
    height: 60px;
    margin-right: 16px;
    flex-shrink: 0;
  }
  .add-to-cart-bar .product-description .name-and-price {
    justify-content: start;
    align-items: start;
    flex-direction: column;
    gap: 0;
    min-width: 0;
  }
  .add-to-cart-bar .product-description .name-and-price .product-name {
    font-size: 17px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
  .add-to-cart-bar .product-description .name-and-price .product-price {
    font-size: 15px;
  }
  .add-to-cart-bar .options-and-buttons {
    justify-content: space-between;
  }
  .add-to-cart-bar .options-and-buttons .product-options {
    display: none;
    border-right: none;
    padding-right: 0;
  }
  .add-to-cart-bar .options-and-buttons .product-buttons {
    display: flex;
    align-self: center;
    margin-left: 0;
  }
  .add-to-cart-bar .options-and-buttons .product-buttons .product-add-to-cart {
    font-size: clamp(11px, 5.1818px + 1.8182vw, 13px);
    padding-inline: clamp(7px, -22.0909px + 9.0909vw, 17px);
    padding-block: 0;
    white-space: normal;
    min-width: 115px;
    text-wrap-style: balance;
  }
  .add-to-cart-bar .options-and-buttons .product-buttons .product-add-to-cart .product-price {
    display: inline;
  }
  .add-to-cart-bar.active .add-to-cart-bar-wrapper {
    flex-direction: column;
    padding: 26px 16px;
  }
  .add-to-cart-bar.active .cart-overlay {
    display: block;
  }
  .add-to-cart-bar.active .close-icon {
    display: block;
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
  }
  .add-to-cart-bar.active .product-description {
    display: flex;
    max-width: 100%;
  }
  .add-to-cart-bar.active .product-description .product-image {
    display: block;
    width: 100px;
    height: 100px;
    margin-right: 16px;
    flex-shrink: 0;
  }
  .add-to-cart-bar.active .product-description .name-and-price {
    flex: 1;
    justify-content: space-evenly;
  }
  .add-to-cart-bar.active .product-description .name-and-price .quantity-selector {
    display: flex;
  }
  .add-to-cart-bar.active .options-and-buttons {
    margin-top: 24px;
    justify-content: space-between;
    flex-direction: column;
  }
  .add-to-cart-bar.active .options-and-buttons .product-buttons {
    width: 100%;
  }
  .add-to-cart-bar.active .options-and-buttons .product-buttons .product-add-to-cart {
    font-size: 13px;
    width: 100%;
  }
}

.add-to-cart-button {
  display: flex;
  align-items: center;
  justify-content: stretch;
  gap: 10px;
  flex-wrap: wrap;
  padding-block: 10px;
}
.add-to-cart-button .quantity-selector {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e5e5e5;
  background: #fff;
  height: 42px;
  width: 75px;
}
.add-to-cart-button .quantity-selector button {
  height: 100%;
  background: none;
  border: none;
  cursor: pointer;
  flex: 1;
  text-align: center;
  padding: 0;
  display: flex;
  color: #262626;
  background: transparent;
  justify-content: center;
  align-items: center;
}
.add-to-cart-button .quantity-selector button:hover, .add-to-cart-button .quantity-selector button:focus {
  color: #262626;
  background: transparent;
}
.add-to-cart-button .quantity-selector .quantity {
  min-width: 0.8333333333rem;
  text-align: center;
  flex: 1;
  font-weight: 600;
  line-height: normal;
  padding: unset;
  font-size: inherit;
  border: none;
}
.add-to-cart-button .quantity-selector .quantity:focus-visible {
  outline: none;
  border: none;
}
.add-to-cart-button .product-add-to-cart {
  justify-self: end;
  font-family: var(--font-family-primary);
  font-size: 15px;
  height: 42px;
  font-weight: 500;
  border: none;
  color: #fff;
  text-transform: uppercase;
  padding: 12px 24px;
  background-color: var(--e-global-color-accent);
  margin-top: auto;
  position: relative;
  z-index: 9;
  line-height: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.add-to-cart-button .product-add-to-cart:hover {
  cursor: pointer;
}
.add-to-cart-button .product-buttons {
  display: flex;
  align-items: center;
  justify-content: stretch;
  gap: 10px;
  flex: 1;
}
.add-to-cart-button .product-buttons .product-add-to-cart {
  flex: 1;
}
.add-to-cart-button .product-buttons .product-add-to-cart .total-price {
  display: flex;
}
@media (max-width: 768px) {
  .add-to-cart-button {
    gap: 10px;
  }
}

.no-scroll {
  overflow: hidden;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}