/** Shopify CDN: Minification failed

Line 26:0 All "@import" rules must come first

**/
/* Unificación de estilos de precios para cards index y collection */
.collection-price-old {
  font-size: 1.25rem;
  color: #b0b0b0;
  text-decoration: line-through;
  margin-right: 8px;
  font-family: 'Playfair Display', serif;
}
.collection-price-new {
  font-size: 1.25rem;
  color: #ff4d4f;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}
/* ===================================
   THEME CSS - Más Benditas Theme
   Additional styles beyond base.css
   =================================== */

/* Import base styles */
@import url('base.css');

/* Additional Theme Styles */

/* Body states */
body.menu-open,
body.cart-open,
body.search-open,
body.popup-open {
  overflow: hidden;
}

/* Loading states */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #1a1a1a;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Enhanced button styles */
.btn--outline {
  background: transparent;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
}

.btn--outline:hover {
  background: #1a1a1a;
  color: #ffffff;
}

.btn--text {
  background: none;
  color: #1a1a1a;
  border: none;
  padding: 0.5rem 1rem;
  text-decoration: underline;
}

.btn--text:hover {
  color: #1a1a1a;
}

/* Enhanced form styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e5e5e5;
  border-radius: 0;
  font-size: 1rem;
  background: #ffffff;
  color: #1a1a1a;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #1a1a1a;
  box-shadow: 0 0 0 2px rgba(26, 26, 26, 0.1);
}

.form-input--error {
  border-color: #dc3545;
}

.form-error {
  font-size: 0.75rem;
  color: #dc3545;
  margin-top: 0.25rem;
}

.form-success {
  font-size: 0.875rem;
  color: #28a745;
  margin-top: 0.25rem;
}

/* Enhanced card styles */
.card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.card__header {
  padding: 1rem;
  border-bottom: 1px solid #e5e5e5;
}

.card__body {
  padding: 1rem;
}

.card__footer {
  padding: 1rem;
  border-top: 1px solid #e5e5e5;
  background: #f5f5f5;
}

/* Enhanced badge styles */
.badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 0;
}

.badge--primary {
  background: #1a1a1a;
  color: #ffffff;
}

.badge--accent {
  background: #1a1a1a;
  color: #ffffff;
}

.badge--success {
  background: #28a745;
  color: #ffffff;
}

.badge--warning {
  background: #ffc107;
  color: #1a1a1a;
}

.badge--danger {
  background: #dc3545;
  color: #ffffff;
}

/* Enhanced alert styles */
.alert {
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0;
}

.alert--success {
  background: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}

.alert--warning {
  background: #fff3cd;
  border-color: #ffeaa7;
  color: #856404;
}

.alert--danger {
  background: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}

.alert--info {
  background: #d1ecf1;
  border-color: #bee5eb;
  color: #0c5460;
}

/* Enhanced modal styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  display: none;
}

.modal.is-active {
  display: block;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 0;
}

.modal__header {
  padding: 1rem;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
  color: #1a1a1a;
}

.modal__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #1a1a1a;
}

.modal__body {
  padding: 1rem;
}

.modal__footer {
  padding: 1rem;
  border-top: 1px solid #e5e5e5;
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

/* Enhanced tooltip styles */
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip__content {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a1a;
  color: #ffffff;
  padding: 0.5rem;
  font-size: 0.75rem;
  border-radius: 0;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.tooltip__content::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #1a1a1a;
}

.tooltip:hover .tooltip__content {
  opacity: 1;
  visibility: visible;
}

/* Enhanced breadcrumb styles */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #1a1a1a;
  margin-bottom: 2rem;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
}

.breadcrumb__link {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb__link:hover {
  color: #1a1a1a;
}

.breadcrumb__separator {
  margin: 0 0.5rem;
  color: #999999;
}

.breadcrumb__current {
  color: #1a1a1a;
  font-weight: 500;
}

/* Enhanced pagination styles */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 2rem 0;
}

.pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #e5e5e5;
  background: #ffffff;
  color: #1a1a1a;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pagination__item:hover {
  background: #f5f5f5;
  border-color: #1a1a1a;
}

.pagination__item--active {
  background: #1a1a1a;
  color: #ffffff;
  border-color: #1a1a1a;
}

.pagination__item--disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* Enhanced table styles */
.table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

.table th,
.table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #e5e5e5;
}

.table th {
  background: #f5f5f5;
  font-weight: 600;
  color: #1a1a1a;
}

