/** Shopify CDN: Minification failed

Line 340:10 Unexpected ".666667\\%\\]"

**/
/* Custom Cart Drawer Styles (Replace UpCart) */

.custom-cart-drawer-container {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0.3s ease;
}

.custom-cart-drawer-container[aria-hidden="false"] {
  visibility: visible;
  pointer-events: auto;
}

/* Overlay Backdrop */
.custom-cart-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: auto;
}

.custom-cart-drawer-container[aria-hidden="false"] .custom-cart-drawer__overlay {
  opacity: 1;
}

/* Drawer Box */
.custom-cart-drawer__wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background: var(--color-background, #ffffff);
  box-shadow: -4px 0 25px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 2;
}

.custom-cart-drawer-container[aria-hidden="false"] .custom-cart-drawer__wrapper {
  transform: translateX(0);
}

/* Header */
.custom-cart-drawer__header {
  padding: 8px 16px;
  border-bottom: 1px solid rgba(var(--color-foreground-rgb), 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-cart-drawer__title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-heading--family), serif;
  color: var(--color-foreground, #222222);
}

.custom-cart-drawer__count-bubble {
  font-weight: 500;
  opacity: 0.65;
}

.custom-cart-drawer__close-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-foreground, #222222);
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.7;
}

.custom-cart-drawer__close-btn:hover {
  transform: scale(1.1);
  opacity: 1;
}

/* Scrollable Body */
.custom-cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  scrollbar-width: thin;
}

.custom-cart-drawer__body::-webkit-scrollbar {
  width: 4px;
}

.custom-cart-drawer__body::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
}

/* Empty State */
.custom-cart-drawer__empty-state {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
}

