/**
 * ═══════════════════════════════════════════════════════════════════
 * TOLTKAS TATTOO STUDIO — Estilos Principales
 * ═══════════════════════════════════════════════════════════════════
 * 
 * Copyright © 2025 Toltkas Tattoo Studio
 * Autor: Norberto Torres
 * Fecha: Noviembre 2025
 * Versión: 1.0.0
 * 
 * Todos los derechos reservados.
 * Este código no puede ser copiado, modificado o distribuido sin 
 * autorización escrita del autor.
 * 
 * ═══════════════════════════════════════════════════════════════════
 */

:root {
  --bg: #0e0e0f;
  --surface: #151517;
  --text: #eaeaea;
  --muted: #b8b8bf;
  --primary: #e63946;
  --primary-600: #c92d39;
  --ring: 0 0 0 2px rgba(230, 57, 70, 0.35);
}

* { box-sizing: border-box; }
html { 
  scroll-behavior: smooth;
}
html, body { 
  height: 100%; 
}
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(1200px 600px at 20% 0%, #131315 20%, #0e0e0f 60%), var(--bg);
  padding-top: 64px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; border-radius: 14px; }

.container { width: min(1100px, 92vw); margin-inline: auto; }

.site-header { 
  position: fixed; 
  top: 0; 
  left: 0; 
  right: 0; 
  z-index: 1000; 
  background: color-mix(in oklab, var(--surface) 60%, transparent); 
  backdrop-filter: blur(6px); 
  border-bottom: 1px solid #232327; 
  box-shadow: 0 4px 18px rgba(0,0,0,.25);
}
.header-inner { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  gap: 16px; 
  padding: 14px 0;
  max-width: 100%;
  position: relative;
}
.brand { 
  display: inline-flex; 
  align-items: center; 
  gap: 10px; 
  font-weight: 700; 
  letter-spacing: 0.5px; 
  color: #9c7129; 
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
}
@media (max-width: 225px) {
  .brand {
    display: none;
  }
}
.brand:hover { color: #7f5a21; text-decoration: none; }
.brand-mark { font-size: 22px; color: var(--primary); }
.brand-name { font-family: Unbounded, Inter, ui-sans-serif; font-weight: 700; }
.brand-mark-img { height: 24px; width: auto; display: block; border-radius: 3px; }
.nav { 
  display: inline-flex; 
  gap: 16px; 
  align-items: center; 
  flex-wrap: wrap;
}
.nav a { 
  color: var(--muted); 
  text-decoration: none; 
  padding: 8px 10px; 
  border-radius: 10px; 
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav a:hover { color: var(--text); background: #1d1d21; }
.nav-toggle { 
  display: none; 
  background: transparent; 
  color: var(--text); 
  border: 0; 
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
}
@media (max-width: 899px) { 
  .nav { 
    flex-direction: column; 
    position: absolute; 
    top: 100%; 
    left: 0; 
    right: 0; 
    background: var(--surface); 
    border-top: 1px solid #232327; 
    padding: 10px; 
    display: none; 
  }
  .nav.active { display: flex; }
  .nav-toggle { display: block; }
}
@media (min-width: 900px){ .nav { display: inline-flex; } }
/* Header CTA: gold background, black text */
.site-header .btn.btn-primary { background: #9c7129; border-color: #7f5a21; color: #000; }
.site-header .btn.btn-primary:hover { background: #7f5a21; color: #000; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 10px 14px; border-radius: 12px; text-decoration: none; border: 1px solid transparent; cursor: pointer; font-weight: 600; }
.btn-primary { background: #9c7129; color: #0e0e0f; border-color: #7f5a21; }
.btn-primary:hover { background: #7f5a21; color: #0e0e0f; }
.btn-secondary { background: #1d1d21; color: var(--text); border-color: #2a2a31; }
.btn-secondary:hover { background: #24242a; }
.btn-ghost { background: transparent; color: var(--text); border-color: #2b2b32; }
.btn-ghost:hover { background: #1b1b20; }

.section-header { padding: 56px 0 10px; }
.section-header h2 { font-family: Unbounded, Inter, ui-sans-serif; margin: 0 0 8px; }
.section-header p { margin: 0; color: var(--muted); }

.hero { 
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../../images/toltkas/toltkas.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.2) 40%,
    rgba(0, 0, 0, 0.6) 80%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: -1;
}

.hero-inner { 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px 80px;
  height: 100vh;
}
.hero-copy h1 {
  font-family: Unbounded, Inter, ui-sans-serif;
  font-size: clamp(28px, 5vw, 46px);
  margin: 0 0 8px;
  /* Colores de bandera mexicana con técnica de color sólido */
  color: inherit; /* El h1 hereda color, los spans tienen sus propios colores */
}

/* Colores de bandera en las letras - 3 líneas */
.hero-copy h1 div {
  margin: 2px 0;
  display: block;
}

.texto-verde {
  color: #006847; /* Verde oficial en las letras */
}

.texto-blanco {
  color: #ffffff; /* Blanco en las letras */
}

.texto-rojo {
  color: #ce1126; /* Rojo oficial en las letras */
}
.hero-copy { 
  text-align: center;
  margin-bottom: 40px;
}

.hero-copy h1 {
  text-shadow: 0 3px 25px rgba(0, 0, 0, 0.9), 0 1px 5px rgba(0, 0, 0, 0.8);
  margin-bottom: 20px;
  font-size: clamp(32px, 6vw, 52px);
}

.hero-copy p { 
  color: #f8f9fa; /* Blanco */
  margin: 0 0 30px; 
  font-size: clamp(16px, 2.5vw, 20px);
  text-shadow: 0 0 8px rgba(244, 208, 63, 0.8), 0 0 15px rgba(244, 208, 63, 0.6), 1px 1px 3px rgba(0, 0, 0, 0.7);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.hero-ctas { 
  display: flex; 
  gap: 20px; 
  flex-wrap: wrap;
  justify-content: center;
}

.hero-ctas .btn {
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.hero-ctas .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.hero-ctas .btn-secondary {
  background: rgba(29, 29, 33, 0.8);
  border-color: rgba(42, 42, 49, 0.8);
  color: rgba(255, 255, 255, 0.95);
}

.hero-ctas .btn-secondary:hover {
  background: rgba(36, 36, 42, 0.9);
  color: #fff;
}

.hero-ctas .btn-primary {
  background: rgba(156, 113, 41, 0.95);
  border-color: rgba(127, 90, 33, 0.95);
  color: #000;
}

.hero-ctas .btn-primary:hover {
  background: rgba(127, 90, 33, 1);
  color: #000;
}

.hero-media { 
  display: none; 
}

@keyframes heroReveal {
  0%   { opacity: 0; transform: translateY(30px) scale(0.96); filter: blur(10px); }
  60%  { opacity: 1; transform: translateY(0) scale(1.02); filter: blur(0px); box-shadow: 0 20px 60px rgba(0,0,0,.45); }
  100% { opacity: 1; transform: translateY(0) scale(1);   filter: blur(0px); box-shadow: 0 16px 48px rgba(0,0,0,.35); }
}
@media (min-width: 900px){ .hero-inner { grid-template-columns: 1.1fr 1fr; } }

.artists { padding: 20px 0 10px; }

/* Trigger animation only when in view (Instagram-like smoothness) */
.hero-media img.in-view { animation: heroReveal 1600ms cubic-bezier(0.16,1,0.3,1) 60ms both; }

/* Coordinated reveal for title, subtitle and CTAs */
.hero-copy h1,
.hero-copy p:first-of-type { opacity: 1; transform: translateY(0); will-change: transform, opacity; }
.hero-ctas { opacity: 1; transform: translateY(0); will-change: transform, opacity; }
.hero-copy h1.title-in { animation: heroTitle 1000ms cubic-bezier(0.22,1,0.36,1) 80ms both; }
.hero-copy p:first-of-type.sub-in { animation: heroSub 1100ms cubic-bezier(0.22,1,0.36,1) 120ms both; }
.hero-ctas.ctas-in { animation: heroButtons 900ms cubic-bezier(0.22,1,0.36,1) 160ms both; }

@keyframes heroTitle {
  0%   { opacity: 0; transform: translateY(18px) scale(0.98); filter: blur(6px); }
  60%  { opacity: 1; transform: translateY(0) scale(1.01); filter: blur(0); }
  100% { opacity: 1; transform: translateY(0) scale(1);    filter: blur(0); }
}
@keyframes heroSub {
  0%   { opacity: 0; transform: translateY(16px); filter: blur(6px); }
  100% { opacity: 1; transform: translateY(0);   filter: blur(0); }
}
@keyframes heroButtons {
  0%   { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}
.artists-grid { display: grid; grid-template-columns: 1fr; gap: 18px; padding-bottom: 8px; }
@media (min-width: 760px){ .artists-grid { grid-template-columns: repeat(3, 1fr); } }
.artist-card { background: var(--surface); border: 1px solid #232327; border-radius: 16px; overflow: clip; display: grid; grid-template-rows: auto 1fr; }
.artist-photo { 
  position: relative; 
  cursor: pointer; 
  display: flex; 
  justify-content: center; 
  aspect-ratio: 4 / 3;
}
.artist-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--surface);
}
.style-tag { position: absolute; left: 12px; bottom: 12px; background: #0e0e11; border: 1px solid #2c2c33; padding: 6px 10px; border-radius: 999px; font-size: 12px; color: var(--muted); }
.artist-info { padding: 14px; display: grid; gap: 8px; }
.artist-info h3 { margin: 0; font-family: Unbounded, Inter, ui-sans-serif; }
.artist-info h3 a,
.artist-modal .modal-header h3 a {
  color: #9c7129;
  text-decoration: none;
}
.artist-info h3 a:hover,
.artist-modal .modal-header h3 a:hover {
  color: #7f5a21;
  text-decoration: none;
}
.artist-info p { margin: 0 0 6px; color: var(--muted); }

.works { padding: 20px 0 10px; }
.works-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 600px){
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px){
  .works-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.work-item {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #232327;
  background: #0f0f12;
}
.work-item img {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.about { padding: 20px 0 10px; }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 20px; align-items: center; }
@media (min-width: 900px){ .about-grid { grid-template-columns: 1.1fr 1fr; } }
.about-copy h2 { margin: 0 0 8px; font-family: Unbounded, Inter, ui-sans-serif; }
.about-copy p { margin: 0 0 12px; color: var(--muted); }
.pill-list { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; list-style: none; }
.pill-list li { background: #1b1b20; border: 1px solid #2b2b33; padding: 8px 12px; border-radius: 999px; color: var(--muted); }

.contact { padding: 24px 0 50px; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 900px){ .contact-grid { grid-template-columns: 1fr 1.2fr; } }
.contact-copy h2 { margin: 0 0 8px; font-family: Unbounded, Inter, ui-sans-serif; }
.contact-copy p { margin: 0 0 10px; color: var(--muted); }
.contact-meta p { margin: 0 0 6px; color: var(--muted); }
.contact-meta a { color: #9c7129; }
.contact-meta a:hover { color: #7f5a21; }
.body-sections-image { 
  margin-top: 20px; 
  padding: 16px; 
  background: var(--surface); 
  border-radius: 12px;
  border: 1px solid #232327;
  max-width: 100%;
  overflow: hidden;
}
.body-sections-image img { 
  width: 100%; 
  max-width: 400px; 
  height: auto; 
  display: block;
  margin: 0 auto;
  border-radius: 8px;
}
.contact-form { background: var(--surface); border: 1px solid #232327; border-radius: 16px; padding: 16px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 760px){ .form-row { grid-template-columns: 1fr 1fr; } }
.form-field { display: grid; gap: 6px; }
.form-field-inline {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}
.form-field-inline label {
  cursor: pointer;
  margin: 0;
  white-space: normal;
  flex: 1;
  min-width: 0;
  word-break: break-word;
}
.form-field-inline input[type="checkbox"] {
  cursor: pointer;
  flex-shrink: 0;
  margin-left: 0;
  margin-top: 4px;
}
.form-field label { color: var(--muted); font-size: 14px; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 10px 12px; border-radius: 12px; background: #0f0f12; border: 1px solid #2a2a31; color: var(--text); outline: none; }
.form-field input:focus-visible, .form-field select:focus-visible, .form-field textarea:focus-visible { box-shadow: var(--ring); border-color: var(--primary-600); }
.form-actions { display: flex; justify-content: flex-end; padding-top: 8px; }
.form-note { margin: 8px 0 0; color: var(--muted); font-size: 12px; text-align: right; }
.btn:disabled { 
  opacity: 0.5; 
  cursor: not-allowed; 
  background: #555; 
  border-color: #444; 
  color: #999;
}
.btn:disabled:hover { 
  background: #555; 
  transform: none; 
  box-shadow: none; 
}

.site-footer { 
  border-top: 1px solid #232327; 
  background: #0f0f12;
  max-width: 100vw;
  overflow-x: hidden;
}
.footer-inner { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  gap: 12px; 
  padding: 18px 0; 
  color: var(--muted);
  max-width: 100%;
  overflow: hidden;
  flex-wrap: wrap;
}
.footer-nav { 
  display: inline-flex; 
  gap: 12px;
  flex-wrap: wrap;
  max-width: 100%;
}
.footer-nav a { 
  color: var(--muted); 
  text-decoration: none;
  white-space: nowrap;
}
.footer-nav a:hover { color: var(--text); }

.artist-modal { width: min(960px, 94vw); border: 1px solid #2b2b33; border-radius: 16px; background: #0f0f12; color: var(--text); }
.artist-modal::backdrop { background: rgba(0,0,0,.65); }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; border-bottom: 1px solid #232327; }
.modal-header h3 { margin: 0; font-family: Unbounded, Inter, ui-sans-serif; }
.modal-close { background: transparent; color: var(--text); border: 1px solid #2b2b33; border-radius: 10px; padding: 6px 10px; cursor: pointer; }
.modal-close:hover { background: #1b1b20; }
.modal-body { 
  padding: 14px; 
  max-height: 70vh;
  overflow-y: auto;
}
.lightbox-grid { 
  display: grid; 
  grid-template-columns: 1fr; 
  gap: 10px; 
}
@media (min-width: 760px){ 
  .lightbox-grid { 
    grid-template-columns: repeat(3, 1fr); 
  } 
}
.lightbox-grid img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  display: block;
}
@media (max-width: 760px) {
  .lightbox-grid img {
    height: 300px;
  }
}

/* Remove focus ring inside artist modals (mouse interactions should not show red outline) */
.artist-modal :focus { outline: none; box-shadow: none; }
.artist-modal :focus-visible { outline: none; box-shadow: none; }

/* Accessibility tweaks */
:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
/* Hide focus styles when focus is not keyboard-induced (e.g., mouse click) */
:focus:not(:focus-visible) { outline: none; box-shadow: none; }

/* Country title for artists */
.country-title { 
  font-family: Unbounded, Inter, ui-sans-serif; 
  font-size: 24px; 
  margin: 20px 0 16px; 
  color: var(--text); 
}

.coming-soon { 
  color: var(--muted); 
  font-style: italic; 
  text-align: center; 
  padding: 40px 0; 
}

/* Product sections */
.merchandise, .movies, .art { padding: 40px 0 20px; }

.products-grid { 
  display: grid; 
  grid-template-columns: 1fr; 
  gap: 20px; 
  padding-bottom: 20px; 
}

@media (min-width: 760px) { 
  .products-grid { grid-template-columns: repeat(2, 1fr); } 
}

@media (min-width: 1000px) { 
  .products-grid { grid-template-columns: repeat(3, 1fr); } 
}

.product-card { 
  background: var(--surface); 
  border: 1px solid #232327; 
  border-radius: 16px; 
  overflow: hidden; 
  display: grid; 
  grid-template-rows: auto 1fr; 
}

.product-photo { 
  position: relative; 
  aspect-ratio: 4 / 3; 
}

.product-photo img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block; 
}

.product-info { 
  padding: 16px; 
  display: grid; 
  gap: 8px; 
}

.product-info h3 { 
  margin: 0; 
  font-family: Unbounded, Inter, ui-sans-serif; 
  color: var(--text); 
}

.product-info p { 
  margin: 0; 
  color: var(--muted); 
  font-size: 14px; 
}

.product-price { 
  font-weight: 600; 
  color: #9c7129; 
  font-size: 18px; 
  margin: 8px 0; 
}

/* Shopping cart button in header */
.cart-btn { 
  position: relative; 
  background: transparent; 
  border: 1px solid #2b2b32; 
  color: var(--text); 
  padding: 8px 12px; 
  border-radius: 10px; 
  cursor: pointer; 
  margin-left: auto; 
  margin-right: 10px;
  transition: all 0.3s ease;
  flex-shrink: 0;
  white-space: nowrap;
}

.cart-btn:hover { 
  background: #1b1b20; 
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.cart-count { 
  position: absolute; 
  top: -8px; 
  right: -8px; 
  background: var(--primary); 
  color: white; 
  border-radius: 50%; 
  width: 20px; 
  height: 20px; 
  font-size: 12px; 
  display: flex; 
  align-items: center; 
  justify-content: center;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Cart Modal */
.cart-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-modal.active {
  opacity: 1;
  visibility: visible;
}

.cart-content {
  background: var(--surface);
  border: 1px solid #2b2b33;
  border-radius: 20px;
  width: min(480px, 95vw);
  max-height: 80vh;
  min-height: 400px;
  overflow: hidden;
  transform: translateY(50px) scale(0.9);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  position: relative;
  display: flex;
  flex-direction: column;
}

.cart-modal.active .cart-content {
  transform: translateY(0) scale(1);
}

.cart-header {
  padding: 20px 24px;
  border-bottom: 1px solid #2b2b33;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--surface) 0%, #1a1a1c 100%);
}

.cart-header h3 {
  margin: 0;
  font-family: Unbounded, Inter, ui-sans-serif;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-close {
  background: transparent;
  border: 1px solid #2b2b33;
  color: var(--text);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.cart-close:hover {
  background: #e63946;
  border-color: #e63946;
  transform: rotate(90deg);
}

.cart-body {
  max-height: 400px;
  overflow-y: auto;
  padding: 0;
  flex: 1;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}

.cart-empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.5;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid #2b2b33;
  transition: all 0.3s ease;
  animation: slideInRight 0.4s ease;
}

.cart-item:hover {
  background: rgba(156, 113, 41, 0.05);
}

.cart-item:last-child {
  border-bottom: none;
}

@keyframes slideInRight {
  from { 
    opacity: 0; 
    transform: translateX(20px); 
  }
  to { 
    opacity: 1; 
    transform: translateX(0); 
  }
}

.cart-item-image {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.cart-item-details {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-weight: 600;
  color: var(--text);
  margin: 0 0 4px;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-price {
  color: #9c7129;
  font-size: 13px;
  font-weight: 500;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.quantity-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid #2b2b33;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s ease;
}

.quantity-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
}

.quantity-btn:active {
  transform: scale(0.95);
}

.quantity-display {
  min-width: 30px;
  text-align: center;
  font-weight: 600;
  color: var(--text);
}

.remove-btn {
  background: transparent;
  border: 1px solid #666;
  color: #999;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.remove-btn:hover {
  background: #e63946;
  border-color: #e63946;
  color: white;
  transform: scale(1.1);
}

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid #2b2b33;
  background: linear-gradient(135deg, #1a1a1c 0%, var(--surface) 100%);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 600;
}

.cart-total-label {
  color: var(--text);
}

.cart-total-amount {
  color: #9c7129;
  font-family: Unbounded, Inter, ui-sans-serif;
}

.cart-actions {
  display: flex;
  gap: 12px;
}

.cart-checkout {
  flex: 1;
  background: linear-gradient(135deg, #9c7129 0%, #7f5a21 100%);
  color: #000;
  border: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cart-checkout:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(156, 113, 41, 0.4);
}

.cart-checkout:active {
  transform: translateY(0);
}

.cart-clear {
  background: transparent;
  color: var(--muted);
  border: 1px solid #2b2b33;
  padding: 12px 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cart-clear:hover {
  background: #2b2b33;
  color: var(--text);
}

/* Cart Confirmation Screen */
.cart-confirmation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 30px;
  box-sizing: border-box;
}

.confirmation-content {
  text-align: center;
  max-width: 400px;
}

.spinner {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  border: 4px solid #2b2b33;
  border-top-color: #9c7129;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.confirmation-content h3 {
  color: var(--text);
  margin-bottom: 12px;
  font-size: 22px;
  font-family: Unbounded, Inter, ui-sans-serif;
}

.confirmation-message {
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.btn-back-cart {
  background: linear-gradient(135deg, #9c7129 0%, #7f5a21 100%);
  color: #000;
  border: none;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  margin: 0 auto;
  display: block;
}

.btn-back-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(156, 113, 41, 0.4);
}

.btn-back-cart:active {
  transform: translateY(0);
}

/* Anchor offset so fixed header doesn't cover section anchors */
.hero, .artists, .merchandise, .movies, .art, .works, .about, .contact { scroll-margin-top: 74px; }

/* Target highlight after smooth scroll */
.target-flash { animation: targetFlash 900ms ease-out; }
@keyframes targetFlash {
  0% { box-shadow: 0 0 0 0 rgba(156,113,41,0.0); }
  30% { box-shadow: 0 0 0 8px rgba(156,113,41,0.35); }
  100% { box-shadow: 0 0 0 0 rgba(156,113,41,0.0); }
}


