/* ============================================================
   Magic Stitch — Premium Handcraft Jewelry Portfolio
   ============================================================ */

/* --- Google Fonts are loaded in HTML <head> --- */

/* ===================== CSS VARIABLES ===================== */
:root {
  --bg-primary: #03050f;
  --bg-secondary: #060a1c;
  --bg-tertiary: #090e26;
  --bg-card: #0c1230;
  --gold: #d4a843;
  --gold-light: #f0d070;
  --gold-dark: #9a7418;
  --gold-glow: rgba(212, 168, 67, 0.2);
  --gold-shimmer: linear-gradient(135deg, #7a5a10 0%, #d4a843 25%, #f0d070 50%, #d4a843 75%, #7a5a10 100%);
  --text-primary: #f4f6ff;
  --text-secondary: #c8cde8;
  --text-muted: #8892b8;
  --border: rgba(212, 168, 67, 0.22);
  --border-hover: rgba(212, 168, 67, 0.55);
  --shadow-gold: 0 0 35px rgba(212, 168, 67, 0.14);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.65);
  --radius: 2px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
  --max-width: 1400px;
  --header-height: 80px;
}

/* ===================== RESET & BASE ===================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Cormorant', serif;
  font-weight: 300;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.8;
  overflow-x: hidden;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--gold-light);
}

::selection {
  background: var(--gold-dark);
  color: var(--text-primary);
}

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

.script-font {
  font-family: 'Great Vibes', cursive;
  color: var(--gold);
}

.nav-font {
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
}

/* ===================== UTILITY ===================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }

/* ===================== ANIMATIONS ===================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes goldPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes drawLine {
  from { width: 0; }
  to { width: 100%; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ===================== HEADER & NAV ===================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}

.header.scrolled {
  background: rgba(3, 5, 15, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Great Vibes', cursive;
  font-size: 1.8rem;
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition-fast);
}

.logo:hover {
  color: var(--gold-light);
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav a {
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--transition);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav a:hover,
.nav a.active {
  color: var(--gold);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

/* Mobile burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.burger span {
  width: 28px;
  height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
  transform-origin: center;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212, 168, 67, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(15, 25, 80, 0.5) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(212, 168, 67, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 40%, rgba(10, 18, 60, 0.7) 0%, transparent 65%),
    linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.05);
  animation: goldPulse 6s ease-in-out infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.03);
  animation: goldPulse 6s ease-in-out infinite 1s;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: float 8s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  animation: fadeIn 1.5s ease;
}

.hero-ornament {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: var(--gold-dark);
  font-size: 1.5rem;
  letter-spacing: 0.5em;
  opacity: 0.6;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 1rem;
  background: var(--gold-shimmer);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 6s linear infinite;
}

.hero-tagline {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--gold);
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.hero-subtitle {
  font-family: 'Cormorant', serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-block;
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  padding: 1rem 3rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.15), transparent);
  transition: left 0.6s ease;
}

.btn:hover {
  background: rgba(201, 168, 76, 0.1);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.15), inset 0 0 30px rgba(201, 168, 76, 0.05);
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.btn:hover::before {
  left: 100%;
}

.btn-filled {
  background: var(--gold-dark);
  border-color: var(--gold);
  color: var(--text-primary);
}

.btn-filled:hover {
  background: var(--gold);
  color: var(--bg-primary);
}

/* ===================== SECTION DIVIDER ===================== */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem 0;
  margin: 0 auto;
  max-width: 600px;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.section-divider .ornament {
  color: var(--gold-dark);
  font-size: 1.2rem;
  opacity: 0.6;
  font-family: serif;
}

/* ===================== SECTION HEADER ===================== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .label {
  font-family: 'Great Vibes', cursive;
  color: var(--gold);
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.section-header h2 {
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===================== WORKS GRID ===================== */
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.work-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}

.work-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-gold);
  transform: translateY(-5px);
}

.work-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.work-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.work-card-image .img-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.work-card:hover .work-card-image .img-hover {
  opacity: 1;
}

.work-card:hover .work-card-image img:first-child {
  transform: scale(1.05);
}