.empty-state__icon {
  margin-bottom: 20px;
  color: rgba(var(--color-foreground-rgb), 0.3);
  animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.empty-state__text {
  font-size: 16px;
  color: rgba(var(--color-foreground-rgb), 0.6);
  margin: 0 0 24px 0;
}

.custom-cart-drawer__continue-shopping {
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
}

/* 1. Offer Strip Carousel */
.custom-cart-drawer__offer-strip {
  background: #713104;
  /* Matches exact brown in progress bar fill */
  color: #FAF8F6;
  padding: 8px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.offer-strip__arrow {
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.offer-strip__arrow:hover {
  opacity: 1;
}

.offer-strip__slides {
  flex: 1;
  overflow: hidden;
  height: 18px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-strip__slide {
  position: absolute;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
}

.offer-strip__slide.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* 2. Offer Progress Bar Section */
.custom-cart-drawer__progress-section {
  padding: 20px 24px 15px 24px;
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
}

/* Tailwind w4- compatibility classes */
.w4-relative {
  position: relative;
}

.w4-w-full {
  width: 100%;
}

.w4-absolute {
  position: absolute;
}

.w4-inset-x-0 {
  left: 0;
  right: 0;
}

.w4-left-0 {
  left: 0;
}

.w4-right-0 {
  right: 0;
}

.w4-bottom-0 {
  bottom: 0;
}

.w4-top-0 {
  top: 0px !important;
}

.w4-top-\[-8px\] {
  top: -8px;
}

.w4-top-\[12px\] {
  top: 12px;
}

.w4-top-\[42px\] {
  top: 42px;
}

.w4-z-50 {
  z-index: 50;
}

.w4-translate-y-\[calc\(-50\%\)\] {
  transform: translateY(-50%);
}

.w4-flex {
  display: flex;
}

.w4-flex-col {
  flex-direction: column;
}

.w4-gap-\[3px\] {
  gap: 3px;
}

.w4-items-center {
  align-items: center;
}

.w4-justify-center {
  justify-content: center;
}

.w4-max-h-\[36px\] {
  max-height: 36px;
}

.w4-max-w-\[36px\] {
  max-width: 36px;
}

.w4-p-\[8px\] {
  padding: 8px;
}

.w4-rounded-full {
  border-radius: 9999px;
}

.w4-inline-block {
  display: inline-block;
}

.w4-w-\[20px\] {
  width: 20px;
}

.w4-h-\[20px\] {
  height: 20px;
}

.w4-leading-\[12px\] {
  line-height: 12px;
}

.w4-text-center {
  text-align: center;
}

.w4-text-wrap {
  white-space: normal;
}

.w4-w-\[91.666667\%\] {
  width: 91.666667%;
}

.w4-grid {
  display: grid;
}

.w4-p-\[16px\] {
  padding: 16px;
}

.w4-rounded-b-xl {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.w4-grow {
  flex-grow: 1;
}

.w4-min-w-0 {
  min-width: 0;
}

.w4-outline-none {
  outline: none;
}

.w4-font-semibold {
  font-weight: 600;
}

.w4-flex-shrink-0 {
  flex-shrink: 0;
}

.w4-gap-\[8px\] {
  gap: 8px;
}

.w4-gap-\[4px\] {
  gap: 4px;
}

/* 3. Cart Items List */
.custom-cart-drawer__items {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.custom-cart-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
  align-items: center;
  position: relative;
}

.custom-cart-item__image-wrap {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  border: none;
  border-radius: 0px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-cart-item__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.custom-cart-item__details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 90px;
}

.custom-cart-item__top-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
  padding-right: 25px;
  /* Leave space for remove btn */
}

.custom-cart-item__title {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  color: #333333;
  text-transform: none;
  font-family: inherit;
}

.custom-cart-item__title a {
  text-decoration: none;
  color: inherit;
}

.custom-cart-item__title a:hover {
  text-decoration: underline;
}

.custom-cart-item__remove-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgba(var(--color-foreground-rgb), 0.4);
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.custom-cart-item__remove-btn:hover {
  color: #d32f2f;
}

.custom-cart-item__variant-title {
  font-size: 12px;
  color: rgba(var(--color-foreground-rgb), 0.5);
  margin-top: 2px;
}

.custom-cart-item__bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

/* Qty Selector */
.custom-cart-item__qty-selector {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e2e2e2;
  background: #ffffff;
  width: fit-content;
}

.qty-btn {
  background: transparent;
  border: none;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333333;
  transition: background 0.15s ease;
}

.qty-btn:hover {
  background: rgba(0, 0, 0, 0.03);
}

.qty-input {
  width: 35px;
  height: 30px;
  border: none;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  background: transparent;
  outline: none;
  margin: 0;
  padding: 0;
  color: #333333;
}

/* Item Prices */
.custom-cart-item__prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}

.custom-cart-item__price.final-price {
  font-size: 15px;
  font-weight: 700;
  color: #222222;
}

.custom-cart-item__price-saving {
  font-size: 13px;
  font-weight: 700;
  color: #00796B;
  /* Green color for savings */
  margin-top: 2px;
}

/* 4. You May Also Like (Cross-sells) */
.custom-cart-drawer__recommendations {
  border-top: 1px solid rgba(var(--color-foreground-rgb), 0.08);
  border-bottom: 1px solid rgba(var(--color-foreground-rgb), 0.08);
  background: rgba(var(--color-foreground-rgb), 0.01);
  padding: 20px;
}

.recommendations__title {
  margin: 0 0 12px 0;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-heading--family), serif;
  color: var(--color-foreground, #222222);
}

.recommendations__slider-wrapper {
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.recommendations__slider-wrapper::-webkit-scrollbar {
  display: none;
}

.recommendations__slider {
  display: flex;
  gap: 12px;
  width: max-content;
  padding: 4px 0;
}

.w4-snap-upsell-v2__multiple-card {
  width: 140px !important;
  border: 1px solid rgb(227, 227, 227) !important;
  background-color: rgb(255, 255, 255) !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 10px !important;
  flex-shrink: 0 !important;
  box-sizing: border-box !important;
  scroll-snap-align: start !important;
}

.w4-snap-upsell-v2__multiple-card__image {
  width: 100% !important;
  height: 110px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 8px !important;
  overflow: hidden !important;
}

.w4-snap-upsell-v2__multiple-card__image img {
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
}

.w4-snap-upsell-v2__multiple-card__title {
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
  height: 32px !important;
  overflow: hidden !important;
  margin: 0 0 6px 0 !important;
  color: rgb(48, 48, 48) !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  text-align: left !important;
}

.w4-snap-upsell-v2__multiple-card__prices {
  margin-bottom: 8px !important;
  text-align: left !important;
  width: 100% !important;
}

.w4-snap-upsell-v2__multiple-card__price {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: rgb(48, 48, 48) !important;
}

.w4-snap-upsell-v2__multiple-card__add {
  width: 100% !important;
  padding: 8px 0 !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: rgb(255, 255, 255) !important;
  background: rgb(113, 49, 4) !important;
  border-radius: 0px !important;
  border: none !important;
  cursor: pointer !important;
  text-transform: uppercase !important;
  transition: opacity 0.2s ease !important;
  text-align: center !important;
}

.w4-snap-upsell-v2__multiple-card__add:hover {
  opacity: 0.9 !important;
}

/* 5. Bottom section custom styling from PROGRESS-BAR.md */
.wizz-cart-footer-section {
  position: sticky;
  bottom: 0;
  z-index: 3;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
}

.wizz-discount-code-input {
  border-radius: 0px !important;
  background-color: rgb(255, 255, 255) !important;
  border: 1px solid rgb(227, 227, 227) !important;
  color: rgb(138, 138, 138) !important;
  font-size: 13px !important;
  padding: 10px 14px !important;
}

.wizz-discount-code-button {
  background: rgb(113, 49, 4) !important;
  color: rgb(255, 255, 255) !important;
  border-radius: 0px !important;
  border: none !important;
  padding: 10px 18px !important;
  cursor: pointer !important;
  font-size: 13px !important;
}

.w4-snap-order-summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid rgb(227, 227, 227);
  border-bottom: 1px solid rgb(227, 227, 227);
  margin: 8px 0;
}

.wizz-checkout-total-savings {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wizz-checkout-total-savings-title,
.wizz-checkout-total-savings-price {
  color: rgb(48, 48, 48) !important;
  font-size: 13px !important;
  margin: 0 !important;
}

.wizz-checkout-total-savings-price {
  font-weight: 500 !important;
}

.wizz-checkout-total-discounts {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wizz-checkout-total-discounts-title,
.wizz-checkout-total-discounts-price {
  font-size: 17px !important;
  font-weight: 650 !important;
  color: rgb(48, 48, 48) !important;
  margin: 0 !important;
}

/* Fastrr Pickrr BUY NOW button style overrides */
.custom-headless-checkout {
  background: rgb(113, 49, 4) !important;
  color: rgb(255, 255, 255) !important;
  border-radius: 50px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  min-height: 48px !important;
  border: none !important;
  padding: 0 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  overflow: hidden !important;
  cursor: pointer !important;
  font-family: inherit !important;
}

.custom-headless-checkout .sr-d-flex.flex-center {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  gap: 2px !important;
}

.custom-headless-checkout .sr-d-flex.full-width.flex-center {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  gap: 5px !important;
}

.custom-headless-checkout .sr-button-text-container {
  display: flex !important;
  align-items: center !important;
  white-space: nowrap !important;
}

.custom-headless-checkout .sr-checkout-visible2 {
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  color: #ffffff !important;
}

.custom-headless-checkout .sr-payment-icons {
  height: 18px !important;
  display: inline-block !important;
  vertical-align: middle !important;
  flex-shrink: 0 !important;
  padding-left: 0px !important;
}

.custom-headless-checkout.loading .sr-checkout-visible,
.custom-headless-checkout.loading .sr-checkout-visible2,
.custom-headless-checkout.sr-loading .sr-checkout-visible,
.custom-headless-checkout.sr-loading .sr-checkout-visible2,
.custom-headless-checkout.is-loading .sr-checkout-visible,
.custom-headless-checkout.is-loading .sr-checkout-visible2 {
  display: none !important;
}

.custom-headless-checkout .sr-brand-badge-container {
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
  position: absolute !important;
  bottom: 4px !important;
  left: 0 !important;
  right: 0 !important;
}

.custom-headless-checkout .sr-powered-by {
  display: flex !important;
  align-items: center !important;
  font-size: 9px !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

.custom-headless-checkout .sr-powered-by img {
  height: 9px !important;
  margin-left: 3px !important;
}

/* Continue Shopping */
.w4-snap-continue-shopping {
  text-align: center;
  margin: 8px 0 0 0 !important;
}

.wizz-continue-shopping-text {
  color: rgb(48, 48, 48) !important;
  cursor: pointer !important;
  font-size: 13px !important;
  text-decoration: underline !important;
}

/* Mobile Responsiveness */
@media screen and (max-width: 480px) {
  .custom-cart-drawer__wrapper {
    max-width: 100%;
  }

  .custom-headless-checkout .sr-checkout-visible2 {
    font-size: 12px !important;
  }
}