/* ============================================================
   Siri Kirula - Jewelry Sell & Rent Business
   Color Palette: Maroon & Gold/Yellow
   ============================================================ */

:root {
  --maroon:       #80002b;
  --maroon-dark:  #4a0010;
  --maroon-light: #a00000;
  --gold:         #D4A017;
  --gold-light:   #FFD700;
  --gold-pale:    #FFF3CC;
  --cream:        #FFF8E7;
  --white:        #ffffff;
  --dark:         #1a0000;
  --text-dark:    #2c0000;
  --text-muted:   #8a6060;
  --shadow:       rgba(128,0,0,0.18);
  --shadow-gold:  rgba(212,160,23,0.25);
}

/* ============ GLOBAL ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

a { text-decoration: none; transition: all 0.3s ease; }

h1,h2,h3,h4,h5 {
  font-family: 'Georgia', 'Times New Roman', serif;
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--maroon); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ============ PRELOADER ============ */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--maroon-dark);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 16px;
}
#preloader .gem-spin {
  width: 70px; height: 70px;
  border: 4px solid rgba(212,160,23,0.2);
  border-top: 4px solid var(--gold-light);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
#preloader p { color: var(--gold-light); font-size: 1.1rem; letter-spacing: 3px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============ NAVBAR ============ */
.navbar-custom {
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 60%, #6b0010 100%);
  padding: 0 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  position: sticky; top: 0; z-index: 1000;
  border-bottom: 2px solid var(--gold);
}

.navbar-brand-box {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
}
.brand-gem {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
@keyframes gemPulse {
  0%,100% { box-shadow: 0 0 10px var(--gold-light); }
  50%      { box-shadow: 0 0 25px var(--gold-light), 0 0 50px rgba(255,215,0,0.4); }
}
.brand-text { line-height: 1.1; }
.brand-name {
  font-family: Georgia, serif;
  font-size: 1.4rem; font-weight: bold;
  color: var(--gold-light);
  letter-spacing: 1px;
}
.brand-tagline { font-size: 0.65rem; color: rgba(255,215,0,0.7); letter-spacing: 2px; text-transform: uppercase; }

.nav-link-custom {
  color: rgba(255,215,0,0.85) !important;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 14px !important;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s;
}
.nav-link-custom::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; right: 50%;
  height: 2px; background: var(--gold-light);
  transition: all 0.3s ease;
}
.nav-link-custom:hover::after,
.nav-link-custom.active::after { left: 10%; right: 10%; }
.nav-link-custom:hover,
.nav-link-custom.active { color: var(--gold-light) !important; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--maroon-dark) !important;
  border-radius: 25px;
  padding: 8px 20px !important;
  font-weight: 700 !important;
  letter-spacing: 1px;
  box-shadow: 0 3px 12px var(--shadow-gold);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px var(--shadow-gold); }
.nav-cta::after { display: none !important; }

.navbar-toggler-custom {
  border: 1.5px solid var(--gold) !important;
  border-radius: 6px;
  padding: 6px 10px;
}
.navbar-toggler-custom .bar {
  display: block; width: 22px; height: 2px;
  background: var(--gold-light); margin: 5px 0;
  transition: all 0.3s;
}

/* ============ HERO ============ */
.hero-section {
  min-height: 90vh;
  background:
    linear-gradient(135deg, rgba(90,0,0,0.88) 0%, rgba(128,0,0,0.75) 50%, rgba(180,120,0,0.6) 100%),
    url('https://images.unsplash.com/photo-1515562141207-7a88fb7ce338?w=1600&q=80') center/cover no-repeat;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(90,0,0,0.5) 100%);
}
.hero-particles {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.particle {
  position: absolute; width: 4px; height: 4px;
  background: var(--gold-light); border-radius: 50%;
  opacity: 0; animation: float-up 6s linear infinite;
}
@keyframes float-up {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-10vh) scale(1.5); opacity: 0; }
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 2rem; }
.hero-badge {
  display: inline-block;
  background: rgba(212,160,23,0.2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.78rem; letter-spacing: 4px; text-transform: uppercase;
  padding: 6px 20px; border-radius: 30px; margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white); line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 2px 4px 20px rgba(0,0,0,0.5);
}
.hero-title span { color: var(--gold-light); }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.85);
  max-width: 600px; margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--maroon-dark);
  border: none; padding: 14px 36px;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 1px;
  border-radius: 50px;
  box-shadow: 0 6px 20px var(--shadow-gold);
  transition: all 0.3s;
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px var(--shadow-gold);
  color: var(--maroon-dark);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold-light);
  border: 2px solid var(--gold);
  padding: 12px 34px;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.3s;
}
.btn-outline-gold:hover {
  background: var(--gold); color: var(--maroon-dark);
  transform: translateY(-3px);
}
.btn-maroon {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  color: var(--gold-light);
  border: 2px solid var(--gold);
  padding: 12px 30px;
  font-weight: 600; font-size: 0.9rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px var(--shadow);
  transition: all 0.3s;
}
.btn-maroon:hover {
  background: linear-gradient(135deg, var(--maroon-light), var(--maroon));
  transform: translateY(-3px);
  color: var(--gold-light);
  box-shadow: 0 8px 25px var(--shadow);
}

