/* ================================================================
   GYANI GURU - Astrologer E-Commerce
   Color Theme: Gerua (Saffron) + Gold + Maroon
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --gerua: #D2691E;
  --gerua-light: #E8854A;
  --gerua-dark: #A0501A;
  --gerua-deep: #8B3A0E;
  --gold: #D4AF37;
  --gold-light: #F5E27A;
  --gold-dark: #B8960C;
  --maroon: #800020;
  --maroon-light: #C0392B;
  --cream: #FFF8F0;
  --cream-dark: #F5E6D3;
  --warm-white: #FFFAF5;
  --dark-bg: #1A0A00;
  --dark-surface: #2D1500;
  --text-dark: #2C1810;
  --text-medium: #5A3A20;
  --text-light: #8B6A50;
  --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
  --shadow-gerua: 0 4px 20px rgba(210, 105, 30, 0.3);
  --gradient-saffron: linear-gradient(135deg, #D2691E 0%, #D4AF37 50%, #D2691E 100%);
  --gradient-divine: linear-gradient(180deg, #1A0A00 0%, #3D1A00 50%, #1A0A00 100%);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--warm-white);
  color: var(--text-dark);
  overflow-x: hidden;
  width: 100%;
  font-weight: 300; /* Light font weight */
}
.logo{
  max-width: 60px !important;
}
/* Custom Text Helpers */
.text-gold { color: var(--gold) !important; }
.text-gold-light { color: var(--gold-light) !important; }
.text-gerua { color: var(--gerua) !important; }
.text-cream { color: var(--cream) !important; }

/* Handle muted text visibility across themes */
.text-muted { color: var(--text-light) !important; }
.bg-dark .text-muted, 
.bg-dark-surface .text-muted, 
.hero-section .text-muted,
.footer .text-muted { 
  color: rgba(255, 255, 255, 0.6) !important; 
}

h1, h2, h3, .heading-devanagari {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.font-cinzel { font-family: 'Inter', sans-serif; font-weight: 700; letter-spacing: -0.5px; }
.font-tiro { font-family: 'Inter', sans-serif; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--gerua); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gerua-dark); }

/* ---- Top Bar ---- */
.top-bar {
  background: var(--dark-bg);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  padding: 8px 0;
  font-size: 0.82rem;
  color: var(--gold-light);
}
.top-bar a { color: var(--gold-light); text-decoration: none; transition: color 0.3s; }
.top-bar a:hover { color: var(--gold); }
.top-bar .marquee-text { animation: marquee-slide 30s linear infinite; white-space: nowrap; }
.top-bar .marquee-wrap { overflow: hidden; min-width: 0; }
.top-bar .marquee-inner { display: inline-block; white-space: nowrap; animation: marquee-slide 30s linear infinite; }
.top-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.top-bar-links { display: flex; gap: 12px; flex-shrink: 0; }
.top-link { color: var(--gold-light); text-decoration: none; font-size: .78rem; display: flex; align-items: center; gap: 4px; white-space: nowrap; transition: color .3s; }
.top-link:hover { color: var(--gold); }
.top-link i { font-size: .78rem; }

@keyframes marquee-slide {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* ---- Navbar ---- */
.navbar {
  background: rgba(26, 10, 0, 0.97) !important;
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--gold);
  padding: 0 !important;
  transition: all 0.4s ease;
  z-index: 1050;
}
.header-sticky-wrapper {
  position: sticky;
  top: 0;
  z-index: 1050;
}
.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(212, 175, 55, 0.2);
}
.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(212, 175, 55, 0.2);
}
.navbar-brand {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-logo-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-saffron);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.5); }
  50% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.8), 0 0 60px rgba(210, 105, 30, 0.4); }
}
.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name .main { font-family: 'Inter', sans-serif; font-size: 1.3rem; color: var(--gold); font-weight: 800; letter-spacing: -0.5px; }
.brand-name .sub { font-family: 'Poppins', sans-serif; font-size: 0.7rem; color: var(--gerua-light); letter-spacing: 1px; font-weight: 400; }

.navbar-nav .nav-link {
  color: var(--cream) !important;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 12px 18px !important;
  position: relative;
  transition: color 0.3s;
  letter-spacing: 0.5px;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-saffron);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 70%; }
