/* Cart Drawer 1 — luxury cream · classic RIGHT SLIDE */

.bsp-cart-drawer--1 {
  /* Colors come from Customizer inline vars — keep motion only here. */
  --bsp-cart-panel-closed: translateX(105%);
  --bsp-cart-panel-open: translateX(0);
  --bsp-cart-panel-duration: 0.48s;
  --bsp-cart-panel-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.bsp-cart-drawer--1 .bsp-cart-drawer__overlay {
  transition: opacity 0.45s ease;
  background: var(--bsp-cart-overlay);
}

.bsp-cart-drawer--1 .bsp-cart-drawer__panel {
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: min(100%, var(--bsp-cart-drawer-width, 440px));
  height: 100%;
  border-radius: 0;
  border-left: 1px solid rgba(26, 26, 26, 0.08);
  box-shadow: -18px 0 48px rgba(17, 24, 39, 0.14);
}

.bsp-cart-drawer--1 .bsp-cart-drawer__accent {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--bsp-cart-accent-line, #c4a574) 20%, var(--bsp-cart-accent, #1a1a1a) 50%, var(--bsp-cart-accent-line, #c4a574) 80%, transparent);
  flex-shrink: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.12s;
}

.bsp-cart-drawer--1.is-open .bsp-cart-drawer__accent {
  transform: scaleX(1);
}

.bsp-cart-drawer--1 .bsp-cart-drawer__title {
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 400;
}

.bsp-cart-drawer--1 .bsp-cart-drawer__btn {
  border-radius: 0;
  letter-spacing: 0.16em;
}

.bsp-cart-drawer--1.is-entering .bsp-cart-drawer__header {
  animation: bspCd1Header 0.45s ease both 0.08s;
}

.bsp-cart-drawer--1.is-entering .bsp-cart-drawer__shipping,
.bsp-cart-drawer--1.is-entering .bsp-cart-drawer__empty,
.bsp-cart-drawer--1.is-entering .bsp-cart-drawer__item,
.bsp-cart-drawer--1.is-entering .bsp-cart-drawer__summary,
.bsp-cart-drawer--1.is-entering .bsp-cart-drawer__actions {
  animation: bspCd1Rise 0.5s ease both;
}

.bsp-cart-drawer--1.is-entering .bsp-cart-drawer__shipping { animation-delay: 0.12s; }
.bsp-cart-drawer--1.is-entering .bsp-cart-drawer__empty { animation-delay: 0.16s; }
.bsp-cart-drawer--1.is-entering .bsp-cart-drawer__item:nth-child(1) { animation-delay: 0.16s; }
.bsp-cart-drawer--1.is-entering .bsp-cart-drawer__item:nth-child(2) { animation-delay: 0.22s; }
.bsp-cart-drawer--1.is-entering .bsp-cart-drawer__item:nth-child(3) { animation-delay: 0.28s; }
.bsp-cart-drawer--1.is-entering .bsp-cart-drawer__summary { animation-delay: 0.24s; }
.bsp-cart-drawer--1.is-entering .bsp-cart-drawer__actions { animation-delay: 0.3s; }

@keyframes bspCd1Header {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bspCd1Rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
