/* ====================================================
   NODUS & CO — COMPONENTES
   ==================================================== */

/* ── BOTONES ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all var(--transition-md);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #0A0A0F;
  box-shadow: 0 4px 16px rgba(201,169,110,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(201,169,110,0.1);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-soft);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.btn-danger {
  background: linear-gradient(135deg, #F87171, #DC2626);
  color: #fff;
}

.btn-sm { padding: 8px 18px; font-size: 0.8rem; }
.btn-lg { padding: 16px 40px; font-size: 1rem; }
.btn-icon { padding: 10px; border-radius: var(--radius-md); aspect-ratio: 1; }
.btn-full { width: 100%; }

.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
  padding: 6px 0;
  transition: all var(--transition-md);
}

.navbar.scrolled {
  padding: 4px 0;
  background: rgba(10,10,15,0.95);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: 'Playfair Display', serif;
}
.nav-logo img {
  height: 85px !important;
  max-height: 85px !important;
  width: auto !important;
  object-fit: contain;
  display: block;
}
.nav-logo .logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.nav-logo .logo-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: block;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  position: relative;
  padding: 4px 2px;
}
.nav-link-icon {
  width: 19px;
  height: 19px;
  color: var(--gold);
  transition: transform var(--transition-fast), color var(--transition-fast);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition-md);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
}
.nav-links a:hover .nav-link-icon {
  transform: scale(1.18);
  color: var(--gold);
}
.nav-links a:hover::after, .nav-links a.active::after {
  transform: scaleX(1);
}

.nav-actions { display: flex; align-items: center; gap: var(--space-sm); }

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(201,169,110,0.1);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--transition-md);
}
.cart-btn:hover {
  background: rgba(201,169,110,0.2);
  transform: translateY(-1px);
}
.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  background: var(--gold);
  color: #0A0A0F;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── BOTÓN CAMBIO DE TEMA & MÚSICA NAVBAR ── */
.theme-toggle-btn, .music-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  color: var(--gold);
  transition: all var(--transition-fast);
  cursor: pointer;
}
.theme-toggle-btn:hover, .music-toggle-btn:hover, .music-toggle-btn.active {
  background: rgba(201,169,110,0.15);
  border-color: var(--gold);
  transform: scale(1.05);
}

[data-theme="light"] .nav-logo img {
  mix-blend-mode: multiply;
  filter: contrast(1.05);
}
[data-theme="light"] .navbar {
  background: rgba(253,246,246,0.92);
  border-bottom-color: rgba(194,123,136,0.15);
}
[data-theme="light"] .navbar.scrolled {
  background: rgba(253,246,246,0.98);
  box-shadow: 0 4px 20px rgba(194,123,136,0.08);
}
[data-theme="light"] .theme-toggle-btn {
  background: rgba(194,123,136,0.1);
  border-color: rgba(194,123,136,0.25);
  color: #C27B88;
}
[data-theme="light"] .float-music {
  background: #FFFFFF;
  border: 1px solid rgba(194,123,136,0.2);
  box-shadow: 0 4px 16px rgba(194,123,136,0.15);
  color: #C27B88;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}
.hamburger:hover { background: var(--bg-elevated); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-md);
}

/* ── CARDS ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-md);
}
.card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

/* Producto Card */
.product-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-md);
  cursor: pointer;
}
.product-card:hover {
  border-color: rgba(201,169,110,0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), var(--shadow-gold);
  transform: translateY(-6px);
}
.product-card:hover .product-img img {
  transform: scale(1.05);
}

.product-img {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-elevated);
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-surface));
}

.product-badges {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  z-index: 2;
}

.product-actions-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-sm);
  background: linear-gradient(to top, rgba(10,10,15,0.9), transparent);
  display: flex;
  gap: var(--space-xs);
  transform: translateY(100%);
  transition: transform var(--transition-md);
}
.product-card:hover .product-actions-overlay {
  transform: translateY(0);
}

