:root {
  --primary: #6B2FA0;
  --primary-dark: #4A1A73;
  --primary-light: #9B59B6;
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --gold-dark: #B8960C;
  --dark: #1A0A2E;
  --dark2: #2D1B4E;
  --text: #F5F0FF;
  --text-muted: #C8B8E0;
  --white: #FFFFFF;
  --shadow: 0 8px 32px rgba(0,0,0,0.3);
  --radius: 16px;
  --transition: 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

/* ===== Top Bar ===== */
.top-bar {
  background: linear-gradient(135deg, var(--dark), var(--primary-dark));
  padding: 10px 0;
  border-bottom: 2px solid var(--gold);
  font-size: 13px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: var(--gold-light); text-decoration: none; margin: 0 10px; }
.top-bar a:hover { color: var(--gold); }
.top-bar .socials a { font-size: 16px; margin: 0 6px; }

/* ===== Header ===== */
header {
  background: linear-gradient(135deg, var(--dark2) 0%, var(--primary-dark) 50%, var(--dark) 100%);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--dark);
  font-weight: bold;
}
.logo-text h1 { font-size: 18px; color: var(--gold); line-height: 1.2; }
.logo-text small { font-size: 11px; color: var(--text-muted); display: block; }

nav { display: flex; align-items: center; gap: 5px; }
nav a {
  color: var(--text);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}
nav a:hover, nav a.active {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
}
nav .dropdown { position: relative; }
nav .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark2);
  min-width: 220px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(212,175,55,0.2);
  padding: 8px;
  z-index: 999;
}
nav .dropdown:hover .dropdown-content { display: block; }
nav .dropdown-content a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
}
nav .dropdown-content a:hover { background: rgba(212,175,55,0.1); }

.hamburger { display: none; font-size: 28px; cursor: pointer; color: var(--gold); }

/* ===== Hero / Slideshow ===== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  z-index: 0;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, rgba(26,10,46,0.9) 0%, rgba(26,10,46,0.7) 30%, rgba(74,26,115,0.4) 60%, rgba(26,10,46,0.3) 100%);
}
/* Slide background images (faith & worship themed) */
.hero-slide.slide-1 { background-image: linear-gradient(135deg, rgba(26,10,46,0.7), rgba(74,26,115,0.4)), url('../images/hero-worship-1.jpg'); }
.hero-slide.slide-2 { background-image: linear-gradient(135deg, rgba(26,10,46,0.7), rgba(74,26,115,0.4)), url('../images/hero-worship-2.jpg'); }
.hero-slide.slide-3 { background-image: linear-gradient(135deg, rgba(26,10,46,0.7), rgba(74,26,115,0.4)), url('../images/hero-worship-3.jpg'); }
.hero-slide.slide-4 { background-image: linear-gradient(135deg, rgba(26,10,46,0.7), rgba(74,26,115,0.4)), url('../images/hero-church-1.jpg'); }
.hero-slide.slide-5 { background-image: linear-gradient(135deg, rgba(26,10,46,0.7), rgba(74,26,115,0.4)), url('../images/hero-prayer-1.jpg'); }
/* Slide overlay for image-based slides */
.hero-slide::before { display: none; }
/* Slideshow nav dots */
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.hero-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active { background: var(--gold); border-color: var(--gold); box-shadow: 0 0 12px rgba(212,175,55,0.5); }
.hero-dot:hover { background: rgba(212,175,55,0.6); }
/* Slide arrows */
.hero-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 3;
  pointer-events: none;
}
.hero-arrow {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212,175,55,0.2);
  color: var(--gold);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  pointer-events: auto;
  backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: rgba(212,175,55,0.2); border-color: var(--gold); transform: scale(1.1); }
.hero-content { position: relative; z-index: 2; padding: 20px 60px; max-width: 750px; }
.hero-badge {
  display: inline-block;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--gold-light);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 13px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}
.hero h1 { font-size: 52px; color: var(--gold); margin-bottom: 10px; line-height: 1.2; }
.hero h1 span { display: block; font-size: 28px; color: var(--text-muted); font-weight: 300; }
.hero p { font-size: 18px; color: var(--text-muted); max-width: 650px; margin: 15px 0 30px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 15px; justify-content: flex-start; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(212,175,55,0.3); }
.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover { background: var(--gold); color: var(--dark); transform: translateY(-3px); }
.btn-secondary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
}
.btn-secondary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(107,47,160,0.3); }

/* ===== Live Notice Bar ===== */
.live-bar {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  padding: 12px 0;
  text-align: center;
  color: var(--dark);
  font-weight: 600;
  font-size: 14px;
}
.live-bar .pulse { display: inline-block; width: 10px; height: 10px; background: #e74c3c; border-radius: 50%; margin-right: 8px; animation: pulse 1.5s infinite; }
@keyframes pulse { 0% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } 100% { opacity: 1; transform: scale(1); } }