.work-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
  background: linear-gradient(transparent, rgba(3, 5, 15, 0.92));
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
}

.work-card:hover .work-card-overlay {
  transform: translateY(0);
  opacity: 1;
}

.work-card-overlay h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
  font-size: 1.3rem;
}

.work-card-overlay p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Work card info below image */
.work-card-info {
  padding: 1.2rem 1.5rem;
}

.work-card-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--text-primary);
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.work-card-info p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.work-card-info .category-tag {
  display: inline-block;
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.6rem;
  color: var(--gold-dark);
  border: 1px solid var(--border);
  padding: 0.2rem 0.8rem;
  margin-top: 0.8rem;
}

/* ===================== FILTER BUTTONS ===================== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 3rem;
}

.filter-btn {
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.65rem;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

/* ===================== LIGHTBOX ===================== */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  cursor: default;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border: 1px solid var(--border);
}

.lightbox-info {
  text-align: center;
  padding: 1.5rem 0;
}

.lightbox-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.lightbox-info p {
  color: var(--text-muted);
  font-size: 1rem;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2rem;
  color: var(--gold);
  cursor: pointer;
  background: none;
  border: none;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  z-index: 10000;
}

.lightbox-close:hover {
  color: var(--gold-light);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: var(--gold);
  background: none;
  border: none;
  cursor: pointer;
  padding: 1rem;
  transition: var(--transition-fast);
  z-index: 10000;
}

.lightbox-nav:hover {
  color: var(--gold-light);
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ===================== ABOUT SECTION ===================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-image-frame::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border: 1px solid var(--gold-dark);
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
}

.about-image-frame:hover::before {
  opacity: 1;
}

.about-image-frame img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-family: 'Great Vibes', cursive;
  font-size: 1.5rem;
}

.about-text h2 {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.about-text .quote {
  font-family: 'Great Vibes', cursive;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold-dark);
}

.about-text p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

/* ===================== CONTACT SECTION ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  font-style: italic;
  margin-bottom: 1rem;
}

.contact-info .order-text {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  text-decoration: none;
  color: var(--text-secondary);
}

.contact-link:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
  color: var(--gold);
}

.contact-link .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-link .icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.contact-link-text .label {
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.6rem;
  color: var(--text-muted);
  display: block;
}

.contact-link-text .value {
  font-size: 1.1rem;
  color: var(--text-primary);
}

.contact-note {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  background: rgba(201, 168, 76, 0.03);
}

.contact-note p {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-style: italic;
}

.contact-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-decoration-inner {
  text-align: center;
  padding: 3rem;
  border: 1px solid var(--border);
  width: 100%;
}

.contact-decoration-inner .script-font {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

/* ===================== FOOTER ===================== */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  text-align: center;
}

.footer-logo {
  font-family: 'Great Vibes', cursive;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.footer p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-made {
  margin-top: 0.5rem;
  font-family: 'Great Vibes', cursive;
  font-size: 1rem;
  color: var(--gold-dark);
}

/* ===================== PAGE HERO (inner pages) ===================== */
.page-hero {
  padding: 10rem 0 4rem;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 30%, rgba(20, 25, 60, 0.3) 0%, transparent 60%),
    var(--bg-primary);
}

.page-hero h1 {
  font-style: italic;
  background: var(--gold-shimmer);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.page-hero .subtitle {
  font-family: 'Great Vibes', cursive;
  font-size: 1.5rem;
  color: var(--gold-dark);
}

/* ===================== EMPTY STATE ===================== */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
}

.empty-state .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.3;
}

.empty-state p {
  font-size: 1.2rem;
  font-style: italic;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: rgba(3, 5, 15, 0.98);
    backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: right var(--transition);
    border-left: 1px solid var(--border);
  }

  .nav.open {
    right: 0;
  }

  .nav a {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
  }

  .works-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section {
    padding: 4rem 0;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .filter-bar {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.6rem;
  }

  .contact-link {
    padding: 0.8rem 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .btn {
    padding: 0.8rem 2rem;
    font-size: 0.65rem;
  }

  .works-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================== SCROLL BAR ===================== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ===================== LOADING STATE ===================== */
.loading-spinner {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 1px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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