.product-info { padding: var(--space-md); }
.product-category {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-xs);
}
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}
.product-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
}
.price-current {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
}
.price-original {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.price-savings {
  font-size: 0.75rem;
  color: var(--success);
  font-weight: 600;
}
.product-stock {
  font-size: 0.75rem;
  margin-top: 4px;
}
.stock-ok    { color: var(--success); }
.stock-low   { color: var(--warning); }
.stock-out   { color: var(--danger); }

/* ── BADGES ── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.badge-gold    { background: var(--gold); color: #0A0A0F; }
.badge-new     { background: var(--violet); color: #fff; }
.badge-sale    { background: var(--danger); color: #fff; }
.badge-low     { background: var(--warning); color: #0A0A0F; }
.badge-out     { background: var(--text-muted); color: #fff; }
.badge-success { background: var(--success); color: #0A0A0F; }

/* ── INPUTS ── */
.input-group { display: flex; flex-direction: column; gap: var(--space-xs); }
.input-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}
.input {
  padding: 12px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  width: 100%;
  outline: none;
}
.input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.1);
}
.input::placeholder { color: var(--text-muted); }

select.input { appearance: none; cursor: pointer; }

.input-with-icon { position: relative; }
.input-with-icon .input { padding-left: 44px; }
.input-with-icon .input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1rem;
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-md);
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  transition: transform var(--transition-md);
}
.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-lg);
}
.modal-close {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1.2rem;
  transition: all var(--transition-fast);
}
.modal-close:hover { background: var(--danger); color: #fff; }

/* ── TOAST ── */
.toast-container {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.toast {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 12px 20px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  animation: slideInRight 0.3s ease, fadeOut 0.3s ease 2.7s forwards;
  min-width: 280px;
}
.toast.success { border-color: var(--success); }
.toast.error   { border-color: var(--danger);  }
.toast.info    { border-color: var(--gold);    }
.toast-icon { font-size: 1.1rem; }

/* ── FOOTER ── */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-soft);
  padding: var(--space-3xl) 0 var(--space-xl);
  margin-top: var(--space-3xl);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}
.footer-brand .footer-desc {
  margin-top: var(--space-md);
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 280px;
}
.footer-col h5 {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-social { display: flex; gap: var(--space-sm); }
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}
.social-btn:hover {
  background: var(--gold);
  color: #0A0A0F;
  border-color: var(--gold);
}

/* ── FLOATING BUTTONS ── */
.float-whatsapp {
  position: fixed;
  bottom: 90px;
  right: var(--space-xl);
  z-index: var(--z-float);
  width: 54px;
  height: 54px;
  border-radius: var(--radius-full);
  background: #25D366;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all var(--transition-md);
  animation: pulse-green 3s infinite;
}
.float-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

.float-music {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: auto;
  z-index: var(--z-float);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 14px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(20, 20, 28, 0.85);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--gold);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transition: all var(--transition-md);
  cursor: pointer;
  user-select: none;
}
.float-music:hover {
  background: rgba(30, 30, 42, 0.95);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.6), 0 0 20px rgba(201,169,110,0.2);
}
.float-music.playing {
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(201,169,110,0.3);
}

/* MG7 Equalizer Bars */
.music-eq {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 16px;
  width: 14px;
}
.music-eq span {
  flex: 1;
  background: var(--gold);
  border-radius: 1px;
  height: 30%;
  transition: height 0.2s ease;
}
.float-music.playing .music-eq span:nth-child(1) { animation: eqBar 0.8s ease-in-out infinite alternate; }
.float-music.playing .music-eq span:nth-child(2) { animation: eqBar 0.6s ease-in-out infinite alternate 0.2s; }
.float-music.playing .music-eq span:nth-child(3) { animation: eqBar 0.9s ease-in-out infinite alternate 0.4s; }

@keyframes eqBar {
  0% { height: 25%; }
  100% { height: 100%; }
}

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--text-muted); }
.breadcrumb .current { color: var(--text-secondary); }

/* ── FILTER BAR ── */
.filter-bar {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-soft);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}
.filter-chip {
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  cursor: pointer;
}
.filter-chip:hover, .filter-chip.active {
  background: rgba(201,169,110,0.15);
  border-color: var(--gold);
  color: var(--gold);
}