.navbar-nav .nav-link:hover { color: var(--gold) !important; }
.navbar-nav .nav-link.active { color: var(--gold) !important; }

.nav-icons { display: flex; align-items: center; gap: 8px; padding: 0 15px; }
.nav-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  position: relative;
}
.nav-icon-btn:hover {
  background: var(--gold);
  color: var(--dark-bg);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.badge-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--gerua);
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 2px solid var(--dark-bg);
}

.navbar-toggler {
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
  color: var(--gold) !important;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28212, 175, 55, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ---- Buttons ---- */
.btn-saffron {
  background: var(--gradient-saffron);
  color: var(--dark-bg);
  border: none;
  border-radius: 50px;
  padding: 12px 32px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-saffron::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}
.btn-saffron:hover::before { left: 100%; }
.btn-saffron:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
  color: var(--dark-bg);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 50px;
  padding: 10px 28px;
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--dark-bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-cart {
  background: linear-gradient(135deg, var(--gerua) 0%, var(--gerua-dark) 100%);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-cart:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gerua);
  background: linear-gradient(135deg, var(--gerua-light) 0%, var(--gerua) 100%);
}

.btn-wishlist {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid var(--cream-dark);
  border-radius: 8px;
  padding: 9px 16px;
  font-size: 0.85rem;
  transition: all 0.3s;
  cursor: pointer;
}
.btn-wishlist:hover, .btn-wishlist.active {
  color: var(--maroon);
  border-color: var(--maroon);
  background: rgba(128, 0, 32, 0.05);
}
.btn-wishlist.active i { animation: heartbeat 0.4s ease; }
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.4); }
}

/* ---- Section Titles ---- */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title .om-symbol {
  font-size: 2.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
  animation: rotate-om 8s linear infinite;
}
@keyframes rotate-om { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.section-title h2 {
  font-family: 'Yatra One', serif;
  font-size: 2.4rem;
  color: var(--gerua-dark);
  margin-bottom: 0.5rem;
}
.section-title .subtitle {
  color: var(--text-light);
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}
.title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 12px 0 16px;
}
.title-divider::before, .title-divider::after {
  content: '';
  height: 1px;
  width: 80px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.title-divider::after { background: linear-gradient(to left, transparent, var(--gold)); }
.title-divider .lotus { color: var(--gold); font-size: 1.2rem; }

/* ---- Hero Section ---- */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-divine);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/banner.png') center/cover no-repeat;
  opacity: 0.25;
  z-index: 0;
}
.hero-mandala {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, rgba(210,105,30,0.1) 40%, transparent 70%);
  border-radius: 50%;
  animation: mandala-rotate 20s linear infinite;
}
@keyframes mandala-rotate { from { transform: translateY(-50%) rotate(0deg); } to { transform: translateY(-50%) rotate(360deg); } }

.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.8rem;
  color: var(--gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-family: 'Poppins', sans-serif;
}
.hero-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}
.hero-title .gold-text { color: var(--gold-light); }
.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.hero-desc {
  color: rgba(255,255,255,0.95);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 550px;
  margin-bottom: 2rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  font-weight: 300;
}
p { font-weight: 300; }
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .number {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.hero-stat .label { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.hero-book-float {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero-book-float img {
  max-height: 500px;
  filter: drop-shadow(0 20px 40px rgba(212,175,55,0.4));
  animation: float-book 4s ease-in-out infinite;
}
@keyframes float-book {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.particle {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0.6;
}
@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}

/* ---- Features Strip ---- */
.features-strip {
  background: var(--gradient-saffron);
  padding: 20px 0;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark-bg);
  font-weight: 600;
  font-size: 0.9rem;
  justify-content: center;
}
.feature-item i { font-size: 1.2rem; }

/* ---- Book Cards ---- */
.book-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(44, 24, 16, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.15);
  cursor: pointer;
}
.book-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(210, 105, 30, 0.25);
  border-color: rgba(212, 175, 55, 0.4);
}
.book-card .card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--maroon);
  color: white;
  border-radius: 50px;
  padding: 3px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.book-card .wishlist-btn-card {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.book-card .wishlist-btn-card:hover, .book-card .wishlist-btn-card.active {
  color: var(--maroon);
  transform: scale(1.1);
}
.book-card .wishlist-btn-card.active { color: var(--maroon); }

.book-image-wrap {
  /* height: 280px; */
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.book-image-wrap img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.book-card:hover .book-image-wrap img { transform: scale(1.05); }

.book-card-body { padding: 20px; }
.book-category {
  font-size: 0.72rem;
  color: var(--gerua);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.book-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}
.book-author {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 10px;
}
.book-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 12px; }
.stars { color: var(--gold); font-size: 0.85rem; }
.rating-count { font-size: 0.78rem; color: var(--text-light); }
.book-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 15px; }
.price-current { font-size: 1.4rem; font-weight: 700; color: var(--gerua-dark); }
.price-original { font-size: 0.9rem; color: var(--text-light); text-decoration: line-through; }
.price-discount { font-size: 0.78rem; color: #27ae60; font-weight: 600; background: rgba(39,174,96,0.1); padding: 2px 8px; border-radius: 50px; }

.book-actions { display: flex; gap: 8px; }
.book-actions .btn-cart { flex: 1; }

/* ---- Featured Section ---- */
.featured-section {
  background: var(--cream);
  padding: 80px 0;
  position: relative;
}
.featured-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-saffron);
}

