/* ══ cart.css · O-Vié Global Smart Cart ═══════════════ */
.ovie-cart-lang-es, .ovie-cart-lang-en { display: none; }
html[lang="en"] .ovie-cart-lang-en { display: inline; }
html:not([lang="en"]) .ovie-cart-lang-es { display: inline; }

.ovie-cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 1190;
  background: rgba(0, 3, 12, 0.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.ovie-cart-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.ovie-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(460px, 100vw);
  height: 100vh;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  color: rgba(240,230,210,0.94);
  background:
    radial-gradient(circle at 50% 0%, rgba(75,144,220,0.16), transparent 36%),
    linear-gradient(180deg, rgba(7,22,52,0.98), rgba(0,3,12,0.99));
  border-left: 1px solid rgba(240,230,210,0.20);
  box-shadow: -28px 0 80px rgba(0,0,0,0.56);
  transform: translateX(104%);
  transition: transform 0.42s cubic-bezier(.22,.8,.2,1);
  overflow: hidden;
}
.ovie-cart-drawer.is-open { transform: translateX(0); }
.ovie-cart-drawer::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(240,230,210,0.06);
  pointer-events: none;
}
.ovie-cart-head,
.ovie-cart-foot {
  position: relative;
  z-index: 1;
  padding: 24px 24px 22px;
  background: rgba(0,3,12,0.18);
}
.ovie-cart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(240,230,210,0.12);
}
.ovie-cart-eyebrow {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(201,168,112,0.82);
  margin-bottom: 8px;
}
.ovie-cart-head h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 36px;
  line-height: 1;
}
.ovie-cart-close {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(240,230,210,0.24);
  border-radius: 50%;
  color: rgba(240,230,210,0.92);
  background: rgba(255,255,255,0.03);
  font-size: 28px;
  line-height: 34px;
  cursor: pointer;
  transition: background 0.24s ease, border-color 0.24s ease;
}
.ovie-cart-close:hover {
  background: rgba(240,230,210,0.08);
  border-color: rgba(240,230,210,0.52);
}
.ovie-cart-body {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 18px 20px 20px;
}
.ovie-cart-empty {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 34px 18px;
  border: 1px solid rgba(240,230,210,0.12);
  background: rgba(255,255,255,0.025);
}
.ovie-cart-empty.is-hidden { display: none; }
.ovie-cart-empty-mark {
  font-size: 26px;
  color: rgba(201,168,112,0.90);
  margin-bottom: 14px;
}
.ovie-cart-empty strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
}
.ovie-cart-empty p,
.ovie-cart-note,
.ovie-cart-offer p,
.ovie-cart-item-meta {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.55;
  color: rgba(240,230,210,0.58);
}
.ovie-cart-empty p { max-width: 270px; margin: 10px auto 0; font-size: 13px; }
.ovie-cart-list {
  display: grid;
  gap: 12px;
}
.ovie-cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(240,230,210,0.12);
  background: rgba(255,255,255,0.035);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.ovie-cart-thumb {
  position: relative;
  width: 72px;
  height: 72px;
  overflow: hidden;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(240,230,210,0.10);
}
.ovie-cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ovie-cart-item-title {
  margin: 0 0 5px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.1;
  color: rgba(240,230,210,0.96);
}
.ovie-cart-item-meta { margin: 0; font-size: 11px; text-transform: uppercase; }
.ovie-cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.ovie-cart-price {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 13px;
  color: rgba(240,230,210,0.88);
  white-space: nowrap;
}