/* ── STAT CARD (admin) ── */
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-md);
}
.stat-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-gold);
}
.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.stat-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}
.stat-trend {
  font-size: 0.75rem;
  margin-top: var(--space-xs);
}

/* ── TABLE ── */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
thead th {
  text-align: left;
  padding: 12px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-soft);
}
tbody tr {
  border-bottom: 1px solid var(--border-soft);
  transition: background var(--transition-fast);
}
tbody tr:hover { background: rgba(255,255,255,0.02); }
tbody td {
  padding: 14px 16px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* ── PROGRESS BAR ── */
.progress {
  height: 6px;
  background: var(--bg-elevated);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  transition: width 0.5s ease;
}

/* ── TABS ── */
.tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: 4px;
  margin-bottom: var(--space-lg);
}
.tab {
  flex: 1;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition-fast);
  text-align: center;
  cursor: pointer;
}
.tab.active {
  background: var(--bg-card);
  color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.tab:hover:not(.active) { color: var(--text-primary); }

/* ── SIDEBAR (admin) ── */
.admin-layout {
  display: flex;
  min-height: 100vh;
}
.sidebar {
  width: 260px;
  flex-shrink: 0;
  background: var(--bg-surface);
  border-right: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.sidebar-header {
  padding: var(--space-lg);
  border-bottom: 1px solid var(--border-soft);
}
.sidebar-nav { padding: var(--space-md); flex: 1; }
.sidebar-section {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: var(--space-md) var(--space-sm) var(--space-xs);
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px var(--space-sm);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  margin-bottom: 2px;
  cursor: pointer;
}
.sidebar-link:hover, .sidebar-link.active {
  background: rgba(201,169,110,0.1);
  color: var(--gold);
}
.sidebar-link .icon { font-size: 1rem; width: 20px; text-align: center; }
.admin-content {
  flex: 1;
  padding: var(--space-xl);
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
  .hamburger { display: flex; }
  .nav-links { display: none; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    padding: var(--space-lg);
    border-bottom: 1px solid var(--border-soft);
    gap: var(--space-md);
  }
  .sidebar { position: fixed; left: -260px; z-index: var(--z-modal); transition: left var(--transition-md); }
  .sidebar.open { left: 0; }
}


/* ====================================================
   HERO BANNER SLIDER (MAKRO SENSORY STYLE)
   ==================================================== */
.hero-slider-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 520px;
  background: var(--bg-dark);
}

.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  display: flex;
  align-items: center;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease-out;
}

.slide.active .slide-bg {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,15,0.92) 0%, rgba(10,10,15,0.7) 50%, rgba(10,10,15,0.2) 100%);
}

[data-theme="light"] .slide-overlay {
  background: linear-gradient(90deg, rgba(253,246,246,0.94) 0%, rgba(253,246,246,0.75) 50%, rgba(253,246,246,0.25) 100%);
}

.slide-content {
  position: relative;
  z-index: 10;
  max-width: 620px;
  padding: 2rem 0;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(201,169,110,0.15);
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.3);
  backdrop-filter: blur(10px);
  margin-bottom: 1rem;
}

.slide-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.slide-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.slide-price-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.8rem;
}

.slide-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
}

.slide-price small {
  font-size: 1rem;
  font-weight: 600;
}

.slide-old-price {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.slide-discount-badge {
  padding: 4px 10px;
  border-radius: 6px;
  background: #ef4444;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.slide-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Controls & Arrows */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(10,10,15,0.6);
  border: 1px solid var(--border-soft);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all var(--transition-fast);
}

[data-theme="light"] .slider-btn {
  background: rgba(253,246,246,0.7);
  color: var(--text-primary);
}

.slider-btn:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn-prev { left: 24px; }
.slider-btn-next { right: 24px; }

.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 10px;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-dots .dot.active {
  width: 32px;
  border-radius: 12px;
  background: var(--gold);
}

@media (max-width: 768px) {
  .slider-container { height: 460px; }
  .slide-title { font-size: 1.9rem; }
  .slide-desc { font-size: 0.92rem; }
  .slider-btn { width: 38px; height: 38px; }
  .slider-btn-prev { left: 10px; }
  .slider-btn-next { right: 10px; }
}