/* ---- About Section ---- */
.about-section {
  background: var(--gradient-divine);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.about-img-wrap {
  position: relative;
  display: inline-block;
}
.about-img-wrap img {
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius-lg);
  border: 3px solid var(--gold);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}
.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gradient-saffron);
  border-radius: 12px;
  padding: 15px 20px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.about-img-badge .years { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 2rem; color: var(--dark-bg); display: block; line-height: 1; }
.about-img-badge .label { font-size: 0.75rem; color: var(--dark-bg); font-weight: 600; }
.about-text h2 { color: var(--gold); margin-bottom: 0.5rem; }
.about-text .designation { font-family: 'Tiro Devanagari Sanskrit', serif; color: var(--gerua-light); font-size: 1rem; margin-bottom: 1.5rem; }
.about-text p { color: rgba(255,255,255,0.8); line-height: 1.9; margin-bottom: 1rem; }
.about-creds { display: flex; flex-direction: column; gap: 12px; margin: 1.5rem 0; }
.cred-item { display: flex; align-items: center; gap: 12px; }
.cred-item i { color: var(--gold); width: 20px; }
.cred-item span { color: rgba(255,255,255,0.85); font-size: 0.9rem; }

/* ---- Testimonials ---- */
.testimonials-section {
  background: var(--warm-white);
  padding: 80px 0;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 4px 20px rgba(44, 24, 16, 0.08);
  position: relative;
  transition: transform 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-5px); }
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -15px;
  left: 25px;
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  font-family: Georgia, serif;
  opacity: 0.3;
}
.testimonial-text { color: var(--text-medium); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 50px; height: 50px;
  background: var(--gradient-saffron);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--dark-bg);
}
.author-info .name { font-weight: 600; color: var(--text-dark); }
.author-info .loc { font-size: 0.8rem; color: var(--text-light); }

/* ---- Categories ---- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.cat-card {
  background: white;
  border-radius: var(--radius);
  padding: 30px 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  box-shadow: 0 2px 15px rgba(44, 24, 16, 0.08);
  text-decoration: none;
  color: var(--text-dark);
  display: block;
  position: relative;
  overflow: hidden;
}

.cat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.cat-card:hover,
.cat-card.active {
  border-color: rgba(212, 175, 55, 0.3);
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  transform: translateY(-8px);
  color: var(--gerua-dark);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.cat-card:hover::before {
  transform: scaleX(1);
}

.cat-icon-placeholder {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.cat-icon-placeholder::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}

.cat-card:hover .cat-icon-placeholder {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.cat-card:hover .cat-icon-placeholder::after {
  opacity: 1;
}

.cat-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: var(--maroon);
  transition: color 0.3s;
}

.cat-card:hover .cat-name {
  color: var(--gerua-dark);
}

.cat-count {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
  transition: color 0.3s;
}

.cat-card:hover .cat-count {
  color: var(--gerua-light);
}

/* Mobile responsive for categories */
@media (max-width: 576px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .cat-card {
    padding: 20px 10px;
  }

  .cat-icon-placeholder {
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .cat-name {
    font-size: 0.8rem;
  }

  .cat-count {
    font-size: 0.7rem;
  }
}

/* ---- Shop / Filter ---- */
.shop-section { padding: 60px 0; background: var(--warm-white); min-height: 80vh; }
.filter-sidebar {
  background: var(--dark-surface);
  border-radius: var(--radius-lg);
  padding: 25px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 90px;
  color: white;
}
.filter-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  padding-bottom: 12px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.filter-group { margin-bottom: 25px; }
.filter-group-title { font-weight: 600; color: var(--text-dark); font-size: 0.9rem; margin-bottom: 12px; }
.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  cursor: pointer;
}
.filter-checkbox input[type="checkbox"] { accent-color: var(--gerua); width: 16px; height: 16px; cursor: pointer; }
.filter-checkbox label { font-size: 0.85rem; color: var(--text-medium); cursor: pointer; }
.filter-checkbox label span { color: var(--text-light); font-size: 0.78rem; }