/* ===== Sections Common ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--dark2); }
.section-dark { background: var(--dark); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 36px;
  color: var(--gold);
  position: relative;
  display: inline-block;
}
.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 10px auto 0;
}
.section-title p { color: var(--text-muted); margin-top: 10px; font-size: 16px; }

/* ===== Quick Features Grid ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.feature-card {
  background: linear-gradient(135deg, rgba(107,47,160,0.1), rgba(26,10,46,0.8));
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition);
  text-decoration: none;
  color: var(--text);
  cursor: pointer;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 10px 40px rgba(212,175,55,0.15);
}
.feature-icon {
  width: 65px; height: 65px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--dark);
}
.feature-card h3 { font-size: 16px; margin-bottom: 8px; color: var(--gold-light); }
.feature-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ===== About Section ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: rgba(255,255,255,0.3);
}
.about-content h2 { font-size: 32px; color: var(--gold); margin-bottom: 15px; }
.about-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 15px; }
.about-stats { display: flex; gap: 30px; margin-top: 25px; }
.stat-item h3 { font-size: 32px; color: var(--gold); }
.stat-item p { font-size: 13px; color: var(--text-muted); margin: 0; }

/* ===== Services Times ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.service-card {
  background: linear-gradient(135deg, rgba(212,175,55,0.05), rgba(107,47,160,0.1));
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius);
  padding: 25px;
  text-align: center;
  transition: var(--transition);
}
.service-card:hover { border-color: var(--gold); }
.service-card .day { font-size: 14px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.service-card h3 { font-size: 20px; color: var(--gold); margin: 10px 0; }
.service-card .time { font-size: 14px; color: var(--text-muted); }
.service-card .icon { font-size: 36px; margin-bottom: 10px; }

/* ===== Featured Content ===== */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}
.content-card {
  background: linear-gradient(135deg, rgba(107,47,160,0.08), rgba(26,10,46,0.6));
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.content-card:hover { transform: translateY(-3px); border-color: var(--gold); }
.content-card .thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--primary-dark), var(--dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: rgba(212,175,55,0.3);
  position: relative;
}
.content-card .thumb .play {
  position: absolute;
  width: 55px; height: 55px;
  background: rgba(212,175,55,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--dark);
}
.content-card .info { padding: 20px; }
.content-card .info h3 { font-size: 16px; margin-bottom: 8px; color: var(--gold-light); }
.content-card .info p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.content-card .info .meta { font-size: 12px; color: var(--text-muted); margin-top: 10px; display: flex; gap: 15px; }

/* ===== Testimonials ===== */
.testimonial-slider { max-width: 800px; margin: 0 auto; position: relative; }
.testimonial-card {
  background: linear-gradient(135deg, rgba(107,47,160,0.1), rgba(26,10,46,0.6));
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius);
  padding: 35px;
  text-align: center;
}
.testimonial-card .quote { font-size: 40px; color: var(--gold); opacity: 0.4; }
.testimonial-card p { font-size: 16px; color: var(--text-muted); line-height: 1.8; font-style: italic; }
.testimonial-card .author { margin-top: 20px; }
.testimonial-card .author strong { color: var(--gold-light); }
.testimonial-card .author span { font-size: 13px; color: var(--text-muted); }

/* ===== Contact Section ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-info h3 { color: var(--gold); margin-bottom: 15px; font-size: 22px; }
.contact-info .item { display: flex; gap: 15px; margin-bottom: 20px; align-items: flex-start; }
.contact-info .item .icon { font-size: 20px; color: var(--gold); min-width: 30px; }
.contact-info .item p { color: var(--text-muted); font-size: 14px; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 15px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 10px;
  color: var(--text);
  font-size: 14px;
  transition: var(--transition);
  font-family: inherit;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
}
.contact-form textarea { height: 120px; resize: vertical; }
.contact-form select option { background: var(--dark2); color: var(--text); }

/* ===== Footer ===== */
footer {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 50%, var(--dark) 100%);
  border-top: 2px solid rgba(212,175,55,0.2);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 { color: var(--gold); margin-bottom: 20px; font-size: 18px; }
.footer-col p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 5px; }
.footer-bottom {
  border-top: 1px solid rgba(212,175,55,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-bottom strong { color: var(--gold-light); }

/* ===== Page Header ===== */
.page-header {
  padding: 60px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--dark), var(--primary-dark));
  border-bottom: 2px solid rgba(212,175,55,0.2);
}
.page-header h1 { font-size: 42px; color: var(--gold); margin-bottom: 10px; }
.page-header p { color: var(--text-muted); font-size: 16px; max-width: 600px; margin: 0 auto; }

