/** Shopify CDN: Minification failed

Line 58:2 Expected ":"
Line 59:2 Expected ":"
Line 60:2 Expected ":"
Line 61:2 Expected ":"
Line 62:2 Expected ":"
Line 63:2 Expected ":"
Line 64:2 Expected ":"
Line 65:2 Expected ":"

**/

/* ═══════════════════════════════════════════════
   CART DRAWER - CSS Variables & Core Styles
   ═══════════════════════════════════════════════ */
/* Section wrapper + custom element - нулев размер в документния поток */
/* Section wrapper + custom element - нулев размер в документния поток */
.cd-section-wrapper {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  display: block !important;
  z-index: 1000 !important;
}

cart-drawer, cart-drawer.drawer {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  display: block !important;
  height: 0 !important;
  width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  pointer-events: none !important;
  background: transparent !important;
  border: none !important;
}
/* Re-enable clicks only for the drawer panel */
.drawer__inner {
  pointer-events: auto;
}
#CartDrawer {
  height: 0;
  overflow: visible;
}

/* ── Overlay - controlled ONLY via JS, never via CSS class ── */
.cart-drawer__overlay {
  touch-action: none !important;
  position: fixed !important;
  inset: 0 !important;
  z-index: 998 !important;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  display: none; 
}
.cart-drawer__overlay.cd-overlay-open {
  display: block !important;
  opacity: 1;
  pointer-events: auto !important;
}

/* ── Drawer panel ── */
.drawer__inner {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
max-width: var(--cd-w) !important;
box-sizing: border-box !important;
  height: 100% !important;
  height: 100dvh !important;
  max-height: 100vh !important;
  z-index: 1000 !important;
  background: var(--cd-bg);
  color: var(--cd-text);
  display: flex !important;
  flex-direction: column !important;
  transform: translateX(100%) !important;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s ease !important;
  box-shadow: none !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
}
cart-drawer.active .drawer__inner,
cart-drawer.is-open .drawer__inner {
  transform: translateX(0) !important;
  box-shadow: -8px 0 40px rgba(0,0,0,0.18) !important;
}

/* ── Loading overlay ── */
.cd-loading {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.cd-loading.active { opacity: 1; pointer-events: auto; }
.cd-spinner {
  width: 34px; height: 34px;
  border: 3px solid rgba(0,0,0,0.1);
  border-top-color: var(--cd-accent);
  border-radius: 50%;
  animation: cd-spin 0.7s linear infinite;
}
@keyframes cd-spin { to { transform: rotate(360deg); } }

/* ── Header ── */
.cd-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--cd-border);
  flex-shrink: 0;
}
.cd-header h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
  color: var(--cd-text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cd-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cd-accent);
  color: var(--cd-accent-text);
  border-radius: 50%;
  width: 22px; height: 22px;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.cd-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--cd-text);
  display: flex;
  align-items: center;
  border-radius: 6px;
  transition: background 0.15s;
}
.cd-close-btn:hover { background: rgba(0,0,0,0.06); }
.cd-close-btn svg { width: 20px; height: 20px; }

/* ── Announcement Carousel ── */
.cd-announcement {
  display: flex;
  align-items: center;
  background: var(--cd-ann-bg);
  color: var(--cd-ann-text);
  min-height: 40px;
  padding: 0 8px;
  flex-shrink: 0;
  overflow: hidden;
}
.cd-ann-msgs {
  flex: 1;
  text-align: center;
  position: relative;
  height: 40px;
  overflow: hidden;
}
.cd-ann-msg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 0 6px;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}
.cd-ann-msg.active { opacity: 1; pointer-events: auto; }
.cd-ann-btn {
  background: none;
  border: none;
  color: var(--cd-ann-text);
  cursor: pointer;
  padding: 4px 6px;
  font-size: 2rem;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.15s;
  flex-shrink: 0;
}
.cd-ann-btn:hover { opacity: 1; }

/* ── Free Shipping Bar ── */
.cd-shipping-bar {
  padding: 10px 20px 12px;
  border-bottom: 1px solid var(--cd-border);
  flex-shrink: 0;
}
.cd-shipping-text {
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  margin: 0 0 8px;
  transition: color 0.4s;
}
.cd-bar-track {
  height: 7px;
  background: var(--cd-bar-bg);
  border-radius: 999px;
  overflow: hidden;
}
.cd-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(to right, var(--cd-bar-start), var(--cd-bar-end));
  width: 0%;
  transition: width 0.8s cubic-bezier(0.4,0,0.2,1);
}
.cd-bar-fill.reached { background: var(--cd-bar-end) !important; }

/* ── Scrollable area ── */
.cd-scroll-area {
  flex: 1 1 0%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.18) transparent;
  background: var(--cd-bg);
  position: relative;
  z-index: 1;
}
.cd-scroll-area > * { flex-shrink: 0; }
.cd-scroll-area::-webkit-scrollbar { width: 4px; }
.cd-scroll-area::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.14); border-radius: 2px; }

/* ── Empty state ── */
.cd-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 52px 24px;
  text-align: center;
  gap: 18px;
}
.cd-empty p {
  font-size: 1.5rem;
  color: rgba(0,0,0,0.45);
  margin: 0;
}
.cd-shop-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cd-accent);
  color: var(--cd-accent-text);
  border-radius: 10px;
  padding: 13px 26px;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}
.cd-shop-btn:hover { opacity: 0.9; transform: translateY(-2px); }

/* ── Cart items wrapper ── */
.cd-items-inner { padding: 0 16px; }