.price-range-track {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, var(--gerua) 0%, var(--gerua) 60%, #ddd 60%);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}
.price-range-track::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  background: var(--gold);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(212, 175, 55, 0.4);
}

.sort-bar {
  background: white;
  border-radius: var(--radius);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 2px 10px rgba(44, 24, 16, 0.06);
}
.results-count { font-size: 0.9rem; color: var(--text-medium); }
.results-count strong { color: var(--gerua-dark); }
.sort-select {
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.85rem;
  color: var(--text-dark);
  cursor: pointer;
  background: var(--cream);
  outline: none;
}
.view-toggle { display: flex; gap: 6px; }
.view-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.view-btn.active { background: var(--gerua); color: white; border-color: var(--gerua); }

/* ---- List View Book Card ---- */
.book-card-list {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  transition: all 0.3s;
  margin-bottom: 15px;
}
.book-card-list:hover {
  box-shadow: 0 10px 30px rgba(210, 105, 30, 0.15);
  border-color: rgba(212, 175, 55, 0.3);
}
.book-card-list .list-img {
  width: 130px;
  flex-shrink: 0;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.book-card-list .list-img img { width: 100%; height: 100%; object-fit: cover; }
.book-card-list .list-body { padding: 20px; flex: 1; }
.book-card-list .list-actions { display: flex; align-items: center; gap: 10px; }

/* ---- Newsletter ---- */
.newsletter-section {
  background: var(--gradient-divine);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: 'ॐ';
  position: absolute;
  font-size: 20rem;
  color: rgba(212, 175, 55, 0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 0;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}
.newsletter-form input {
  flex: 1;
  border: none;
  padding: 14px 20px;
  font-size: 0.9rem;
  outline: none;
  background: rgba(255,255,255,0.95);
}
.newsletter-form button {
  background: var(--gradient-saffron);
  border: none;
  padding: 14px 28px;
  font-weight: 700;
  color: var(--dark-bg);
  cursor: pointer;
  white-space: nowrap;
  transition: filter 0.3s;
}
.newsletter-form button:hover { filter: brightness(1.1); }

/* ---- Contact Strip ---- */
.contact-strip {
  background: var(--cream-dark);
  padding: 40px 0;
}
.contact-card {
  background: white;
  border-radius: var(--radius);
  padding: 25px;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s;
}
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-gold); }
.contact-icon { font-size: 2rem; color: var(--gerua); margin-bottom: 12px; }
.contact-card h5 { font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.contact-card p { color: var(--text-light); font-size: 0.85rem; margin: 0; }
.contact-card a { color: var(--gerua-dark); text-decoration: none; font-weight: 500; }

/* ---- Footer ---- */
.footer {
  background: var(--dark-bg);
  padding: 60px 0 30px;
  border-top: 2px solid rgba(212, 175, 55, 0.3);
}
.footer-brand { margin-bottom: 1.5rem; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.8; margin-top: 1rem; }
.footer-heading { font-family: 'Inter', sans-serif; font-weight: 700; color: var(--gold); font-size: 1rem; margin-bottom: 20px; position: relative; padding-bottom: 10px; letter-spacing: 0.5px; }
.footer-heading::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background: var(--gerua); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; transition: all 0.3s; display: flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.footer-links a::before { content: '❯'; font-size: 0.7rem; color: var(--gerua); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 25px; margin-top: 40px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 15px; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.85rem; margin: 0; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
}
.social-link:hover { background: var(--gold); color: var(--dark-bg); transform: translateY(-3px); }

/* ---- Cart Page ---- */
.cart-section { padding: 60px 0; background: var(--cream); min-height: 60vh; }
.cart-table-wrap {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.2);
  box-shadow: 0 4px 20px rgba(44,24,16,0.08);
}
.cart-table th { background: var(--gerua-dark); color: white; font-weight: 600; padding: 16px; font-size: 0.88rem; }
.cart-table td { padding: 16px; vertical-align: middle; border-bottom: 1px solid var(--cream-dark); }
.cart-item-img { width: 70px; height: 80px; object-fit: cover; border-radius: 8px; }
.cart-item-title { font-weight: 600; color: var(--text-dark); margin-bottom: 4px; font-size: 0.9rem; }
.cart-item-author { font-size: 0.78rem; color: var(--text-light); }
.qty-control { display: flex; align-items: center; gap: 0; border: 1px solid var(--cream-dark); border-radius: 8px; overflow: hidden; width: fit-content; }
.qty-btn { width: 34px; height: 34px; border: none; background: var(--cream); color: var(--text-dark); font-size: 1rem; cursor: pointer; transition: background 0.2s; display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { background: var(--gerua); color: white; }
.qty-input { width: 45px; height: 34px; border: none; text-align: center; font-weight: 600; font-size: 0.9rem; color: var(--text-dark); background: white; border-left: 1px solid var(--cream-dark); border-right: 1px solid var(--cream-dark); }
.qty-input:focus { outline: none; }
.cart-remove { background: none; border: none; color: var(--text-light); cursor: pointer; font-size: 1rem; transition: color 0.2s; }
.cart-remove:hover { color: var(--maroon); }

.order-summary {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(212,175,55,0.2);
  box-shadow: 0 4px 20px rgba(44,24,16,0.08);
  position: sticky;
  top: 90px;
}
.order-summary h4 { font-family: 'Inter', sans-serif; font-weight: 700; color: var(--gerua-dark); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--gold); }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 0.9rem; color: var(--text-medium); }
.summary-row.total { font-weight: 700; color: var(--text-dark); font-size: 1.1rem; border-top: 1px solid var(--cream-dark); padding-top: 12px; margin-top: 5px; }
.coupon-input { display: flex; gap: 8px; margin: 15px 0; }
.coupon-input input { flex: 1; border: 1px solid var(--cream-dark); border-radius: 8px; padding: 10px 14px; font-size: 0.85rem; outline: none; }
.coupon-input input:focus { border-color: var(--gold); }
.coupon-input button { background: var(--cream-dark); border: none; border-radius: 8px; padding: 10px 16px; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.coupon-input button:hover { background: var(--gold); color: var(--dark-bg); }

/* ---- Book Detail ---- */
.book-detail-section { padding: 60px 0; background: var(--cream); }
.book-detail-img {
  max-height: 500px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(210,105,30,0.25);
  width: 100%;
  object-fit: cover;
}
.book-detail-meta h1 { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 2rem; color: var(--gerua-dark); margin-bottom: 0.5rem; }
.detail-tabs .nav-link { color: var(--text-medium); font-weight: 500; border: none; border-bottom: 2px solid transparent; border-radius: 0; padding: 10px 20px; }
.detail-tabs .nav-link.active { color: var(--gerua-dark); border-bottom-color: var(--gold); background: none; }
.detail-tabs .nav-link:hover { color: var(--gerua); }

/* ---- Breadcrumb ---- */
.page-header {
  background: var(--gradient-divine);
  padding: 40px 0;
  border-bottom: 2px solid rgba(212,175,55,0.3);
}
.page-header h1 { font-family: 'Inter', sans-serif; font-weight: 700; color: var(--gold); }
.breadcrumb-item a { color: var(--gerua-light); text-decoration: none; }
.breadcrumb-item.active { color: rgba(255,255,255,0.6); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(212,175,55,0.5); }

/* ---- Wishlist Tab ---- */
.wishlist-empty, .cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
}
.wishlist-empty i, .cart-empty i { font-size: 5rem; color: var(--cream-dark); margin-bottom: 20px; display: block; }
.wishlist-empty h4, .cart-empty h4 { color: var(--text-medium); margin-bottom: 10px; }