.ovie-cart-qty {
  display: grid;
  grid-template-columns: 30px 34px 30px;
  align-items: center;
  min-width: 94px;
  border: 1px solid rgba(240,230,210,0.18);
  background: rgba(0,0,0,0.20);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035);
}
.ovie-cart-qty-btn {
  height: 30px;
  border: 0;
  background: transparent;
  color: rgba(240,230,210,0.86);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease;
}
.ovie-cart-qty-btn:hover {
  background: rgba(240,230,210,0.08);
  color: rgba(255,249,234,1);
}
.ovie-cart-qty-value {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  border-left: 1px solid rgba(240,230,210,0.10);
  border-right: 1px solid rgba(240,230,210,0.10);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,249,234,0.96);
}
.ovie-cart-remove {
  border: 0;
  background: transparent;
  color: rgba(240,230,210,0.48);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
}
.ovie-cart-remove:hover { color: rgba(240,230,210,0.92); }
.ovie-cart-offer {
  display: none;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(201,168,112,0.30);
  background:
    linear-gradient(135deg, rgba(201,168,112,0.10), rgba(255,255,255,0.025)),
    rgba(0,0,0,0.18);
  box-shadow: 0 18px 42px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.06);
}
.ovie-cart-offer.is-visible { display: block; }
.ovie-cart-offer-badge {
  display: inline-flex;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(201,168,112,0.96);
  margin-bottom: 10px;
}
.ovie-cart-offer h3 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 1.05;
  color: rgba(240,230,210,0.98);
}
.ovie-cart-offer p { margin: 10px 0 0; font-size: 13px; }
.ovie-cart-offer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.ovie-cart-mini-btn {
  border: 1px solid rgba(240,230,210,0.30);
  background: transparent;
  color: rgba(240,230,210,0.92);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 12px 14px;
  cursor: pointer;
  transition: background 0.24s ease, border-color 0.24s ease;
}
.ovie-cart-mini-btn:hover {
  background: rgba(240,230,210,0.08);
  border-color: rgba(240,230,210,0.62);
}
.ovie-cart-mini-btn--gold {
  color: rgba(255,245,220,0.98);
  border-color: rgba(201,168,112,0.62);
  background: rgba(201,168,112,0.12);
}
.ovie-cart-pack-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 15px;
}
.ovie-cart-pack-slot {
  min-height: 58px;
  border: 1px solid rgba(240,230,210,0.16);
  background: rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 0.08em;
  line-height: 1.25;
  color: rgba(240,230,210,0.48);
}
.ovie-cart-pack-slot.is-filled {
  color: rgba(240,230,210,0.92);
  border-color: rgba(201,168,112,0.42);
  background: rgba(201,168,112,0.09);
}
.ovie-cart-fragrance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}
.ovie-cart-fragrance-btn {
  border: 1px solid rgba(240,230,210,0.16);
  background: rgba(255,255,255,0.025);
  color: rgba(240,230,210,0.76);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 8px;
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}
.ovie-cart-fragrance-btn:hover:not(:disabled) {
  background: rgba(240,230,210,0.08);
  border-color: rgba(240,230,210,0.44);
  color: rgba(240,230,210,0.96);
}
.ovie-cart-fragrance-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.ovie-cart-shipping {
  margin-bottom: 16px;
  padding: 14px 14px 13px;
  border: 1px solid rgba(240,230,210,0.13);
  background:
    linear-gradient(135deg, rgba(201,168,112,0.08), rgba(255,255,255,0.022)),
    rgba(0,0,0,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.045);
}
.ovie-cart-shipping-copy {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.45;
  color: rgba(240,230,210,0.72);
}
.ovie-cart-shipping.is-unlocked .ovie-cart-shipping-copy {
  color: rgba(243,229,195,0.98);
}
.ovie-cart-shipping-track {
  position: relative;
  height: 6px;
  overflow: hidden;
  margin-top: 11px;
  border: 1px solid rgba(240,230,210,0.12);
  background: rgba(0,0,0,0.28);
}
.ovie-cart-shipping-fill {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, rgba(201,168,112,0.42), rgba(243,229,195,0.86));
  box-shadow: 0 0 18px rgba(201,168,112,0.30);
  transition: width 0.35s ease;
}
.ovie-cart-shipping.is-unlocked .ovie-cart-shipping-fill {
  background: linear-gradient(90deg, rgba(201,168,112,0.68), rgba(255,248,226,0.98));
  box-shadow: 0 0 22px rgba(201,168,112,0.46);
}
.ovie-cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(240,230,210,0.62);
}
.ovie-cart-summary-row strong {
  font-size: 18px;
  letter-spacing: 0.06em;
  color: rgba(240,230,210,0.96);
}
.ovie-cart-note {
  margin: 12px 0 16px;
  font-size: 11px;
}
.ovie-cart-checkout {
  width: 100%;
  border: 1px solid rgba(201,168,112,0.70);
  background: linear-gradient(135deg, rgba(201,168,112,0.28), rgba(240,230,210,0.10));
  color: rgba(255,249,234,0.98);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 16px 18px;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  position: relative;
  overflow: hidden;
  animation: ovieCartPulse 4s ease-in-out infinite;
}
.ovie-cart-checkout::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(105deg, transparent 20%, rgba(201,168,112,0.32) 50%, transparent 80%);
  transform: skewX(-10deg);
  animation: ovieCartSheen 4s ease-in-out infinite;
  pointer-events: none;
}
.ovie-cart-checkout:hover {
  transform: translateY(-1px);
  border-color: rgba(240,230,210,0.88);
  background: linear-gradient(135deg, rgba(201,168,112,0.38), rgba(240,230,210,0.14));
}
.ovie-cart-checkout:hover::after { display: none; }
.ovie-cart-checkout:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  animation: none;
}
.ovie-cart-checkout:disabled::after { display: none; }
@keyframes ovieCartPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(201,168,112,0); }
  50% { box-shadow: 0 0 22px rgba(201,168,112,0.26); }
}
@keyframes ovieCartSheen {
  0% { left: -80%; opacity: 0; }
  18% { opacity: 1; }
  42% { left: 125%; opacity: 0; }
  100% { left: 125%; opacity: 0; }
}



@media (max-width: 480px) {
  .ovie-cart-head,
  .ovie-cart-foot { padding-left: 18px; padding-right: 18px; }
  .ovie-cart-body { padding-left: 14px; padding-right: 14px; }
  .ovie-cart-item { grid-template-columns: 62px 1fr; }
  .ovie-cart-thumb { width: 62px; height: 62px; }
  .ovie-cart-item-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .ovie-cart-pack-slots { grid-template-columns: repeat(2, 1fr); }
}