/* Hero Stats */
.hero-stats {
  display: flex; gap: 40px; justify-content: center;
  margin-top: 3rem; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-size: 2rem; font-weight: 700; color: var(--gold-light);
  font-family: Georgia, serif;
}
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.7); letter-spacing: 2px; text-transform: uppercase; }

/* ============ SECTION HEADERS ============ */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--maroon-dark);
  margin-bottom: 1rem; line-height: 1.2;
}
.section-title span { color: var(--gold); }
.section-divider {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin: 0 auto 1rem;
}
.section-divider .line { width: 60px; height: 2px; background: linear-gradient(to right, transparent, var(--gold)); }
.section-divider .line.right { background: linear-gradient(to left, transparent, var(--gold)); }
.section-divider .diamond {
  width: 10px; height: 10px;
  background: var(--gold); transform: rotate(45deg);
}
.section-desc {
  font-size: 1rem; color: var(--text-muted); max-width: 560px; margin: 0 auto;
  line-height: 1.7;
}

/* ============ PRODUCT CARDS ============ */
.product-card {
  background: var(--white);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 4px 20px var(--shadow);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px var(--shadow);
  border-color: var(--gold);
}
.product-img-wrap {
  position: relative; overflow: hidden;
  height: 240px;
  background: linear-gradient(135deg, var(--gold-pale), #fff);
}
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.08); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  color: var(--gold-light);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1px;
  padding: 4px 12px; border-radius: 20px;
  text-transform: uppercase;
}
.product-badge.rent { background: linear-gradient(135deg, #D4A017, #FFD700); color: var(--maroon-dark); }
.product-badge.new  { background: linear-gradient(135deg, #1a7a1a, #2da02d); color: #fff; }
.product-overlay {
  position: absolute; inset: 0;
  background: rgba(90,0,0,0.7);
  display: flex; align-items: center; justify-content: center; gap: 12px;
  opacity: 0; transition: opacity 0.4s;
}
.product-card:hover .product-overlay { opacity: 1; }
.overlay-btn {
  width: 44px; height: 44px;
  background: var(--gold-light);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--maroon-dark); font-size: 1.1rem;
  transition: all 0.3s; cursor: pointer; border: none;
}
.overlay-btn:hover { background: var(--white); transform: scale(1.15); }
.product-body { padding: 1.2rem 1.4rem 1.4rem; }
.product-category {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 2px;
  color: var(--gold); font-weight: 600; margin-bottom: 4px;
}
.product-name {
  font-size: 1.05rem; font-weight: 700; color: var(--maroon-dark);
  margin-bottom: 8px; font-family: Georgia, serif;
}
.product-desc { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 12px; line-height: 1.5; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.price { font-size: 1.25rem; font-weight: 700; color: var(--maroon); font-family: Georgia, serif; }
.price .currency { font-size: 0.85rem; vertical-align: top; margin-top: 3px; display: inline-block; }
.price-old { font-size: 0.82rem; color: var(--text-muted); text-decoration: line-through; margin-left: 4px; }
.rent-price { font-size: 0.8rem; color: var(--gold); font-weight: 600; }
.rating { color: var(--gold-light); font-size: 0.8rem; }
.rating span { color: var(--text-muted); font-size: 0.75rem; margin-left: 4px; }

/* ============ FEATURE CARDS ============ */
.feature-card {
  background: var(--white);
  border: 1px solid rgba(212,160,23,0.15);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--gold-light), var(--maroon));
  transform: scaleX(0); transition: transform 0.4s;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px var(--shadow);
  border-color: var(--gold);
}
.feature-icon {
  width: 70px; height: 70px; margin: 0 auto 1.2rem;
  background: linear-gradient(135deg, var(--gold-pale), #fff8e7);
  border: 2px solid rgba(212,160,23,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--maroon);
  transition: all 0.4s;
}
.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--maroon-dark);
  transform: rotateY(360deg);
}
.feature-title { font-size: 1.05rem; font-weight: 700; color: var(--maroon-dark); margin-bottom: 8px; }
.feature-text { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ============ TESTIMONIALS ============ */
.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: 16px; padding: 2rem;
  position: relative; transition: all 0.3s;
  box-shadow: 0 4px 15px var(--shadow);
}
.testimonial-card::before {
  content: '"';
  position: absolute; top: -10px; left: 20px;
  font-size: 5rem; color: var(--gold-light);
  font-family: Georgia, serif; line-height: 1; opacity: 0.4;
}
.testimonial-text { font-size: 0.92rem; color: var(--text-dark); line-height: 1.7; margin-bottom: 1.2rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  border: 3px solid var(--gold);
  object-fit: cover;
}
.author-name { font-weight: 700; color: var(--maroon); font-size: 0.9rem; }
.author-loc  { font-size: 0.78rem; color: var(--text-muted); }

/* ============ BANNER / CTA ============ */
.cta-section {
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 50%, #6b0010 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4A017' fill-opacity='0.07'%3E%3Cpath d='M30 0l30 30-30 30L0 30z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-content { position: relative; z-index: 2; text-align: center; }
.cta-title { font-size: clamp(1.8rem, 4vw, 3rem); color: var(--white); margin-bottom: 1rem; }
.cta-title span { color: var(--gold-light); }
.cta-text { font-size: 1rem; color: rgba(255,255,255,0.8); max-width: 500px; margin: 0 auto 2rem; line-height: 1.7; }

/* ============ FILTER BAR ============ */
.filter-bar {
  background: var(--white);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: 16px; padding: 1.5rem;
  box-shadow: 0 4px 20px var(--shadow);
  margin-bottom: 2rem;
}
.filter-btn {
  background: transparent;
  border: 1.5px solid rgba(212,160,23,0.4);
  color: var(--maroon); font-size: 0.82rem;
  padding: 7px 18px; border-radius: 25px;
  cursor: pointer; transition: all 0.3s;
  font-weight: 600;
}
.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  border-color: var(--maroon); color: var(--gold-light);
}
.search-input {
  border: 1.5px solid rgba(212,160,23,0.3);
  border-radius: 25px; padding: 9px 20px;
  font-size: 0.88rem; color: var(--text-dark);
  transition: border-color 0.3s;
  background: var(--cream);
}
.search-input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,160,23,0.15); }

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 60%, #6b0010 100%);
  padding: 80px 0 60px;
  position: relative; overflow: hidden; text-align: center;
}
.page-hero::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero-title { font-size: clamp(2rem, 5vw, 3.5rem); color: var(--gold-light); margin-bottom: 0.75rem; }
.page-hero-breadcrumb { color: rgba(255,255,255,0.7); font-size: 0.88rem; }
.page-hero-breadcrumb a { color: var(--gold-light); }

