/** Shopify CDN: Minification failed

Line 321:0 Unexpected "<"

**/
.cart-drawer {
  position: fixed;
  top: 0;
  left: -9999px;
  opacity: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  transition: left 0s 0.2s, opacity 0.2s;
  overflow: hidden
}


.cart-drawer--active {
  left: 0;
  opacity: 1;
  transition: left 0s, opacity 0.2s;
}


.cart-drawer-box {
  width: 380px;
  background: #fff;
  border-radius: 12px;
  flex: 1;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  overflow: auto;
  transition: 0.2s opacity, 0.2s transform;
  opacity: 0;
  transform: translateX(40px);
}

.cart-drawer--active .cart-drawer-box {
  transform: none;
  opacity: 1;
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid #e7e7e7;
}

.cart-drawer-header h2 {
  color: #121212;
  flex: 1;
  font-weight: 500;
  font-size: 20px;
  font-family: var(--font-heading-family);
}


.cart-drawer-header-right {
  color: #a1a1a1;
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.cart-drawer-header-right-items {
  display: none;
  font-weight: 500;
}

.cart-drawer-header-right-close {
  width: 20px;
  color: #121212;
  cursor: pointer;
}

.cart-drawer-header-right-close:hover {
  color: #212529;
}

.cart-drawer-form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cart-drawer-items {
  padding: 24px;
}

.cart-drawer-item {
  display: flex;
  align-items: center;
  /* border: 1px solid #e7e7e7;
    border-radius: 12px;
    background: white; */
  overflow: hidden;
}

.cart-drawer-item+.cart-drawer-item {
  margin-top: 10px;
}

.cart-drawer-item-image {
  width: 80px;
}

.cart-drawer-item-image img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.cart-drawer-item-main {
  flex: 1;
  padding: 0 24px;
}

.cart-drawer-item-main-flex {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-drawer-item-main-flex-left {
  flex: 1;
}

.cart-drawer-item-main-flex-left h3 {
  font-size: 15px;
  font-weight: 500;
}

.cart-drawer-item-main-flex-left h3 a {
  color: #212529;
}

.cart-drawer-item-main-flex-left span {
  color: #a1a1a1;
  font-size: 13px;
  margin-top: 4px;
  display: block;
}

.cart-drawer-item-main-flex-right span {
  font-weight: 500;
  color: #212529;
  font-size: 14px;
}

.cart-drawer-item-main-flex-left .cart-drawer-quantity-selector {
  border: 1px solid #DCDCDC;
  border-radius: 3px;
}

.cart-drawer-quantity-selector {
  display: inline-flex;
  margin-top: 10px;
}

.cart-drawer-quantity-selector button {
  width: 2rem;
  flex-shrink: 0;
  font-size: 1.2rem;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--color-foreground));
}

.cart-drawer-quantity-selector button svg {
  width: 12px;
}

.cart-drawer-quantity-selector input {
  width: 40px;
  font-size: 13px;
  text-align: center;
  line-height: 20px;
  border: none;
}

.cart-drawer-footer {
  padding: 24px;
  margin-top: auto;
  border-top: 1px solid #e7e7e7;
}

.cart-drawer-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.cart-drawer-footer-row:last-of-type {
  margin-bottom: 16px;
}

.cart-drawer-footer-row h3 {
  font-family: var(--font-heading-family);
  font-weight: 400;
  color: #525252;
  font-size: 14px;
}

.cart-drawer-footer-row span {
  font-weight: 500;
  color: #212529;
  font-size: 14px;
}

.cart-drawer-button {
  text-align: center;
  display: block;
  width: 100%;
  font-weight: 500;
  background-color: #212529;
  color: #fff;
  line-height: 46px;
  font-size: 16px;
  border-radius: 6px;
}

.cart-drawer-empty {
  margin: auto;
  color: #212529;
}



/* .free-shipping-progress */

.cart-free-shipping {
  margin: 20px 0;
  text-align: center;
  font-family: Arial, sans-serif;
}

.free-shipping-message {
  color: #000;
  font-size: 16px;
  margin-bottom: 10px;
}

.free-shipping-progress {
  color: #000;
  font-size: 14px;
  margin-bottom: 10px;
}

.progress-bar-cart-drawer {
  background: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
  height: 8px;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.progress-cart-drawer {
  background: #000 !important;
  height: 100%;
  transition: width 0.3s ease;
}


/* modal  */


.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 5px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.modal .close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 20px;
}

.hidden {
  display: none;
}

.modal-content h2 {
  margin-top: 0;
  font-family: var(--font-heading-family);
  font-weight: bold;
  padding: 5px;
}

<style>.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: white;
  padding: 30px;
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
  position: relative;
}

.modal-content h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.modal-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 20px;
}

.modal-content label {
  display: block;
  font-size: 12px;
  color: #999;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
  font-family: Arial, sans-serif;
}

.modal-content textarea {
  resize: none;
  height: 80px;
}

.modal-content .btn {
  display: block;
  width: 100%;
  background-color: var(--color-off-black);
  color: white;
  text-align: center;
  margin-top: 2px;
  padding: 12px;
  border: none;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
}

.upsell-details-content .modal-content .btn:hover {
  background-color: #333;
}

.modal-content .gift-bag-options {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
}

.modal-content .gift-bag-option {
  text-align: center;
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.modal-content .gift-bag-option p {
  margin: 0;
}



.gift-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
}

.gift-option {
  display: flex;
  font-family: var(--font-heading-family);
  align-items: center;
  font-size: 12px;
  cursor: pointer;
}

.gift-option input[type="checkbox"] {
  margin-right: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

[type=checkbox]:checked,
[type=radio]:checked {
  border-color: transparent;
  background-color: #000;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

[type=checkbox]:checked:hover,
[type=checkbox]:checked:focus,
[type=radio]:checked:hover,
[type=radio]:checked:focus {
  border-color: transparent;
  background-color: #000;
}

.gift-bag-option button.cart-drawer-quantity-selector.button {
  font-size: 12px;
  font-weight: bold;
}

.optional-msj {
  text-transform: uppercase;
  font-weight: bold;
}


/* slider */

.upsell-section {
  text-align: left;
  margin-top: 20px;
  padding: 24px;
  background: #fff;

}

.upsell-title {
  font-size: 16px;
  margin-bottom: 10px;
  font-family: var(--font-heading-family);
}

.upsell-slider {
  display: flex;
  align-items: center;
  overflow-x: hidden;
  gap: 15px;
  padding: 10px;
}

.upsell-product {
  flex: 0 0 auto;
  width: 300px;
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  background: #fff;
  min-height: 179px;
  display: flex;
  flex-direction: column;
}

.upsell-product form {
  margin-top: auto;
}

.upsell-details {
  display: flex;

}

.upsell-details-content {
  align-content: center;
  padding: 10px;
  text-align: left;
}


.upsell-product-title {
  font-size: 16px;
}

.upsell-product-price {
  font-size: 14px;
}

.original-price {
  text-decoration: line-through;
  color: grey;
}

.discount-price {
  color: red;
}

.upsell-add-to-cart {
  background: var(--color-off-black);
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  ;
}

.swiper.upsell-slider .swiper-button-next::after,
.swiper-button-prev::after {
  font-family: swiper-icons;
  font-size: 15px !important;
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
  color: #000;
  font-weight: 600;
}

.swiper.upsell-slider .swiper-button-prev {
  left: 20px;
}

.swiper.upsell-slider div:empty {
  display: block;
}
 square-placement #placement-1738955046643{
  display: none !important;
}