/* ── Single cart item ── */
.cd-item {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--cd-border);
  overflow: hidden;
  max-height: 190px;
  transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.35s ease;
}
.cd-item.cd-removing {
  max-height: 0 !important;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.cd-item__img {
  width: 56px; height: 56px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
}
.cd-item__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.cd-item__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cd-item__name {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cd-text);
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
  line-height: 1.25;
  word-break: break-word;
}
.cd-item__name:hover { text-decoration: underline; }
.cd-item__variant {
  font-size: 1.2rem;
  color: rgba(0,0,0,0.45);
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.cd-item__variant-name {
  font-size: 1.1rem;
  color: rgba(0,0,0,0.38);
  line-height: 1.3;
}
.cd-item__variant-val {
  font-size: 1.2rem;
  color: rgba(0,0,0,0.55);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

/* Easify option with an extra-fee modifier - visualised as an amber
   chip so the customer immediately sees that this add-on contributes
   to the line total. Detected in Liquid by scanning the property
   value for `(+`, `+€`, `+ €`, `+лв`, etc. */
.cd-item__variant--has-fee {
  background: color-mix(in oklab, #FFA628 13%, transparent);
  border: 1px solid color-mix(in oklab, #FFA628 35%, transparent);
  border-radius: 999px;
  padding: 4px 10px;
  margin: 4px 0 2px;
  flex-direction: row !important;
  align-items: center;
  gap: 6px;
  width: fit-content;
  max-width: 100%;
}
.cd-item__variant--has-fee .cd-item__variant-name {
  color: #4A0F20 !important;
  font-weight: 600;
  font-size: 1.05rem;
}
.cd-item__variant--has-fee .cd-item__variant-val {
  color: #4A0F20 !important;
  font-weight: 700;
  font-size: 1.1rem;
  max-width: 240px;
}
.cd-item__variant-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}
.cd-item__discounts {
  font-size: 1.15rem;
  color: #2dac5d;
  font-weight: 500;
}
.cd-item__opts-btn {
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--cd-accent);
  cursor: pointer;
  padding: 1px 0;
  font-family: inherit;
  text-align: left;
}
.cd-item__opts-btn:hover { text-decoration: underline; }
.cd-item__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 6px;
}

/* Quantity input */
.quantity.cd-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--cd-border);
  border-radius: 8px;
  overflow: hidden;
  height: 32px;
}
.cd-qty .quantity__button {
  width: 30px; height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, transform 0.12s;
  color: var(--cd-text);
  flex-shrink: 0;
}
.cd-qty .quantity__button:hover { background: rgba(0,0,0,0.05); }
.cd-qty .quantity__button:active { transform: scale(0.8); }
.cd-qty .quantity__input {
  width: 34px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--cd-border);
  border-right: 1px solid var(--cd-border);
  font-size: 1.3rem;
  font-weight: 700;
  background: none;
  color: var(--cd-text);
  -moz-appearance: textfield;
  padding: 0;
}
.cd-qty .quantity__input::-webkit-outer-spin-button,
.cd-qty .quantity__input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* Price */
.cd-item__price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
}
.cd-item__price-final {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cd-text);
}
.cd-item__price-old {
  font-size: 1.2rem;
  text-decoration: line-through;
  color: rgba(0,0,0,0.38);
}

/* Remove button */
.cd-item__remove {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  transition: color 0.2s;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 1px;
}
.cd-item__remove:hover { color: #e53935; }
.cd-item__remove svg { width: 16px; height: 16px; }

/* Item error */
.cd-item__error {
  font-size: 1.1rem;
  color: #e53935;
  margin-top: 4px;
  min-height: 0;
}

/* ── Order Note quick button (above checkout) ── */
.cd-note-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 4px auto 10px;
  padding: 9px 16px;
  background: rgba(74, 15, 32, .04);
  border: 1px dashed rgba(74, 15, 32, .35);
  border-radius: 999px;
  color: #4A0F20;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, transform .12s ease;
  width: auto;
  max-width: 100%;
}
.cd-note-btn:hover {
  background: rgba(74, 15, 32, .08);
  border-color: rgba(74, 15, 32, .55);
}
.cd-note-btn:active { transform: scale(.98); }
.cd-note-btn.has-note {
  background: rgba(229, 161, 0, .12);
  border-color: rgba(229, 161, 0, .55);
  border-style: solid;
  color: #6B1E32;
}
.cd-note-btn.has-note .cd-note-btn__label { font-weight: 700; }
.cd-note-btn svg { flex: 0 0 auto; }
/* Wrap the note button in a centered row */
/* Бутонът е преместен в Econt модала (wep-note-open го .click()-ва) -
   скрит тук, но остава в DOM, за да работи модалът. */
.cd-footer .cd-note-btn { display: none !important; }