/* ============ GALLERY ============ */
.gallery-item {
  position: relative; overflow: hidden; border-radius: 12px;
  cursor: pointer; background: #000;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s, opacity 0.5s;
}
.gallery-item:hover img { transform: scale(1.1); opacity: 0.7; }
.gallery-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.4s;
  background: rgba(128,0,0,0.5);
  color: var(--gold-light);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2rem; margin-bottom: 8px; }
.gallery-overlay span { font-size: 0.85rem; font-weight: 600; letter-spacing: 1px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
.gallery-grid .item-tall  { grid-row: span 2; }
.gallery-grid .item-wide  { grid-column: span 2; }

/* ============ CONTACT ============ */
.contact-card {
  background: var(--white);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: 16px; padding: 2.5rem;
  box-shadow: 0 4px 20px var(--shadow);
  height: 100%;
}
.contact-icon-box {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold-pale), #fff);
  border: 2px solid rgba(212,160,23,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--maroon);
  margin-right: 1rem; flex-shrink: 0;
}
.form-control-custom {
  border: 1.5px solid rgba(212,160,23,0.3);
  border-radius: 10px; padding: 12px 16px;
  font-size: 0.9rem; color: var(--text-dark);
  background: var(--cream);
  transition: all 0.3s;
}
.form-control-custom:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,160,23,0.15);
  background: var(--white);
}
.form-label-custom {
  font-size: 0.82rem; font-weight: 600; color: var(--maroon);
  letter-spacing: 0.5px; margin-bottom: 6px;
  display: block;
}