/* ===== Language Switcher ===== */
.lang-switcher { position: relative; }
.lang-switcher select {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212,175,55,0.2);
  color: var(--text);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  cursor: pointer;
}
.lang-switcher select option { background: var(--dark2); }

/* ===== Prayer Clock ===== */
.prayer-clock {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, rgba(107,47,160,0.15), rgba(26,10,46,0.6));
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius);
  max-width: 500px;
  margin: 0 auto;
}
.prayer-clock .clock-display {
  font-size: 64px;
  font-weight: 300;
  color: var(--gold);
  margin: 20px 0;
  font-family: 'Courier New', monospace;
}
.prayer-clock .prayer-times { margin-top: 20px; }
.prayer-clock .prayer-times .row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(212,175,55,0.1);
  font-size: 14px;
}
.prayer-clock .prayer-times .row .label { color: var(--text-muted); }
.prayer-clock .prayer-times .row .value { color: var(--gold-light); font-weight: 600; }

/* ===== Devotion Daily ===== */
.devotion-card {
  background: linear-gradient(135deg, rgba(212,175,55,0.05), rgba(107,47,160,0.1));
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius);
  padding: 35px;
  max-width: 700px;
  margin: 0 auto;
}
.devotion-card .date { font-size: 13px; color: var(--text-muted); }
.devotion-card h3 { font-size: 22px; color: var(--gold); margin: 10px 0; }
.devotion-card .verse {
  background: rgba(212,175,55,0.1);
  padding: 15px;
  border-radius: 10px;
  border-left: 3px solid var(--gold);
  margin: 15px 0;
  font-style: italic;
  color: var(--text-muted);
}
.devotion-card .verse strong { color: var(--gold-light); display: block; margin-top: 8px; }
.devotion-card .message { color: var(--text-muted); line-height: 1.8; font-size: 15px; }
.devotion-card .prayer {
  margin-top: 20px;
  background: rgba(107,47,160,0.15);
  padding: 15px;
  border-radius: 10px;
}
.devotion-card .prayer strong { color: var(--gold-light); }
.devotion-card .prayer p { color: var(--text-muted); margin-top: 5px; font-style: italic; }

/* ===== Modal ===== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--dark2);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius);
  padding: 30px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 15px; right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
  background: none;
  border: none;
}
.modal-close:hover { color: var(--gold); }
.modal h2 { color: var(--gold); margin-bottom: 20px; font-size: 24px; }
.modal form input, .modal form textarea, .modal form select {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 10px;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
}
.modal form input:focus, .modal form textarea:focus, .modal form select:focus {
  outline: none;
  border-color: var(--gold);
}

/* ===== Library Grid ===== */
.library-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

/* ===== Giving Section ===== */
.giving-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.giving-card {
  background: linear-gradient(135deg, rgba(212,175,55,0.05), rgba(107,47,160,0.08));
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius);
  padding: 25px;
  text-align: center;
}
.giving-card .icon { font-size: 40px; margin-bottom: 10px; }
.giving-card h3 { color: var(--gold); margin-bottom: 8px; }
.giving-card p { color: var(--text-muted); font-size: 13px; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  nav { display: none; }
  nav.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: var(--dark2); padding: 15px; border-bottom: 2px solid rgba(212,175,55,0.2); }
  .hamburger { display: block; }
  .hero { min-height: 70vh; }
  .hero h1 { font-size: 28px; }
  .hero h1 span { font-size: 16px; }
  .hero-content { padding: 20px 24px; }
  .hero-arrow { width: 36px; height: 36px; font-size: 14px; }
  .hero-dots { bottom: 15px; }
  .hero-dot { width: 8px; height: 8px; }
  .section-title h2 { font-size: 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .prayer-clock .clock-display { font-size: 42px; }
}

/* ===== Animations ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ===== YouTube Embed ===== */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 12px;
}

/* ===== Filters ===== */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}
.filter-btn {
  padding: 8px 20px;
  border: 1px solid rgba(212,175,55,0.3);
  background: transparent;
  color: var(--text-muted);
  border-radius: 50px;
  cursor: pointer;
  font-size: 13px;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

/* ===== Category Tabs ===== */
.category-tabs { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 30px; }
.category-tab {
  padding: 10px 24px;
  border: 1px solid rgba(212,175,55,0.2);
  background: transparent;
  color: var(--text-muted);
  border-radius: 50px;
  cursor: pointer;
  font-size: 14px;
  transition: var(--transition);
}
.category-tab:hover, .category-tab.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  border-color: var(--gold);
}