/* ── Order Note Modal ── */
.cd-note-modal {
  position: fixed;
  inset: 0;
  z-index: 100002; /* над Econt picker модала (99999) */
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none; /* ignore clicks while hidden */
}
.cd-note-modal[aria-hidden="false"] { display: flex; pointer-events: auto; }
.cd-note-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(36, 22, 17, .55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  pointer-events: auto;
  cursor: pointer;
}
.cd-note-modal__panel {
  position: relative;
  background: #FAF3E7;
  border-radius: 16px;
  padding: 28px 24px 22px;
  max-width: 460px;
  width: 100%;
  box-shadow: 0 30px 60px -20px rgba(74, 15, 32, .45);
  animation: cd-note-modal-in .18s ease-out;
  pointer-events: auto;
}
.cd-note-modal__panel * { pointer-events: auto; }
@keyframes cd-note-modal-in {
  from { transform: translateY(8px) scale(.98); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cd-note-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  font-size: 26px;
  color: #6B1E32;
  cursor: pointer;
  line-height: 1;
}
.cd-note-modal__close:hover { color: #4A0F20; }
.cd-note-modal__title {
  margin: 0 0 4px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: #4A0F20;
  letter-spacing: -.01em;
}
.cd-note-modal__hint {
  margin: 0 0 14px;
  font-size: 12.5px;
  color: #5A4742;
  line-height: 1.5;
  font-style: italic;
}
.cd-note-modal__textarea {
  width: 100%;
  box-sizing: border-box;
  min-height: 120px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid rgba(107, 30, 50, .3);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.55;
  color: #241611;
  resize: vertical;
}
.cd-note-modal__textarea:focus {
  outline: none;
  border-color: #FFA628;
  box-shadow: 0 0 0 3px rgba(255, 166, 40, .25);
}
.cd-note-modal__actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cd-note-modal__btn {
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.cd-note-modal__btn--ghost {
  background: transparent;
  color: #6B1E32;
  border: 1px solid rgba(107, 30, 50, .3);
}
.cd-note-modal__btn--ghost:hover { background: rgba(107, 30, 50, .06); }
.cd-note-modal__btn--primary {
  background: #6B1E32;
  color: #FAF3E7;
}
.cd-note-modal__btn--primary:hover { background: #4A0F20; }
body.cd-note-modal-open { overflow: hidden; }

/* ── Legacy Order Note (collapsible - hidden, kept for back-compat) ── */
.cd-note {
  padding: 14px 16px;
  border-bottom: 1px solid var(--cd-border);
  /* Force the note to render at the very bottom of the scroll area on
     every viewport. Without this, mobile Safari occasionally re-flows
     the note into the middle (between items and bundle suggestions),
     pushing the upsells off-screen. `order: 99` only takes effect when
     the parent uses flex layout - harmless otherwise. */
  order: 99;
}
/* Sibling render order inside the drawer scroll area */
.cd-bundle    { order: -1; }
.cd-gift      { order: 2; }
.cd-recs      { order: 3; }
.cd-note-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cd-text);
  padding: 0;
  font-family: inherit;
  text-align: left;
}
.cd-note-toggle svg {
  width: 16px; height: 16px;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.cd-note-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.cd-note-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.cd-note-body.open { max-height: 130px; }
.cd-note-textarea {
  width: 100%;
  margin-top: 10px;
  padding: 10px 12px;
  border: 1px solid var(--cd-border);
  border-radius: 8px;
  font-size: 1.3rem;
  resize: none;
  height: 84px;
  background: rgba(0,0,0,0.02);
  color: var(--cd-text);
  font-family: inherit;
  transition: border-color 0.2s;
  box-sizing: border-box;
  display: block;
}
.cd-note-textarea:focus {
  outline: none;
  border-color: var(--cd-accent);
}

/* ── Free Gift ── */
.cd-gift {
  margin: 12px 16px;
  border: 1.5px solid var(--cd-accent);
  border-radius: var(--cd-radius);
  overflow: hidden;
}
.cd-gift-header {
  background: rgba(var(--cd-accent-rgb), 0.1);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.cd-gift-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cd-text);
  flex: 1;
  line-height: 1.3;
}
.cd-gift-nav {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}
.cd-gift-nav button {
  background: none;
  border: 1px solid var(--cd-border);
  border-radius: 4px;
  width: 24px; height: 24px;
  cursor: pointer;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cd-text);
  transition: background 0.15s;
}
.cd-gift-nav button:hover { background: rgba(0,0,0,0.05); }
.cd-gift-body {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
}
.cd-gift-img {
  width: 58px; height: 58px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
}
.cd-gift-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cd-gift-info { flex: 1; min-width: 0; }
.cd-gift-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cd-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cd-gift-price {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 3px;
}
.cd-gift-price-free {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cd-accent);
}
.cd-gift-price-old {
  font-size: 1.2rem;
  text-decoration: line-through;
  color: rgba(0,0,0,0.38);
}
.cd-claim-btn {
  background: var(--cd-text);
  color: var(--cd-bg);
  border: none;
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.15s;
  flex-shrink: 0;
  font-family: inherit;
}
.cd-claim-btn:hover { opacity: 0.8; transform: translateY(-1px); }
.cd-claim-btn:active { transform: translateY(0); }
.cd-claim-btn:disabled { opacity: 0.45; cursor: wait; transform: none; }

/* ── Recommendations ── */
.cd-recs {
  padding: 14px 16px;
  border-top: 1px solid var(--cd-border);
}
.cd-recs-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(0,0,0,0.45);
}
.cd-recs-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.cd-recs-scroll::-webkit-scrollbar { display: none; }
.cd-rec-card {
  flex-shrink: 0;
  width: 112px;
  background: rgba(0,0,0,0.03);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  transition: transform 0.15s;
}
.cd-rec-card > a {
  flex: 1 1 auto;
  min-height: 0;
}
.cd-rec-card:hover { transform: translateY(-2px); }
.cd-rec-card__img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #eee;
  display: block;
}
.cd-rec-card__body {
  padding: 7px 7px 3px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-height: 0;
}
.cd-rec-card__name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cd-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.25;
  min-height: 2.5em;
}
/* legacy - kept for compatibility, new cards use .cd-rec-price-wrap */
.cd-rec-card__price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cd-accent);
  margin-top: auto;
  padding-top: 4px;
}
.cd-rec-card__btn {
  margin: auto 6px 6px;
  background: #6B1E32;
  color: #FAF3E7;
  border: none;
  border-radius: 12px;
  padding: 8px 6px;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  width: calc(100% - 12px);
  flex-shrink: 0;
  align-self: stretch;
  box-shadow: 0 4px 12px rgba(74,15,32,.2);
  transition: background .2s, transform .15s;
  transition: opacity 0.2s;
  font-family: inherit;
  text-align: center;
}
.cd-rec-card__btn:hover { background: #4A0F20; transform: translateY(-1px); }
.cd-rec-card__btn:disabled { opacity: 0.5; cursor: wait; }

/* Rec card - image wrapper + discount badge */
.cd-rec-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f5f5f5;
}
.cd-rec-img-wrap img.cd-rec-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: auto;
}
.cd-rec-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #FFA628;
  color: #4A0F20;
  border-radius: 99px;
  padding: 4px 9px;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .02em;
  z-index: 2;
  line-height: 1.2;
  pointer-events: none;
  box-shadow: 0 4px 10px rgba(255,166,40,.4);
}
.cd-rec-save {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #6B1E32;
  color: #FAF3E7;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 99px;
  margin-top: 4px;
  align-self: flex-start;
  letter-spacing: .02em;
  box-shadow: 0 4px 10px rgba(74,15,32,.25);
  line-height: 1.2;
}
/* Next-button overlay on the recs scroll */
.cd-recs-wrap {
  position: relative;
}
.cd-recs-next {
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid #FFA628;
  background: #6B1E32;
  color: #FAF3E7;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 4px 12px -4px rgba(74,15,32,.45);
  transition: transform .15s;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}
