/* ============================================================
   ZAHARA MARSHAL ARTSPACE — Global Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&family=Great+Vibes&display=swap');

/* ---- CSS Variables ---- */
:root {
  --primary:      #2D0A3E;
  --primary-dark: #1A0828;
  --primary-mid:  #3D1550;
  --gold:         #D4A843;
  --gold-light:   #E8C878;
  --gold-pale:    #F5E4B5;
  --teal:         #1D8A7B;
  --teal-light:   #28B5A2;
  --cream:        #FDF6EC;
  --cream-dark:   #F2E8D8;
  --text-dark:    #1A0828;
  --text-mid:     #4A3560;
  --text-light:   #8B7BA8;
  --white:        #FFFFFF;
  --card-bg:      rgba(255,255,255,0.08);
  --card-border:  rgba(212,168,67,0.25);
  --shadow-gold:  0 8px 32px rgba(212,168,67,0.18);
  --shadow-purple:0 8px 32px rgba(45,10,62,0.35);
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    24px;
  --radius-xl:    40px;
  --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-script:  'Great Vibes', cursive;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Typography ---- */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); line-height: 1.25; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.25rem; }
p  { line-height: 1.75; color: var(--text-mid); }

.script-font { font-family: var(--font-script); color: var(--gold); font-size: 1.4em; }
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title { color: var(--primary); margin-bottom: 1rem; }
.section-title.light { color: var(--white); }
.section-desc { max-width: 600px; margin: 0 auto 2.5rem; text-align: center; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: all var(--transition);
  letter-spacing: 0.3px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #B8902E 100%);
  color: var(--primary-dark);
  box-shadow: 0 4px 18px rgba(212,168,67,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,168,67,0.55);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--primary-dark);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-purple);
}
.btn-dark:hover {
  background: var(--primary-mid);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(45,10,62,0.5);
}
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ---- Navigation ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  padding: 1rem 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(26,8,40,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.6rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.navbar.light-nav { background: rgba(26,8,40,0.92); backdrop-filter: blur(20px); }
.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}
.nav-brand .brand-sub {
  font-family: var(--font-script);
  font-size: 0.9rem;
  color: var(--gold-light);
  opacity: 0.8;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  background: rgba(212,168,67,0.1);
}
/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 0.3rem; }
.nav-dropdown > a::after { content: '▾'; font-size: 0.75rem; transition: transform var(--transition); }
.nav-dropdown:hover > a::after { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: rgba(26,8,40,0.97);
  backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 0.6rem 1rem;
  color: rgba(255,255,255,0.8);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
}
.dropdown-menu a:hover { background: rgba(212,168,67,0.15); color: var(--gold); }
.nav-cta { margin-left: 0.75rem; }
.nav-contact-btn {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(212,168,67,0.4);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-contact-btn:hover {
  background: rgba(212,168,67,0.15);
  color: var(--gold);
  border-color: var(--gold);
}
/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Cards ---- */
.art-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(45,10,62,0.1);
  transition: all var(--transition);
  border: 1px solid rgba(45,10,62,0.07);
}
.art-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(45,10,62,0.2);
}
.art-card .card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.art-card .card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.art-card:hover .card-img img { transform: scale(1.08); }
.art-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,8,40,0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.art-card:hover .card-overlay { opacity: 1; }
.art-card .card-body {
  padding: 1.25rem;
}
.art-card .card-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.art-card .card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 0.3rem;
}
.art-card .card-size { font-size: 0.82rem; color: var(--text-light); margin-bottom: 0.75rem; }
.art-card .card-price { font-weight: 700; color: var(--primary); font-size: 1.05rem; }
.art-card .card-price del { font-weight: 400; color: var(--text-light); font-size: 0.88rem; margin-left: 0.4rem; }

/* Glass card */
.glass-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 2rem;
}

/* ---- Section Wrappers ---- */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-dark { background: var(--primary); }
.section-dark-mid { background: var(--primary-dark); }
.section-cream { background: var(--cream); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 1.5rem; }

/* ---- Grid ---- */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.grid-6 { display: grid; grid-template-columns: repeat(6,1fr); gap: 1.25rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }

/* ---- Page Hero ---- */
.page-hero {
  min-height: 42vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-mid) 100%);
  display: flex;
  align-items: center;
  padding-top: 90px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero_banner.jpg') center/cover no-repeat;
  opacity: 0.12;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p  { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 500px; }
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ---- Pagination ---- */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
}
.page-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all var(--transition);
  border: 2px solid rgba(45,10,62,0.15);
  color: var(--primary);
  background: var(--white);
  cursor: pointer;
}
.page-btn:hover, .page-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.page-btn.active { background: linear-gradient(135deg,var(--primary),var(--primary-mid)); }
.page-btn-arrow { font-size: 1rem; }

/* ---- Filter Tabs ---- */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.filter-tab {
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 2px solid rgba(45,10,62,0.2);
  color: var(--primary);
  background: var(--white);
  transition: all var(--transition);
  cursor: pointer;
  font-family: var(--font-body);
}
.filter-tab:hover, .filter-tab.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.filter-tab.active {
  background: linear-gradient(135deg,var(--primary) 0%,var(--primary-mid) 100%);
  box-shadow: 0 4px 15px rgba(45,10,62,0.3);
}

/* ---- Social Order Buttons ---- */
.social-order-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  font-family: var(--font-body);
}
.social-btn-whatsapp { background: #25D366; color: #fff; }
.social-btn-whatsapp:hover { background: #1EB557; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
.social-btn-facebook { background: #1877F2; color: #fff; }
.social-btn-facebook:hover { background: #1565D8; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(24,119,242,0.4); }
.social-btn-instagram { background: linear-gradient(45deg,#FD1D1D,#E1306C,#833AB4); color: #fff; }
.social-btn-instagram:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(131,58,180,0.4); }
.social-btn-email { background: var(--primary); color: #fff; }
.social-btn-email:hover { background: var(--primary-mid); transform: translateY(-2px); box-shadow: var(--shadow-purple); }

/* ---- Footer ---- */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand { max-width: 300px; }
.footer-brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}
.footer-brand .brand-tagline {
  font-family: var(--font-script);
  font-size: 1rem;
  color: var(--gold-light);
  opacity: 0.7;
  display: block;
  margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.6); }
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(212,168,67,0.3);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--primary-dark);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---- Animations ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.animate-fade-up { animation: fadeUp 0.7s ease forwards; }
.animate-fade-in { animation: fadeIn 0.6s ease forwards; }
.animate-scale-in { animation: scaleIn 0.5s ease forwards; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- Lightbox ---- */
.lightbox-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}
.lightbox-overlay.active { opacity: 1; visibility: visible; }
.lightbox-img { max-width: 85vw; max-height: 85vh; border-radius: var(--radius-md); object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: #fff;
  font-size: 1.75rem;
  cursor: pointer;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  color: #fff; font-size: 1.5rem;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover,.lightbox-next:hover { background: rgba(212,168,67,0.3); }

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-primary { color: var(--primary); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg,var(--gold),var(--teal));
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}
.divider-center { margin: 1rem auto 1.5rem; }

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 900px) {
  .grid-3, .grid-6 { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26,8,40,0.98);
    backdrop-filter: blur(20px);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
  }
  .nav-mobile-menu.open { opacity: 1; visibility: visible; }
  .nav-mobile-menu a {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    transition: color var(--transition);
  }
  .nav-mobile-menu a:hover { color: var(--gold); }
  .nav-mobile-menu .mobile-sub {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .nav-mobile-menu .mobile-sub a {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
  }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}
@media (max-width: 540px) {
  .grid-3,.grid-4,.grid-6 { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
  .social-order-btns { flex-direction: column; }
}

/* ---- Scroll to top btn ---- */
.scroll-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg,var(--gold),#B8902E);
  color: var(--primary-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 20px rgba(212,168,67,0.4);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 999;
  border: none;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(212,168,67,0.55); }

/* ---- Toast ---- */
.toast {
  position: fixed;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--primary);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 99999;
  border: 1px solid var(--gold);
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.sold-badge {
    position: absolute;
    top: 15px;
    right: -40px;
    background: #d32f2f;
    color: #fff;
    padding: 8px 45px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: 0 3px 8px rgba(0,0,0,.3);
    z-index: 10;
    text-transform: uppercase;
}

/* Optional: make image look unavailable */
.sold-out img {
    filter: grayscale(30%) brightness(0.8);
}

/* Optional: disable hover effect */
.sold-out .card-overlay {
    display: none;
}