/** Shopify CDN: Minification failed

Line 1226:0 Unexpected "}"

**/
/* cart-drawer-volume.css */
/* ========================================
   VOLUME DISCOUNT CART DRAWER
   ======================================== */

:root {
  --drawer-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --overlay-transition: opacity 0.3s ease;
  --item-transition: all 0.2s ease;
  --header-height: 140px;
}

/* Volume Cart Drawer Container */
#cart-drawer-volume {
  position: fixed;
  top: var(--header-height, 140px);
  right: 0;
  width: var(--drawer-width, 380px);
  height: calc(100vh - var(--header-height, 140px));
  max-height: calc(100vh - var(--header-height, 140px));
  background: var(--drawer-bg, #f5f0f7);
  transform: translateX(100%);
  transition: var(--drawer-transition);
  z-index: 999;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

#cart-drawer-volume.open {
  transform: translateX(0);
}

/* Header del drawer - VISIBLE Y BIEN POSICIONADO */
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 90px;
  border-bottom: 2px solid rgba(160, 123, 184, 0.2);
  background: var(--drawer-bg, #f5f0f7);
  flex-shrink: 0;
  position: relative;
  z-index: 30;
  min-height: 60px;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.cart-title {
  margin: 0;
  font-size: 28px !important;
  font-weight: 700;
  color: var(--drawer-text, #404040);
  opacity: 1;
  visibility: visible;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-left: 20px; 
}

.close-btn {
  background: rgba(160, 123, 184, 0.1);
  border: 1px solid rgba(160, 123, 184, 0.3);
  margin-right: 10px;
  cursor: pointer;
  border-radius: 8px;
  color: var(--drawer-text, #404040);
  transition: var(--item-transition);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-btn:hover {
  background: rgba(160, 123, 184, 0.2);
  border-color: rgba(160, 123, 184, 0.5);
}

/* ========================================
   LAYOUT FIJO: CHECKOUT ARRIBA + TARJETAS DEBAJO
   ======================================== */

/* Cart Content - CON LAYOUT FIJO */
.cart-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0 24px;
  height: 100%;
}

/* Shipping Section */
.shipping-section {
  order: -2;
  margin-bottom: 16px;
  padding: 16px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e1e1e1;
  flex-shrink: 0;
}

.shipping-text {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--drawer-text, #404040);
  font-weight: 500;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #f0f0f0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-fill {
  height: 100%;
  background: var(--accent-color, #a07bb8);
  transition: width 0.3s ease;
}

.remaining-text {
  margin: 0;
  font-size: 12px;
  color: #666;
}

.free-shipping-achieved {
  margin: 0;
  font-size: 14px;
  color: #16a34a;
  font-weight: 500;
  text-align: center;
  padding: 8px;
  background: #e8f5e8;
  border-radius: 6px;
}

/* BOTÓN DE CHECKOUT FIJO ARRIBA */
.cart-checkout-fixed {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--drawer-bg, #f5f0f7);
  padding: 16px 0;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.checkout-btn-fixed {
  width: 100%;
  background: var(--button-bg-color, #a07bb8);
  color: var(--button-text-color, #ffffff);
  border: none;
  padding: 18px 24px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(160, 123, 184, 0.3);
  position: relative;
  overflow: hidden;
}

.checkout-btn-fixed:hover {
  background: #8e6ba0;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(160, 123, 184, 0.4);
}

.checkout-btn-fixed:active {
  transform: translateY(0);
}

/* Efecto de ondas en el botón */
.checkout-btn-fixed::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.checkout-btn-fixed:hover::before {
  left: 100%;
}

/* CONTENEDOR DE TARJETAS FIJO DEBAJO */
.cart-items-fixed {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 4px;
  margin-right: -4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(160, 123, 184, 0.3) transparent;
  min-height: 0;
}

.cart-items-fixed::-webkit-scrollbar {
  width: 6px;
}

.cart-items-fixed::-webkit-scrollbar-track {
  background: transparent;
}

.cart-items-fixed::-webkit-scrollbar-thumb {
  background: rgba(160, 123, 184, 0.3);
  border-radius: 3px;
}

.cart-items-fixed::-webkit-scrollbar-thumb:hover {
  background: rgba(160, 123, 184, 0.5);
}

/* ========================================
   TARJETAS DEL CARRITO (DISEÑO IGUAL EN TODOS LOS DISPOSITIVOS)
   ======================================== */

/* Ocultar estilos antiguos del cart-item */
.cart-item {
  display: none !important;
}

/* Contenedor principal de la tarjeta */
.cart-item-card {
  margin-bottom: 16px;
  background: #ffffff;
  border-radius: 12px;
  padding: 12px;
  border: 1px solid #e5e5e5;
  transition: all 0.2s ease;
  overflow: visible; /* Cambiar a visible para que no se corten los precios */
}

.cart-item-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #d1d1d1;
}

.card-inner {
  padding: 16px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

/* Imagen del producto */
.item-image-card {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e9ecef;
}

.item-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.no-image-card {
  color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Contenido principal */
.item-content-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

/* Header con título y variante */
.item-header-card {
  flex: 1;
}

.item-title-card {
  margin: 0 0 4px 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--drawer-text, #404040);
}

.item-title-card a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.item-title-card a:hover {
  color: var(--accent-color, #a07bb8);
}

.item-variant-card {
  margin: 0 0 6px 0;
  font-size: 13px;
  color: #666;
  font-weight: 400;
}

.item-properties-card {
  margin-bottom: 6px;
}

.item-property-card {
  margin: 0 0 2px 0;
  font-size: 12px;
  color: #666;
}

.property-name-card {
  font-weight: 500;
}

.property-value-card {
  color: #888;
}

/* Footer con precio, cantidad y eliminar */
.item-footer-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}

/* Sección de precio - MÁS ESPACIO */
.price-section-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 100px;
  flex: 1 1 auto;
  max-width: 100%;
}

.price-card,
.sale-price-card {
  font-weight: 700;
  font-size: 14px;
  color: var(--accent-color, #a07bb8);
  margin: 0;
  word-break: break-word;
  max-width: 100%;
  line-height: 1.3;
}

.original-price-card {
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
  font-weight: 400;
  margin: 0;
  word-break: break-word;
  line-height: 1.3;
}

/* Controles de cantidad */
.quantity-controls-card {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

/* ========================================
   BUNDLE SIMPLE LAYOUT (Volume Discount)
   MISMO DISEÑO PARA PC Y MÓVIL
   ======================================== */

/* Card de Volume Discount - sin estilos especiales */
.cart-item-card.volume-discount-item {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin-bottom: 12px !important;
}

.cart-item-card.volume-discount-item .card-inner {
  padding: 12px !important;
  gap: 12px !important;
}

.bundle-simple-layout {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.bundle-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.bundle-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--drawer-text, #404040);
  margin: 0;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bundle-price-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-color, #a07bb8);
}

.bundle-quantity {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-color, #a07bb8);
  margin: 0;
}

.bundle-remove-btn {
  background: transparent;
  border: none;
  padding: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
}

.bundle-remove-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.bundle-remove-btn:hover {
  color: #dc2626;
  transform: scale(1.1);
}

.quantity-btn-card {
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #666;
  transition: all 0.2s ease;
  font-size: 14px;
}

.quantity-btn-card:hover {
  background: var(--accent-color, #a07bb8);
  color: white;
}

.quantity-btn-card:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: none !important;
  color: #ccc !important;
}

.quantity-input-card {
  width: 50px;
  height: 32px;
  border: none;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  background: #ffffff;
  color: var(--drawer-text, #404040);
  -webkit-appearance: none;
  -moz-appearance: textfield;
}

.quantity-input-card::-webkit-outer-spin-button,
.quantity-input-card::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity-input-card:focus {
  outline: none;
  background: #f0f0f0;
}

/* Sección de eliminar */
.remove-section-card {
  flex-shrink: 0;
}

.remove-btn-card {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: #999;
  transition: all 0.2s ease;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.remove-btn-card:hover {
  color: #e74c3c;
  background: rgba(231, 76, 60, 0.1);
  transform: scale(1.05);
}

/* ========================================
   COMPONENTES ADICIONALES
   ======================================== */

/* UPSELL MINIMAL */
.upsell-section-minimal {
  order: 10;
  margin-top: 16px;
  margin-bottom: 24px;
  padding: 16px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e1e1e1;
  flex-shrink: 0;
}

.upsell-title-minimal {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: var(--drawer-text, #404040);
}

.upsell-products-minimal {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.upsell-item-minimal {
  background: #f8f9fa;
  border-radius: 6px;
  padding: 12px;
  border: 1px solid #e9ecef;
  transition: all 0.2s ease;
}

.upsell-item-minimal:hover {
  border-color: var(--accent-color, #a07bb8);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.upsell-product-info-minimal {
  display: flex;
  align-items: center;
  gap: 12px;
}

.upsell-image-minimal {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.upsell-details-minimal {
  flex: 1;
}

.upsell-product-title-minimal {
  font-size: 13px;
  font-weight: 500;
  margin: 0 0 4px 0;
  color: #333;
  line-height: 1.3;
}

.upsell-pricing-minimal {
  display: flex;
  align-items: center;
  gap: 6px;
}

.compare-price-minimal {
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
}

.sale-price-minimal {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-color, #a07bb8);
}

.add-upsell-btn-minimal {
  background: var(--accent-color, #a07bb8);
  color: white;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.add-upsell-btn-minimal:hover {
  background: #8e6ba0;
  transform: scale(1.05);
}

.add-upsell-btn-minimal:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.add-upsell-btn-minimal.loading {
  background: #28a745;
}

/* TRUST BADGES MINIMAL */
.trust-badges-minimal {
  order: 11;
  display: flex;
  gap: 8px;
  margin-top: 12px;
  margin-bottom: 24px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e1e1e1;
  flex-shrink: 0;
}

.trust-badge-minimal {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  font-size: 12px;
  color: #666;
}

.badge-icon {
  font-size: 14px;
}

/* PAYMENT METHODS */
.cart-payment-trust-wrapper {
  order: 12;
  margin-top: 12px;
  margin-bottom: 24px;
  padding: 16px;
  background: #fff;
  border-radius: 8px;
  
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
}

.cart-trust-payment-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-trust-payment-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
}

.cart-trust-payment-item {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 50px !important;
  height: 40px !important;
  background: #ffffff !important;
  
  border-radius: 6px !important;
  padding: 6px !important;
  transition: all 0.2s ease !important;
  box-sizing: border-box !important;
}

.cart-trust-payment-item:hover {
  border-color: #999 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
}

.cart-trust-payment-svg {
  width: 50px !important;
  height: 30px !important;
  max-width: 50px !important;
  max-height: 30px !important;
  min-width: 50px !important;
  min-height: 30px !important;
  object-fit: contain !important;
  display: block !important;
  flex-shrink: 0 !important;
}

.cart-trust-payment-fallback {
  padding: 12px 18px;
  background: #f5f5f5;
  border-radius: 6px;
  font-size: 16px !important;
  color: #333333;
  font-weight: 500;
}

/* Empty Cart */
.empty-cart {
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.empty-cart-image {
  margin-bottom: 20px;
  opacity: 0.6;
}

.empty-cart-title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  color: var(--drawer-text, #404040);
}

.empty-cart-text {
  margin: 0 0 24px;
  color: #666;
  line-height: 1.5;
}

/* Overlay */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: var(--overlay-transition);
  z-index: 998;
  backdrop-filter: blur(2px);
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Loading State */
.loading {
  pointer-events: none;
  opacity: 0.6;
}

.loading-icon {
  display: inline-block;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Estados de carga y error para tarjetas */
.cart-item-card.loading {
  opacity: 0.6;
  pointer-events: none;
}

.cart-item-card.error {
  border-color: #e74c3c;
  background: #fdf2f2;
}

/* Animaciones suaves */
.cart-item-card {
  animation: slideInUp 0.3s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animación de entrada del layout */
.cart-checkout-fixed {
  animation: slideDownFade 0.4s ease-out;
}

.cart-items-fixed {
  animation: slideUpFade 0.5s ease-out;
}

@keyframes slideDownFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   RESPONSIVE PARA MÓVILES (SIN CAMBIAR DISEÑO DE TARJETAS)
   ======================================== */

@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }

  #cart-drawer {
    width: 100%;
    max-width: 90vw; /* Increased from 400px to support wider drawers */
    top: var(--header-height, 60px);
    height: calc(100vh - var(--header-height, 60px)) !important;
    max-height: calc(100vh - var(--header-height, 60px)) !important;
  }

  /* Mejorar layout de items para pantallas medianas */
  .cart-item-card {
    padding: 10px !important;
  }

  .price-section-card {
    min-width: 90px !important;
  }

  .price-card,
  .sale-price-card {
    font-size: 13px !important;
  }

  .unit-price-card {
    font-size: 11px !important;
  }

  .item-footer-card {
    gap: 12px !important;
  }

  /* Bundle simple - NO CAMBIOS en tablet, mismo diseño */

  .cart-content {
    padding: 0 20px;
    height: calc(100vh - var(--header-height, 60px) - 80px) !important;
    max-height: calc(100vh - var(--header-height, 60px) - 80px) !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
  }
  
  .cart-drawer-header {
    padding: 12px 20px;
    height: 60px;
    flex-shrink: 0 !important;
  }
  
  .cart-checkout-fixed {
    position: sticky !important;
    top: 0 !important;
    z-index: 20 !important;
    background: var(--drawer-bg, #f5f0f7) !important;
    padding: 12px 0;
    margin-bottom: 12px;
    flex-shrink: 0 !important;
  }
  
  .checkout-btn-fixed {
    font-size: 15px;
    padding: 16px 20px;
    border-radius: 10px;
  }
  
  .cart-items-fixed {
    flex: 1 !important;
    min-height: 0 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    transform: translateZ(0) !important;
  }
  
  .shipping-section {
    flex-shrink: 0 !important;
    margin-bottom: 12px;
  }
  
  .cart-trust-payment-icons {
    gap: 8px !important;
  }

  .cart-trust-payment-item {
    width: 42px !important;
    height: 28px !important;
    padding: 3px !important;
  }

  .cart-trust-payment-svg {
    width: 34px !important;
    height: 19px !important;
    max-width: 34px !important;
    max-height: 19px !important;
    min-width: 34px !important;
    min-height: 19px !important;
  }
}

@media (max-width: 480px) {
  #cart-drawer {
    width: 100vw !important;
    height: calc(100vh - var(--header-height, 60px)) !important;
    max-height: calc(100vh - var(--header-height, 60px)) !important;
  }
  
  .cart-content {
    padding: 0 16px;
    height: calc(100vh - var(--header-height, 60px) - 70px) !important;
    max-height: calc(100vh - var(--header-height, 60px) - 70px) !important;
  }
  
  .cart-drawer-header {
    padding: 140px 0px 20px 20px !important;
    height: 50px;
  }
  
  .cart-checkout-fixed {
    padding: 10px 0;
    margin-bottom: 10px;
  }
  
  .checkout-btn-fixed {
    font-size: 14px;
    padding: 14px 18px;
    border-radius: 8px;
  }

  /* Optimizar espacio en móviles pequeños */
  .cart-item-card {
    padding: 8px !important;
    margin-bottom: 12px !important;
  }

  .price-section-card {
    min-width: 80px !important;
  }

  .price-card,
  .sale-price-card {
    font-size: 12px !important;
    line-height: 1.2 !important;
  }

  .original-price-card {
    font-size: 11px !important;
  }

  .unit-price-card {
    font-size: 10px !important;
  }

  .item-footer-card {
    gap: 10px !important;
  }

  .quantity-controls-card {
    gap: 6px !important;
  }

  .quantity-input-card {
    width: 38px !important;
    font-size: 13px !important;
  }

  .quantity-btn-card {
    width: 28px !important;
    height: 28px !important;
  }

  /* Bundle simple - Ajustes MÍNIMOS para móvil */
  .cart-item-card.volume-discount-item .card-inner {
    padding: 10px !important;
    gap: 10px !important;
  }

  .cart-trust-payment-icons {
    gap: 6px !important;
  }

  .cart-trust-payment-item {
    width: 38px !important;
    height: 26px !important;
    padding: 2px !important;
  }

  .cart-trust-payment-svg {
    width: 30px !important;
    height: 17px !important;
    max-width: 30px !important;
    max-height: 17px !important;
    min-width: 30px !important;
    min-height: 17px !important;
  }
}

@media (max-width: 380px) {
  .cart-trust-payment-icons {
    gap: 4px !important;
  }

  .cart-trust-payment-item {
    width: 35px !important;
    height: 24px !important;
  }

  .cart-trust-payment-svg {
    width: 28px !important;
    height: 15px !important;
    max-width: 28px !important;
    max-height: 15px !important;
    min-width: 28px !important;
    min-height: 15px !important;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles para accesibilidad */
.quantity-btn-card:focus,
.remove-btn-card:focus,
.quantity-input-card:focus,
.close-btn:focus,
.checkout-btn-fixed:focus {
  outline: 2px solid var(--accent-color, #a07bb8);
  outline-offset: 2px;
}

.item-title-card a:focus {
  outline: 2px solid var(--accent-color, #a07bb8);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Evitar scroll en el body cuando el drawer está abierto */
body.cart-drawer-open {
  overflow: hidden;
}

/* Estados de carga para el botón fijo */
.checkout-btn-fixed.loading {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.checkout-btn-fixed.loading::before {
  display: none;
}

/* Ocultar elementos no necesarios */
.cart-summary {
  display: none !important;
}

.cart-actions {
  display: none !important;
}

.cart-actions-moved {
  display: none !important;
}

/* ========================================
   VOLUME DISCOUNT STYLES - MOVIDO ARRIBA
   ======================================== */

/* Los estilos están en la sección "BUNDLE SIMPLE LAYOUT" arriba */

/* Subscription badge */
.subscription-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background: #fef3c7;
  color: #92400e;
  font-size: 11px;
  font-weight: 600;
  border-radius: 6px;
  margin-top: 4px;
}

.subscription-badge svg {
  flex-shrink: 0;
  stroke: currentColor;
}

/* Notice info para items locked */
.item-notice-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #eff6ff;
  border-top: 1px solid #dbeafe;
  border-radius: 0 0 12px 12px;
  margin: 12px -12px -12px -12px;
  font-size: 12px;
  color: #1e40af;
}

.item-notice-card svg {
  flex-shrink: 0;
  stroke: currentColor;
}

/* Estilos deshabilitados no necesarios - ahora ocultamos los controles completamente para volume discount */
}

/* Unit price display */
.unit-price-card {
  font-size: 11px;
  color: #6b7280;
  margin-top: 4px;
}

/* Discount info */
.discount-info-card {
  margin-top: 6px;
}

.discount-label-card {
  display: inline-block;
  padding: 3px 8px;
  background: #dcfce7;
  color: #166534;
  font-size: 11px;
  font-weight: 600;
  border-radius: 4px;
}

/* Price row with original and sale price */
.price-row-card {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* ========================================
   SHOPIFY MARKETS COMPATIBILITY
   ======================================== */

/* Asegurar que los precios se muestren correctamente con Markets */
.price-section-card .money,
.price-card,
.sale-price-card,
.original-price-card,
.unit-price-card .money {
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}

/* Currency badge (opcional, si quieres mostrar la moneda activa) */
.cart-currency-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background: #f3f4f6;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 12px;
}

/* Ajuste de formato de moneda */
[data-currency-format] {
  white-space: nowrap;
}

/* ========================================
   HOVER STATES MEJORADOS
   ======================================== */

.cart-item-card.volume-discount-item:hover {
  border-color: #059669;
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.2);
  transform: translateY(-2px);
}

.cart-item-card:not(.volume-discount-item):hover {
  transform: translateY(-1px);
}