.cd-recs-wrap.has-overflow .cd-recs-next {
  opacity: 1 !important;
  pointer-events: auto !important;
}
.cd-recs-next:hover { transform: translateY(-50%) scale(1.08); }
.cd-recs-next:active { transform: translateY(-50%) scale(.95); }
@media (max-width: 700px) {
  /* Touch swipe is more natural on mobile - hide the button */
  .cd-recs-wrap.has-overflow .cd-recs-next { display: none; }
}

/* Rec card - price row */
.cd-rec-price-wrap {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  padding-top: 4px;
}
.cd-rec-price-final {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cd-accent);
}
.cd-rec-price-old {
  font-size: 1.1rem;
  text-decoration: line-through;
  color: rgba(0,0,0,0.35);
}

/* Rec card - variant selector */
.cd-rec-select {
  width: 100%;
  border: 1px solid rgba(0,0,0,0.14);
  border-radius: 6px;
  padding: 5px 8px;
  font-size: 1.2rem;
  background: white;
  margin-top: 6px;
  cursor: pointer;
  color: var(--cd-text);
  font-family: inherit;
  appearance: auto;
}

/* Skeleton loader */
.cd-skeleton { display: flex; gap: 10px; }
.cd-skel-card {
  flex-shrink: 0;
  width: 128px; height: 185px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e4e4e4 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: cd-shimmer 1.5s infinite;
  border-radius: 10px;
}
@keyframes cd-shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

/* ── Footer (sticky) ── */
.cd-footer {
  flex-shrink: 0;
  background: var(--cd-bg);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.07);
  padding: 10px 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 2;
}

/* Savings breakdown */
.cd-savings {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(244,232,213,0.55);
  border: 1px solid rgba(107,30,50,0.10);
  border-radius: 7px;
  padding: 6px 9px;
}
.cd-bd-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  font-size: 1.15rem;
  line-height: 1.35;
  color: #4A0F20;
}
.cd-bd-row > span:first-child {
  flex: 1 1 auto;
  min-width: 0;
}
.cd-bd-row > span:last-child {
  flex: 0 0 auto;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}
.cd-bd-row--save {
  color: #2dac5d;
  font-weight: 600;
}
.cd-bd-row small {
  font-size: 0.85em;
  font-weight: 500;
  opacity: 0.75;
}
.cd-bd-row .cd-bd-name {
  display: inline-block;
  max-width: 110px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: bottom;
}
.cd-bd-head {
  font-weight: 700;
  border-bottom: 1px dashed rgba(107,30,50,0.18);
  padding-bottom: 3px;
  margin-bottom: 2px;
}
.cd-bd-mid {
  font-weight: 600;
  font-style: italic;
  opacity: 0.85;
  border-top: 1px dashed rgba(107,30,50,0.15);
  padding-top: 3px;
  margin-top: 2px;
}
.cd-bd-mid > span:last-child { font-style: normal; }

/* Footer discounts */
.cd-footer-discounts {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 1.2rem;
  color: #2dac5d;
  font-weight: 500;
}

/* Trust badges */
.cd-trust {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: nowrap;
}
.cd-trust-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1.1rem;
  color: rgba(0,0,0,0.4);
  font-weight: 500;
  white-space: nowrap;
}
.cd-trust-item svg { width: 12px; height: 12px; opacity: 0.55; flex-shrink: 0; }

/* Subtotal */
.cd-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.45rem;
  font-weight: 700;
}

/* Checkout button */
.cd-checkout-btn {
  display: block;
  width: 100%;
  background: var(--cd-accent);
  color: var(--cd-accent-text);
  border: none;
  border-radius: 10px;
  padding: 13px;
  font-size: 1.45rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  font-family: inherit;
  box-sizing: border-box;
}
.cd-checkout-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.cd-checkout-btn:active { transform: translateY(0); }
.cd-checkout-btn[disabled] { opacity: 0.5; pointer-events: none; }

/* Continue shopping */
.cd-continue {
  display: block;
  text-align: center;
  font-size: 1.25rem;
  color: var(--cd-text);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  transition: opacity 0.2s;
  padding: 2px 0;
}
.cd-continue:hover { opacity: 0.55; }