/* ---- Toast Notification ---- */
.toast-custom {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--dark-bg);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 15px 20px;
  color: white;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  transform: translateX(200px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  min-width: 280px;
}
.toast-custom.show { transform: translateX(0); opacity: 1; }
.toast-icon { color: var(--gold); font-size: 1.2rem; }
.toast-msg { font-size: 0.9rem; }

/* ---- Lazy Image Placeholder ---- */
.book-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
  color: var(--gerua);
}
.book-img-placeholder .ph-icon { font-size: 3rem; margin-bottom: 8px; }
.book-img-placeholder .ph-text { font-size: 0.75rem; color: var(--gerua-light); }

/* ---- Animations ---- */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .hero-section { min-height: auto; padding: 10px 0 30px; }
  .hero-book-float { margin-top: 40px; }
  .filter-sidebar { position: static; }
}

@media (max-width: 768px) {
  .section-title h2 { font-size: 1.8rem; }
  .hero-title { font-size: 2rem; }
  .hero-stats { gap: 1rem; }
  .hero-stat .number { font-size: 1.5rem; }
  .book-card-list { flex-direction: column; }
  .book-card-list .list-img { width: 100%; height: 200px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cart-table { font-size: 0.82rem; }
  .toast-custom { right: 15px; bottom: 15px; min-width: 240px; }
  .upcoming-img-wrap { height: 200px; }
  .upcoming-section { padding: 60px 0; }
}

@media (max-width: 576px) {
  .upcoming-img-wrap { height: 180px; }
  .upcoming-body { padding: 14px; }
  .upcoming-badge { font-size: 0.6rem; padding: 4px 10px; }
  .upcoming-title { font-size: 0.9rem; }
  .upcoming-section { padding: 40px 0; }
}

/* ---- Mobile Header ---- */
@media (max-width: 991px) {
  .top-bar {
    padding: 4px 0;
    font-size: .72rem;
  }
  .top-bar-inner {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .top-bar-links {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
  }
  .top-link {
    color: var(--gold-light);
    text-decoration: none;
    font-size: .7rem;
    display: flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(255,255,255,.05);
  }
  .top-link i { font-size: .72rem; }
  .top-bar .d-flex.gap-3 { display: none !important; }

  .navbar-brand {
    padding: 8px 10px;
    gap: 8px;
  }
  .brand-logo-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    animation: none;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
  }
  .brand-name .main { font-size: 1rem; }
  .brand-name .sub { font-size: .6rem; letter-spacing: 1px; }

  .nav-icons-right {
    margin-left: auto;
    gap: 4px;
    padding: 0 4px;
  }
  .nav-icon-btn {
    width: 34px;
    height: 34px;
    font-size: .85rem;
    background: transparent;
    border: none;
  }
  .nav-icon-btn:active { background: rgba(212,175,55,.15); }
  .badge-count {
    width: 16px;
    height: 16px;
    font-size: .55rem;
    top: -4px;
    right: -4px;
    border-width: 1.5px;
  }

  .navbar-toggler {
    padding: 6px 8px;
    margin-right: 4px;
    border: none !important;
  }
  .navbar-toggler-icon {
    width: 22px;
    height: 22px;
  }

  /* Collapsed menu styling */
  #navMenu .navbar-nav .nav-link {
    padding: 12px 16px !important;
    border-bottom: 1px solid rgba(255,255,255,.05);
  }
  #navMenu .navbar-nav .nav-link::after { display: none; }
  #navMenu .dropdown-menu {
    background: rgba(0,0,0,.3) !important;
    border: none !important;
    border-radius: 0;
    padding: 0;
    margin: 0;
  }
  #navMenu .dropdown-item {
    color: var(--cream) !important;
    padding: 10px 16px 10px 32px;
    font-size: .82rem;
    border-bottom: 1px solid rgba(255,255,255,.03);
  }
  #navMenu .dropdown-item:hover { background: rgba(212,175,55,.1); }
}