/* ============ RENT TIMELINE ============ */
.rent-step {
  display: flex; gap: 20px; margin-bottom: 2rem;
  align-items: flex-start;
}
.step-num {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--gold-light); font-size: 1.1rem;
  font-family: Georgia, serif;
}
.step-content h5 { color: var(--maroon-dark); font-weight: 700; margin-bottom: 4px; }
.step-content p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ============ SCROLL TOP ============ */
#scrollTop {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  border: 2px solid var(--gold);
  color: var(--gold-light); font-size: 1.2rem;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 15px var(--shadow);
  opacity: 0; visibility: hidden;
  transition: all 0.3s;
}
#scrollTop.show { opacity: 1; visibility: visible; }
#scrollTop:hover { transform: translateY(-3px); background: var(--gold); color: var(--maroon-dark); }

/* ============ FOOTER ============ */
.footer-main {
  background: linear-gradient(135deg, var(--dark) 0%, var(--maroon-dark) 100%);
  padding: 60px 0 0;
  border-top: 3px solid var(--gold);
}
.footer-brand { margin-bottom: 1.5rem; }
.footer-brand-name { font-size: 1.6rem; color: var(--gold-light); font-family: Georgia, serif; }
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 280px; }
.footer-heading {
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 3px;
  color: var(--gold); font-weight: 700; margin-bottom: 1.2rem;
  padding-bottom: 8px; border-bottom: 1px solid rgba(212,160,23,0.2);
}
.footer-link {
  display: block; font-size: 0.86rem; color: rgba(255,255,255,0.6);
  margin-bottom: 8px; transition: color 0.3s;
}
.footer-link:hover { color: var(--gold-light); padding-left: 6px; }
.footer-social { display: flex; gap: 10px; margin-top: 1rem; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212,160,23,0.3);
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; transition: all 0.3s;
}
.social-btn:hover {
  background: var(--gold); color: var(--maroon-dark);
  border-color: var(--gold); transform: translateY(-2px);
}
.footer-bottom {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid rgba(212,160,23,0.15);
  padding: 16px 0; text-align: center; margin-top: 40px;
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
}
.footer-bottom span { color: var(--gold-light); }

/* ============ BADGES / LABELS ============ */
.tag-pill {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-pale), #fff);
  border: 1px solid rgba(212,160,23,0.4);
  color: var(--maroon); font-size: 0.75rem;
  padding: 3px 12px; border-radius: 20px; font-weight: 600;
  margin: 3px;
}

/* ============ SECTION BG ALTERNATES ============ */
.section-white { background: var(--white); }
.section-cream  { background: var(--cream); }
.section-maroon {
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
}

/* ============ ANIMATIONS ============ */
.fade-in-up {
  opacity: 0; transform: translateY(30px);
  transition: all 0.6s ease;
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
.fade-in-left {
  opacity: 0; transform: translateX(-30px);
  transition: all 0.6s ease;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right {
  opacity: 0; transform: translateX(30px);
  transition: all 0.6s ease;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* ============ MODAL ============ */
.modal-product .modal-content {
  border-radius: 16px; border: 2px solid rgba(212,160,23,0.3);
  overflow: hidden;
}
.modal-product .modal-header {
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  border-bottom: 2px solid var(--gold);
}
.modal-product .modal-title { color: var(--gold-light); font-family: Georgia, serif; }

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid .item-wide { grid-column: span 1; }
  .hero-stats { gap: 24px; }
}
@media (max-width: 576px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .product-img-wrap { height: 200px; }
}