/* Discount code */
.cd-discount-wrap { display: flex; flex-direction: column; gap: 4px; }
.cd-discount-form {
  display: flex;
  gap: 6px;
  align-items: center;
}
.cd-discount-input {
  flex: 1;
  border: 1px solid var(--cd-border);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 1.3rem;
  background: none;
  color: var(--cd-text);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  min-width: 0;
}
.cd-discount-input:focus { border-color: var(--cd-accent); }
.cd-discount-btn {
  background: var(--cd-accent);
  color: var(--cd-accent-text);
  border: none;
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.cd-discount-btn:hover { opacity: 0.85; }
.cd-discount-btn:disabled { opacity: 0.5; cursor: wait; }
.cd-discount-msg {
  font-size: 1.2rem;
  font-weight: 500;
  min-height: 0;
  margin: 0;
  transition: color 0.2s;
}
.cd-discount-msg.ok  { color: #2dac5d; }
.cd-discount-msg.err { color: #e53935; }

/* Disclaimer */
.cd-disclaimer {
  font-size: 1.1rem;
  color: rgba(0,0,0,0.38);
  text-align: center;
  margin: 0;
  line-height: 1.3;
}

/* Screen reader only */
.cd-sr {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

@media (max-width: 767px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
  }
  :root { --cd-w: 100%; }
  .cd-trust { gap: 10px; }
  .cd-trust-item { font-size: 1.1rem; }
  
  .drawer__inner {
    top: 0 !important;
    bottom: 0 !important;
    height: auto !important; /* Разпъва се автоматично до ръбовете */
    max-height: none !important;
    left: 0 !important;
    right: 0 !important;
    border: none !important;
    background: var(--cd-bg) !important; /* Гарантира плътен цвят */
    overscroll-behavior: none !important; /* Убива скролването на фона */
  }
  
  .cd-scroll-area {
    overscroll-behavior: contain !important; /* Задържа скрола само в количката */
  }
  
  cart-drawer.active .drawer__inner,
  cart-drawer.is-open .drawer__inner {
    box-shadow: none !important;
  }

  .cd-footer {
    padding-bottom: max(12px, env(safe-area-inset-bottom)) !important;
  }
}
.cd-qty .quantity__input, 
.cd-note-textarea, 
.cd-discount-input {
  font-size: 16px !important;
}
cart-remove-button { 
  display: block !important; 
}
.cd-item__remove { 
  display: flex !important; 
  visibility: visible !important;
  opacity: 1 !important;
  min-width: 32px !important;
  min-height: 32px !important;
  justify-content: center;
}

/* ═══════════════════════════════════════════════
   WISHIFYY BRAND OVERRIDES - match v2 theme aesthetic
   Bordeaux · Amber · Cream · Cormorant + Inter
═══════════════════════════════════════════════ */

/* Brand typography */
cart-drawer, cart-drawer * {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
cart-drawer .cd-header h2,
cart-drawer .cd-totals-row .cd-totals-value,
cart-drawer .cd-gift-title,
cart-drawer .cd-recs-title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-weight: 500 !important;
  letter-spacing: -.005em;
}

/* Softer brand border + warmer radii */
cart-drawer { --cd-border: rgba(107,30,50,.12); --cd-radius: 14px; }

/* Header - amber accent underline like v2 */
.cd-header { border-bottom: 2px solid #FFA628 !important; padding: 18px 20px 14px !important; }
.cd-header h2 { font-size: 1.9rem !important; color: #4A0F20 !important; }
.cd-count-badge { background: #FFA628 !important; color: #4A0F20 !important; font-weight: 800 !important; }
.cd-close-btn { color: #4A0F20 !important; border-radius: 999px !important; }
.cd-close-btn:hover { background: rgba(107,30,50,.08) !important; }

/* Announcement - rotating bordeaux bar with amber indicator */
.cd-announcement { min-height: 42px !important; }
.cd-ann-msg { font-weight: 600 !important; letter-spacing: .01em; }

/* Free shipping bar - rounded + subtle brand glow */
.cd-shipping-bar { padding: 12px 20px 14px !important; }
.cd-shipping-text { color: #4A0F20 !important; font-weight: 700 !important; }
.cd-bar-track { height: 8px !important; box-shadow: inset 0 1px 0 rgba(0,0,0,.04); }
.cd-bar-fill { box-shadow: 0 0 8px rgba(255,166,40,.45); }

/* Cart items - cream card feel, amber price accents */
.cd-item { border-bottom: 1px dashed rgba(107,30,50,.16) !important; padding: 16px 0 !important; }
.cd-item__img { border-radius: 10px !important; background: #F4E8D5 !important; }
.cd-item__name { color: #2a1a1d !important; font-weight: 600 !important; }
.cd-item__name:hover { color: #6B1E32 !important; text-decoration: none !important; }
.cd-item__price-now,
.cd-total-value,
.cd-item__total { color: #4A0F20 !important; font-weight: 800 !important; }
.cd-item__price-was { color: rgba(107,30,50,.55) !important; }

/* Quantity - bordeaux tint hover */
.quantity.cd-qty { border: 1px solid rgba(107,30,50,.2) !important; border-radius: 10px !important; }
.cd-qty .quantity__button { color: #6B1E32 !important; font-weight: 700; }
.cd-qty .quantity__button:hover { background: rgba(255,166,40,.15) !important; color: #4A0F20 !important; }

/* Remove button - red on hover */
.cd-item__remove { color: rgba(107,30,50,.45) !important; transition: color .18s; }
.cd-item__remove:hover { color: #c34040 !important; }

/* Checkout button - matches v2 hero CTAs */
.cd-checkout-btn {
  border-radius: 12px !important;
  font-weight: 800 !important;
  letter-spacing: .01em;
  box-shadow: 0 6px 18px rgba(74,15,32,.3), 0 1px 0 rgba(255,255,255,.15) inset !important;
  transition: transform .2s, box-shadow .2s !important;
}
.cd-checkout-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(74,15,32,.4), 0 1px 0 rgba(255,255,255,.2) inset !important; }

/* Shop more button (empty state) - bordeaux primary */
.cd-shop-btn { background: #6B1E32 !important; color: #FBF7F2 !important; border-radius: 12px !important; }
.cd-shop-btn:hover { background: #4A0F20 !important; transform: translateY(-2px); }

/* Trust badges / totals row */
.cd-totals-row { font-weight: 700; color: #4A0F20 !important; }
.cd-trust-badges { padding: 10px 0 !important; color: rgba(42,26,29,.65) !important; }
.cd-trust-badge { gap: 6px; }
.cd-trust-badge svg { color: #4C9A5E; }

/* Gift section - amber tinted card */
.cd-gift-card,
.cd-gift {
  background: linear-gradient(135deg, rgba(255,166,40,.12), rgba(255,166,40,.05)) !important;
  border: 1px solid rgba(255,166,40,.35) !important;
  border-radius: 12px !important;
}
.cd-gift-title { color: #4A0F20 !important; }
.cd-gift-claim-btn { background: #FFA628 !important; color: #4A0F20 !important; border-radius: 10px !important; font-weight: 800 !important; }
.cd-gift-claim-btn:hover { background: #FFB844 !important; }

/* Recommendations */
.cd-recs-title { color: #4A0F20 !important; }
.cd-rec-card { border-radius: 10px !important; }
.cd-rec-card:hover { transform: translateY(-2px); }

/* Order note */
.cd-note-label { color: #4A0F20 !important; font-weight: 600 !important; }
.cd-note-textarea {
  border: 1px solid rgba(107,30,50,.18) !important;
  border-radius: 10px !important;
  background: #FBF7F2 !important;
}
.cd-note-textarea:focus {
  border-color: #6B1E32 !important;
  box-shadow: 0 0 0 3px rgba(107,30,50,.12) !important;
}

/* Disclaimer */
.cd-disclaimer { color: rgba(42,26,29,.5) !important; font-size: 1.1rem !important; font-style: italic; }

/* Footer - cream-warm background, compact */
.cd-footer {
  background: rgba(244,232,213,.5) !important;
  border-top: 1px solid rgba(107,30,50,.12) !important;
  padding: 8px 14px 10px !important;
  gap: 4px !important;
}
.cd-savings { padding: 6px 9px !important; border-radius: 7px !important; }
.cd-bd-row { font-size: 1.1rem !important; }
.cd-bd-head { padding-bottom: 2px !important; margin-bottom: 1px !important; }
.cd-subtotal { font-size: 1.35rem !important; padding: 2px 0 !important; }
.cd-checkout-btn { padding: 11px !important; font-size: 1.35rem !important; border-radius: 10px !important; margin-top: 2px; }
.cd-continue { font-size: 1.15rem !important; padding: 1px 0 !important; }

/* Cart items - compact */
.cd-item { padding: 8px 0 !important; max-height: 150px !important; gap: 9px !important; }
.cd-item__img { width: 48px !important; height: 48px !important; border-radius: 8px !important; }
.cd-item__name { font-size: 1.25rem !important; -webkit-line-clamp: 2; line-height: 1.2 !important; }
.cd-item__variant { font-size: 1.05rem !important; }
.cd-item__variant-val, .cd-item__variant-name { font-size: 1.05rem !important; max-width: 150px; }
.cd-item__row { padding-top: 4px !important; }
.quantity.cd-qty { height: 28px !important; border-radius: 8px !important; }
.cd-qty .quantity__button { width: 26px !important; height: 26px !important; font-size: 1.3rem !important; }
.cd-qty .quantity__input { width: 30px !important; font-size: 1.15rem !important; }
.cd-items-inner { padding: 0 14px !important; }
.cd-item__price-now, .cd-item__total { font-size: 1.25rem !important; }
.cd-item__price-was { font-size: 1.05rem !important; }

/* ═══════════════════════════════════════════════
   BUNDLE SUGGESTIONS - admin-configurable upsells
═══════════════════════════════════════════════ */
.cd-bundle {
  position: relative;
  margin: 8px 14px 10px;
  background: linear-gradient(135deg, rgba(255,166,40,.14) 0%, rgba(255,166,40,.05) 100%);
  border: 1px solid rgba(255,166,40,.38);
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(74,15,32,.05);
  animation: cdBundleIn .35s cubic-bezier(.25,.8,.25,1);
}
@keyframes cdBundleIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
.cd-bundle.is-dismissed { display: none; }
.cd-bundle-dismiss {
  position: absolute;
  top: 3px; right: 4px;
  width: 20px; height: 20px;
  border: 0;
  background: transparent;
  color: rgba(74,15,32,.45);
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  border-radius: 50%;
  transition: background .18s, color .18s;
  z-index: 2;
}
.cd-bundle-dismiss:hover { background: rgba(74,15,32,.1); color: #4A0F20; }

/* ── Компактна лента (~54px) ── */
.cd-bundle-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 26px 9px 10px;
  background: none;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  color: inherit;
  font-family: inherit;
  transition: background .18s;
}
.cd-bundle-strip:hover { background: rgba(255,166,40,.10); }
.cd-bundle-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  background: #FFA628;
  color: #2a1a1d;
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(255,166,40,.4);
  letter-spacing: -.02em;
}
.cd-bundle-thumbs { display: flex; align-items: center; flex-shrink: 0; }
.cd-bundle-thumb {
  width: 34px; height: 34px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(74,15,32,.14);
  background: #F4E8D5;
  flex-shrink: 0;
}
.cd-bundle-thumb + .cd-bundle-thumb { margin-left: -13px; }
.cd-bundle-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cd-bundle-more {
  margin-left: 5px;
  padding: 2px 6px;
  background: #FFA628;
  color: #2a1a1d;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
}
.cd-bundle-striptext { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.cd-bundle-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #4A0F20;
  line-height: 1.15;
  letter-spacing: -.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cd-bundle-savenote {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: rgba(42,26,29,.62);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cd-bundle-subname {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: rgba(42,26,29,.6);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Спестената сума - зелено, за да се хване окото веднага */
.cd-bundle-save {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #2E7D46;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: .005em;
}
.cd-bundle-chev {
  flex-shrink: 0;
  font-size: 22px;
  line-height: 1;
  color: rgba(74,15,32,.4);
  transition: transform .18s, color .18s;
}
.cd-bundle-strip:hover .cd-bundle-chev { transform: translateX(2px); color: #6B1E32; }
.cd-bundle-go {
  flex-shrink: 0;
  padding: 6px 12px;
  background: #6B1E32;
  color: #fff;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background .18s;
}
.cd-bundle-strip:hover .cd-bundle-go { background: #4A0F20; }

@media (max-width: 480px) {
  .cd-bundle { margin: 7px 12px 9px; }
  .cd-bundle-strip { gap: 8px; padding: 8px 24px 8px 9px; }
  .cd-bundle-thumb { width: 31px; height: 31px; }
  .cd-bundle-title { font-size: 1.4rem; }
  .cd-bundle-savenote { font-size: 1rem; }
}

/* ═══════════════════════════════════════════════
   FREE-AT-QTY - "Вземи X безплатно при N броя"
═══════════════════════════════════════════════ */
.cd-bxgy {
  position: relative;
  margin: 10px 16px 14px;
  padding: 14px 16px 14px;
  background: linear-gradient(135deg, rgba(76,154,94,.14) 0%, rgba(76,154,94,.04) 100%);
  border: 1px solid rgba(76,154,94,.38);
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(74,15,32,.06);
  animation: cdBundleIn .35s cubic-bezier(.25,.8,.25,1);
}
.cd-bxgy.is-reached {
  background: linear-gradient(135deg, rgba(255,166,40,.2) 0%, rgba(76,154,94,.1) 100%);
  border-color: rgba(255,166,40,.55);
  box-shadow: 0 5px 18px rgba(255,166,40,.2);
  animation: cdBundleIn .35s cubic-bezier(.25,.8,.25,1), cdBxgyGlow 2s ease-in-out infinite;
}
@keyframes cdBxgyGlow {
  0%, 100% { box-shadow: 0 5px 18px rgba(255,166,40,.2); }
  50%      { box-shadow: 0 6px 24px rgba(255,166,40,.4); }
}
.cd-bxgy.is-dismissed { display: none; }
.cd-bxgy-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding-right: 22px;
}
.cd-bxgy-icon {
  flex-shrink: 0;
  font-size: 24px;
  line-height: 1;
}
.cd-bxgy.is-reached .cd-bxgy-icon {
  animation: cdBxgyBounce 1.2s ease-in-out infinite;
}
@keyframes cdBxgyBounce {
  0%, 100% { transform: translateY(0) rotate(0); }
  25%      { transform: translateY(-3px) rotate(-8deg); }
  75%      { transform: translateY(-3px) rotate(8deg); }
}
.cd-bxgy-text { flex: 1; min-width: 0; }
.cd-bxgy-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.65rem;
  font-weight: 600;
  color: #2A5B35;
  line-height: 1.2;
  letter-spacing: -.005em;
}
.cd-bxgy.is-reached .cd-bxgy-title { color: #4A0F20; font-weight: 700; }
.cd-bxgy-sub {
  margin-top: 2px;
  font-size: 1.15rem;
  color: rgba(42,26,29,.7);
  line-height: 1.4;
}

.cd-bxgy-product {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: #ffffff;
  border: 1px solid rgba(107,30,50,.12);
  border-radius: 10px;
}
.cd-bxgy-img {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #F4E8D5;
}
.cd-bxgy-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cd-bxgy-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.cd-bxgy-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #2a1a1d;
  line-height: 1.25;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.cd-bxgy-price { display: flex; align-items: baseline; gap: 6px; }
.cd-bxgy-free {
  font-size: 1.3rem;
  font-weight: 800;
  color: #4C9A5E;
  letter-spacing: .02em;
}
.cd-bxgy-was {
  font-size: 1.05rem;
  color: rgba(107,30,50,.5);
  text-decoration: line-through;
}
.cd-bxgy-claim {
  flex-shrink: 0;
  padding: 9px 14px;
  background: #4C9A5E;
  color: #ffffff;
  border: 0;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: background .18s, transform .15s;
  box-shadow: 0 4px 10px rgba(76,154,94,.35);
}
.cd-bxgy-claim:hover { background: #3d7a49; transform: translateY(-1px); }
.cd-bxgy-claim:disabled { opacity: .6; cursor: wait; }
.cd-bxgy-progress {
  flex-shrink: 0;
  width: 60px;
  height: 6px;
  background: rgba(76,154,94,.15);
  border-radius: 999px;
  overflow: hidden;
}
.cd-bxgy-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #FFA628, #4C9A5E);
  border-radius: 999px;
  transition: width .5s cubic-bezier(.4,0,.2,1);
}

@media (max-width: 480px) {
  .cd-bxgy { margin: 8px 12px 12px; padding: 12px 14px; }
  .cd-bxgy-title { font-size: 1.5rem; }
  .cd-bxgy-product { padding: 7px 9px; gap: 8px; }
  .cd-bxgy-img { width: 44px; height: 44px; }
  .cd-bxgy-claim { padding: 8px 12px; font-size: 1.1rem; }
}


/* ═══ Stacked deck (4+ suggestions) ═══ */
.cd-bundle-deck {
  position: relative;
  width: 100%; height: 110px;
  margin: 6px 0 0;
  background: transparent;
  border: 1.5px dashed rgba(107,30,50,.18);
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 18px;
  transition: border-color .25s, background .25s;
}
.cd-bundle-deck:hover {
  border-color: #6B1E32;
  background: rgba(255,166,40,.06);
}
.cd-bundle-deck-count {
  position: absolute; top: -10px; right: 12px;
  background: #FFA628;
  color: #4A0F20;
  font-weight: 800;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 5;
  box-shadow: 0 4px 10px rgba(255,166,40,.4);
}
.cd-bundle-deck-card {
  position: absolute; top: 50%; left: 24px;
  width: 70px; height: 86px;
  background: #fff;
  border: 1px solid rgba(107,30,50,.15);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(74,15,32,.18);
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.cd-bundle-deck-card[data-deck-pos="1"] { transform: translate(0, -50%) rotate(-8deg); z-index: 1; }
.cd-bundle-deck-card[data-deck-pos="2"] { transform: translate(28px, -50%) rotate(0deg); z-index: 2; }
.cd-bundle-deck-card[data-deck-pos="3"] { transform: translate(56px, -50%) rotate(8deg); z-index: 3; }
.cd-bundle-deck:hover .cd-bundle-deck-card[data-deck-pos="1"] { transform: translate(-6px, -50%) rotate(-12deg); }
.cd-bundle-deck:hover .cd-bundle-deck-card[data-deck-pos="3"] { transform: translate(62px, -50%) rotate(12deg); }
.cd-bundle-deck-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cd-bundle-deck-cta {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #6B1E32;
  z-index: 5;
  background: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(74,15,32,.12);
  transition: background .2s, color .2s, transform .2s;
}
.cd-bundle-deck:hover .cd-bundle-deck-cta {
  background: #6B1E32;
  color: #FBF7F2;
  transform: translateX(2px);
}

/* ═══ Bundle modal - full-screen grid of all options ═══ */
.cd-bundle-modal {
  position: fixed; inset: 0; z-index: 10000;
  display: none;
  opacity: 0;
  align-items: center; justify-content: center;
  padding: 20px;
  transition: opacity .3s cubic-bezier(.22,1,.36,1);
}
.cd-bundle-modal.is-open { display: flex; opacity: 1; }
.cd-bundle-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(74,15,32,.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
}
.cd-bundle-modal-panel {
  position: relative;
  background: #FBF7F2;
  border-radius: 14px;
  width: 100%; max-width: 720px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 28px 24px 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
  transform: scale(.94) translateY(20px);
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.cd-bundle-modal.is-open .cd-bundle-modal-panel { transform: scale(1) translateY(0); }
.cd-bundle-modal-close {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #6B1E32;
  color: #FBF7F2;
  border: 0; cursor: pointer;
  display: grid; place-items: center;
  font-size: 20px; font-weight: 600;
  transition: transform .2s cubic-bezier(.34,1.56,.64,1), background .2s;
}
.cd-bundle-modal-close:hover { transform: scale(1.1) rotate(90deg); background: #4A0F20; }
.cd-bundle-modal-head {
  text-align: center;
  margin-bottom: 20px;
  padding: 0 32px;
}
.cd-bundle-modal-head h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  color: #4A0F20;
  margin: 0 0 6px;
  line-height: 1.1;
}
.cd-bundle-modal-head p {
  font-size: 14px;
  color: #6B1E32;
  margin: 0;
}
.cd-bundle-modal-head p b { color: #FFA628; font-weight: 800; }
.cd-bundle-modal-sub { font-size: 1.2rem; color: rgba(42,26,29,.7); line-height: 1.45; margin: 4px 0 2px; }
.cd-bundle-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  /* Extra room at the bottom so the last row isn't clipped when the modal
     renders inline inside the cart drawer (`.drawer__inner` has a transform
     which scopes our `position: fixed` to the drawer's height). Pushes the
     scrollable content past the panel's max-height so the last cards lift
     up into view as the customer scrolls. */
  padding-bottom: 240px;
}
.cd-bundle-modal-item {
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(107,30,50,.12);
  padding: 10px 10px 12px;
  display: flex; flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s, border-color .25s;
}
.cd-bundle-modal-item:hover {
  transform: translateY(-2px);
  border-color: #6B1E32;
  box-shadow: 0 8px 18px rgba(74,15,32,.12);
}
.cd-bundle-modal-item-img {
  aspect-ratio: 1;
  background: #F4E8D5;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 8px;
}
.cd-bundle-modal-item-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cd-bundle-modal-item-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #2a1a1d;
  line-height: 1.25;
  margin-bottom: 6px;
  flex: 1;
}
.cd-bundle-modal-item-price {
  display: flex; align-items: baseline; justify-content: space-between; gap: 6px;
}
.cd-bundle-modal-item-price span {
  font-size: 14px; font-weight: 800;
  color: #4A0F20;
}
.cd-bundle-modal-item-price small {
  font-size: 11px;
  color: #2dac5d;
  font-weight: 700;
  background: rgba(45,172,93,.12);
  padding: 2px 6px;
  border-radius: 4px;
}
.cd-bundle-modal-item-cta {
  display: block;
  margin-top: 8px;
  padding: 7px 10px;
  background: var(--wy-bordeaux, #6B1E32);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .02em;
  text-align: center;
  border-radius: 6px;
  transition: background .2s, transform .2s;
}
.cd-bundle-modal-item:hover .cd-bundle-modal-item-cta {
  background: var(--wy-bordeaux-deep, #4A0F20);
  transform: translateY(-1px);
}
@media (max-width: 480px) {
  .cd-bundle-modal-panel { padding: 22px 16px 18px; max-width: 100%; max-height: calc(100vh - 24px); }
  .cd-bundle-modal-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cd-bundle-modal-item { padding: 8px 8px 10px; }
  .cd-bundle-modal-item-cta { padding: 6px 8px; font-size: 11px; }
}
body.cd-bundle-modal-open { overflow: hidden; }
.cd-bundle-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid rgba(107,30,50,.18);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: border-color .18s, transform .15s, box-shadow .18s;
}
.cd-bundle-item:hover {
  border-color: #6B1E32;
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(74,15,32,.1);
}
.cd-bundle-img {
  width: 72px; height: 72px;
  flex-shrink: 0;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(74,15,32,.10);
  overflow: hidden;
  background: #F4E8D5;
}
.cd-bundle-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cd-bundle-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.cd-bundle-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.32rem;
  font-weight: 600;
  color: #2a1a1d;
  line-height: 1.25;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.cd-bundle-price { display: flex; align-items: baseline; gap: 6px; }
.cd-bundle-price-now {
  font-size: 1.45rem;
  font-weight: 800;
  color: #4A0F20;
}
.cd-bundle-pair-save {
  display: inline-block;
  background: rgba(45,172,93,.14);
  color: #2dac5d;
  font-weight: 700;
  font-size: 1.0rem;
  padding: 2px 7px;
  border-radius: 5px;
  margin-top: 2px;
  align-self: flex-start;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cd-bundle-price-was {
  font-size: 1.1rem;
  color: rgba(107,30,50,.5);
  text-decoration: line-through;
}
.cd-bundle-cta {
  flex-shrink: 0;
  padding: 9px 14px;
  background: #6B1E32;
  color: #ffffff;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background .18s;
}
.cd-bundle-item:hover .cd-bundle-cta { background: #4A0F20; }

@media (max-width: 480px) {
  .cd-bundle { margin: 8px 12px 12px; padding: 12px 14px 10px; }
  .cd-bundle-title { font-size: 1.55rem; }
  .cd-bundle-badge { font-size: 1.1rem; padding: 4px 8px; min-width: 40px; }
  .cd-bundle-item { padding: 8px 9px; gap: 10px; }
  .cd-bundle-img { width: 64px; height: 64px; }
  .cd-bundle-cta { padding: 6px 10px; font-size: 1.05rem; }
}