@media (max-width: 380px) {
  .brand-logo-icon {
    width: 32px;
    height: 32px;
    font-size: .85rem;
  }
  .brand-name .main { font-size: .85rem; }
  .brand-name .sub { font-size: .5rem; }
  .nav-icon-btn { width: 30px; height: 30px; font-size: .8rem; }
  .nav-icons-right { gap: 2px; padding: 0 2px; }
  .navbar-toggler { padding: 4px 6px; }
  .top-link { font-size: .65rem; padding: 1px 4px; }
}

/* ---- Upcoming Books Section ---- */
.upcoming-section {
  padding: 80px 0;
  background: linear-gradient(170deg, #1A0A00 0%, #2D1500 40%, #1A0A00 100%);
  position: relative;
  overflow: hidden;
}
.upcoming-section .section-title h2 {
  color: var(--gold);
}
.upcoming-section .section-title .subtitle {
  color: rgba(255,255,255,0.55);
}
.upcoming-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(212,175,55,0.06) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.upcoming-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.upcoming-glow.g1 {
  top: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
}
.upcoming-glow.g2 {
  bottom: -200px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(210,105,30,0.08) 0%, transparent 70%);
}
.upcoming-card {
  background: #2D1500;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border: 1px solid rgba(212,175,55,0.15);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.upcoming-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  z-index: 5;
}
.upcoming-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 20px 60px rgba(212,175,55,0.15);
}
.upcoming-card:hover::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.upcoming-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  background: linear-gradient(135deg, #D4AF37 0%, #F5E27A 50%, #D4AF37 100%);
  color: #3D1A00;
  border-radius: 50px;
  padding: 5px 12px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 15px rgba(212,175,55,0.4);
  text-transform: uppercase;
}
.upcoming-badge i {
  font-size: 0.75rem;
}
.upcoming-img-wrap {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  flex-shrink: 0;
  background: #1A0A00;
}
.upcoming-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.upcoming-card:hover .upcoming-img-wrap img {
  transform: scale(1.06);
}
.upcoming-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #3D1A00, #5A2A10, #3D1A00);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
}
.upcoming-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1.5px dashed rgba(212,175,55,0.15);
  border-radius: 8px;
}
.uph-icon {
  font-size: 2.8rem;
  position: relative;
  z-index: 1;
  line-height: 1;
}
.uph-title {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold-light);
  text-align: center;
  padding: 0 15px;
  position: relative;
  z-index: 1;
  line-height: 1.3;
}
.uph-author {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  position: relative;
  z-index: 1;
}
.upcoming-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.upcoming-img-overlay span {
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--gerua);
  padding: 7px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(210,105,30,0.4);
}
.upcoming-card:hover .upcoming-img-overlay {
  opacity: 1;
}
.upcoming-body {
  padding: 16px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.upcoming-cat {
  font-size: 0.68rem;
  color: var(--gerua-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 5px;
}
.upcoming-title {
  font-weight: 700;
  font-size: 1rem;
  color: #F5E27A;
  margin-bottom: 2px;
  line-height: 1.3;
  transition: color 0.3s;
}
a:hover .upcoming-title {
  color: var(--gold);
}
.upcoming-title-bn {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 5px;
}
.upcoming-author {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}
.upcoming-release {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: auto;
  margin-bottom: 12px;
  padding: 7px 10px;
  background: rgba(212,175,55,0.06);
  border-radius: 8px;
  border: 1px solid rgba(212,175,55,0.08);
}
.upcoming-release i {
  color: var(--gold);
  font-size: 0.85rem;
}
.upcoming-release strong {
  color: var(--gold-light);
  font-weight: 600;
}
.upcoming-notify {
  background: linear-gradient(135deg, var(--gerua) 0%, var(--gerua-dark) 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 11px 20px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.upcoming-notify:hover {
  background: linear-gradient(135deg, var(--gerua-light) 0%, var(--gerua) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(210,105,30,0.4);
  color: #fff;
}

/* ---- Swiper Custom ---- */
.swiper-button-next, .swiper-button-prev {
  color: var(--gold) !important;
}
.swiper-pagination-bullet-active { background: var(--gerua) !important; }
.swiper-pagination-bullet { background: var(--gerua-light); opacity: 0.6; }

/* ---- Star Rating Interactive ---- */
.star-rating-input { display: flex; flex-direction: row-reverse; gap: 4px; }
.star-rating-input input { display: none; }
.star-rating-input label { font-size: 1.5rem; color: #ddd; cursor: pointer; transition: color 0.2s; }
.star-rating-input label:hover,
.star-rating-input label:hover ~ label,
.star-rating-input input:checked ~ label { color: var(--gold); }