.table tbody tr:hover {
  background: #f5f5f5;
}

/* Enhanced progress bar styles */
.progress {
  width: 100%;
  height: 8px;
  background: #e5e5e5;
  border-radius: 0;
  overflow: hidden;
}

.progress__bar {
  height: 100%;
  background: #1a1a1a;
  transition: width 0.3s ease;
}

/* Enhanced spinner styles */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #e5e5e5;
  border-top-color: #1a1a1a;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.spinner--large {
  width: 40px;
  height: 40px;
  border-width: 3px;
}

.spinner--small {
  width: 16px;
  height: 16px;
  border-width: 1px;
}

/* Enhanced skeleton loading styles */
.skeleton {
  background: linear-gradient(90deg, #f5f5f5 25%, #e5e5e5 50%, #f5f5f5 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 0;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.skeleton--text {
  height: 1rem;
  margin-bottom: 0.5rem;
}

.skeleton--title {
  height: 1.5rem;
  margin-bottom: 1rem;
}

.skeleton--image {
  height: 200px;
  margin-bottom: 1rem;
}

.skeleton--button {
  height: 2.5rem;
  width: 120px;
}

/* Enhanced responsive utilities */
@media (max-width: 768px) {
  .d-md-none { display: none !important; }
  .d-md-block { display: block !important; }
  .d-md-flex { display: flex !important; }
  
  .text-md-center { text-align: center !important; }
  .text-md-left { text-align: left !important; }
  .text-md-right { text-align: right !important; }
  
  .order-md-1 { order: 1 !important; }
  .order-md-2 { order: 2 !important; }
  .order-md-3 { order: 3 !important; }
}

@media (max-width: 480px) {
  .d-sm-none { display: none !important; }
  .d-sm-block { display: block !important; }
  .d-sm-flex { display: flex !important; }
  
  .text-sm-center { text-align: center !important; }
  .text-sm-left { text-align: left !important; }
  .text-sm-right { text-align: right !important; }
  
  .order-sm-1 { order: 1 !important; }
  .order-sm-2 { order: 2 !important; }
  .order-sm-3 { order: 3 !important; }
}

/* Print styles */
@media print {
  .no-print { display: none !important; }
  
  .print-only { display: block !important; }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }
  
  .page-break {
    page-break-before: always;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .btn {
    border: 2px solid currentColor;
  }
  
  .form-input {
    border: 2px solid #1a1a1a;
  }
  
  .card {
    border: 2px solid #1a1a1a;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Dark mode support (if needed in the future) */
@media (prefers-color-scheme: dark) {
  /* Dark mode styles can be added here */
}

/* Focus visible support */
.focus-visible:focus {
  outline: 2px solid #1a1a1a;
  outline-offset: 2px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #1a1a1a;
  border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
  background: #1a1a1a;
}

/* Selection styles */
::selection {
  background: #1a1a1a;
  color: #ffffff;
}

::-moz-selection {
  background: #1a1a1a;
  color: #ffffff;
}

/* ===================================
   CART ENHANCEMENTS
   =================================== */

/* Cart page animations */
.cart-item {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Cart drawer enhancements */
.cart-drawer__content {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
}

/* Cart item hover effects */
.cart-item:hover .cart-item__image img {
  transform: scale(1.05);
}

/* Quantity input focus styles */
.quantity-input:focus {
  box-shadow: 0 0 0 2px rgba(26, 26, 26, 0.1);
  border-color: #1a1a1a;
}

/* Cart summary sticky behavior */
.cart-page__summary {
  transition: transform 0.3s ease;
}

@media (max-width: 1024px) {
  .cart-page__summary {
    transform: none !important;
  }
}

/* Cart empty state animations */
.cart-empty__icon {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Cart count badge animation */
.header__cart-count {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Cart drawer slide animation */
.cart-drawer__content {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Loading state for cart actions */
.cart-item.loading {
  opacity: 0.6;
  pointer-events: none;
}

.cart-item.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #1a1a1a;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Cart summary highlight */
.cart-summary__row--total {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1rem;
}

/* Responsive cart improvements */
@media (max-width: 768px) {
  .cart-item {
    grid-template-columns: 80px 1fr;
    gap: 1rem;
  }
  
  .cart-item__image {
    width: 80px;
    height: 80px;
  }
  
  .cart-summary {
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .cart-page__title {
    font-size: 1.75rem;
  }
  
  .cart-summary__actions {
    flex-direction: column;
  }
  
  .btn--full {
    width: 100%;
  }
}
