/* ============================================================
   CrackerBuyOnline - Main Stylesheet
   Theme: Red + Gold Fireworks Festival
   ============================================================ */

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

/* ── CSS Variables ── */
:root {
  --crimson:    #C0392B;
  --deep-red:   #8B0000;
  --gold:       #FFD700;
  --gold-light: #FFF0A0;
  --gold-dark:  #B8860B;
  --dark-bg:    #0A0A0A;
  --dark-card:  #1A0A00;
  --dark-mid:   #150500;
  --smoke:      rgba(255,215,0,0.06);
  --white:      #FFFFFF;
  --text-muted: #AAA;
  --radius:     12px;
  --shadow-gold: 0 0 20px rgba(255,215,0,0.3);
  --shadow-red:  0 0 20px rgba(192,57,43,0.4);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Raleway', sans-serif;
  background-color: var(--dark-bg);
  color: var(--white);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ============================================================
   FIREWORKS CANVAS BACKGROUND
   ============================================================ */
#fireworks-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

/* ── Page Wrapper ── */
.page-wrapper { position: relative; z-index: 1; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar-main {
  background: linear-gradient(135deg, rgba(10,0,0,0.97) 0%, rgba(30,5,0,0.97) 100%);
  border-bottom: 2px solid var(--gold-dark);
  padding: 0.6rem 0;
  position: sticky;
  top: 0;
  z-index: 1050;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(255,215,0,0.15);
}
.navbar-main .navbar-brand {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold) 0%, var(--crimson) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
  text-shadow: none;
}
.navbar-main .navbar-brand span { color: var(--crimson); }
.navbar-main .nav-link {
  color: var(--gold-light) !important;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: color 0.3s;
}
.navbar-main .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  transition: left 0.3s, right 0.3s;
}
.navbar-main .nav-link:hover,
.navbar-main .nav-link.active {
  color: var(--gold) !important;
}
.navbar-main .nav-link:hover::after,
.navbar-main .nav-link.active::after {
  left: 1rem; right: 1rem;
}
.navbar-toggler { border-color: var(--gold-dark) !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%28255, 215, 0, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at center, #1a0500 0%, #0a0000 60%, #000 100%);
  padding: 80px 20px;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(192,57,43,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(255,215,0,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.hero-sparkle {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  animation: sparkle 3s infinite;
}
@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0); }
  50%       { opacity: 1; transform: scale(1); }
}
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--deep-red), var(--crimson));
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  border: 1px solid var(--gold-dark);
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease both;
}
.hero-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease 0.2s both;
}
.hero-title .line-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title .line-red {
  color: var(--crimson);
  text-shadow: 0 0 40px rgba(192,57,43,0.8);
}
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  animation: fadeInUp 1s ease 0.4s both;
}
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-dark));
  background-size: 200% auto;
  color: #1a0000;
  font-family: 'Cinzel Decorative', serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 40px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background-position 0.4s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 30px rgba(255,215,0,0.4);
  animation: fadeInUp 1s ease 0.6s both;
  text-decoration: none;
}
.btn-hero:hover {
  background-position: right center;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255,215,0,0.6);
  color: #000;
}
.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 35px;
  border-radius: 50px;
  border: 2px solid var(--gold-dark);
  cursor: pointer;
  transition: all 0.3s;
  animation: fadeInUp 1s ease 0.7s both;
  text-decoration: none;
}
.btn-hero-outline:hover {
  background: rgba(255,215,0,0.1);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}
.hero-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
  animation: fadeInUp 1s ease 0.8s both;
}
.hero-stat {
  text-align: center;
  border-left: 2px solid var(--gold-dark);
  padding-left: 1.5rem;
}
.hero-stat:first-child { border: none; padding-left: 0; }
.hero-stat .num {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
}
.hero-stat .label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-pad { padding: 80px 0; }
.section-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.6rem;
}
.section-title .gold { color: var(--gold); }
.section-title .red  { color: var(--crimson); }
.section-divider {
  width: 80px; height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--gold), var(--crimson));
  margin: 0 auto 3rem;
  border-radius: 2px;
  position: relative;
}
.section-divider::before,
.section-divider::after {
  content: '✦';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 0.6rem;
}
.section-divider::before { left: -20px; }
.section-divider::after  { right: -20px; }
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 500px;
  margin: -1.5rem auto 3rem;
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.products-bg {
  background: linear-gradient(180deg, var(--dark-bg) 0%, #0d0300 50%, var(--dark-bg) 100%);
}
.product-card {
  background: linear-gradient(145deg, #1a0800, #120400);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(.175,.885,.32,1.275), box-shadow 0.35s, border-color 0.3s;
  position: relative;
  height: 100%;
}
.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(255,215,0,0.2), 0 0 0 1px rgba(255,215,0,0.3);
  border-color: rgba(255,215,0,0.4);
}
.product-card .img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: linear-gradient(135deg, #200800, #100300);
}
.product-card .img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .img-wrap img { transform: scale(1.08); }
.product-card .badge-discount {
  position: absolute;
  top: 12px; right: 12px;
  background: linear-gradient(135deg, var(--crimson), var(--deep-red));
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 3px 10px rgba(192,57,43,0.5);
  z-index: 2;
}
.product-card .badge-new {
  position: absolute;
  top: 12px; left: 12px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #000;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
}
.product-card .card-body {
  padding: 1.25rem;
}
.product-card .product-category {
  font-size: 0.7rem;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.4rem;
}
.product-card .product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.product-card .price-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.product-card .price-old {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.product-card .price-new {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}
.btn-add-cart {
  width: 100%;
  background: linear-gradient(135deg, var(--deep-red), var(--crimson));
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  padding: 10px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-add-cart::before {
  content: '';
  position: absolute;
  top: 50%; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.2), transparent);
  transform: translateY(-50%);
  transition: left 0.4s;
}
.btn-add-cart:hover {
  background: linear-gradient(135deg, var(--crimson), #e74c3c);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}
.btn-add-cart:hover::before { left: 100%; }

/* ============================================================
   FLOATING CART (Products Page)
   ============================================================ */
.floating-cart {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  background: linear-gradient(145deg, #1a0800, #0d0300);
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7), var(--shadow-gold);
  z-index: 999;
  max-height: 80vh;
  overflow-y: auto;
  transition: transform 0.3s, right 0.3s;
}
.floating-cart.collapsed {
  right: -260px;
}
.cart-header {
  background: linear-gradient(135deg, var(--deep-red), #4a0000);
  padding: 1rem 1.2rem;
  border-radius: 16px 16px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 2;
}
.cart-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
}
.cart-toggle-btn {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
}
.cart-items-wrap { padding: 1rem; }
.cart-empty {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 2rem 1rem;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,215,0,0.08);
  animation: slideIn 0.3s ease;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.cart-item-name {
  flex: 1;
  font-size: 0.8rem;
  color: var(--white);
  font-weight: 500;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 4px;
}
.qty-btn {
  width: 22px; height: 22px;
  background: rgba(255,215,0,0.1);
  border: 1px solid var(--gold-dark);
  color: var(--gold);
  border-radius: 4px;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.qty-btn:hover { background: rgba(255,215,0,0.25); }
.qty-num {
  font-size: 0.8rem;
  color: var(--gold);
  min-width: 18px;
  text-align: center;
}
.cart-item-price {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  min-width: 45px;
  text-align: right;
}
.cart-remove-btn {
  background: none;
  border: none;
  color: var(--crimson);
  font-size: 0.75rem;
  cursor: pointer;
  padding: 0 2px;
}
.cart-footer {
  padding: 1rem;
  border-top: 1px solid rgba(255,215,0,0.15);
  background: rgba(0,0,0,0.3);
  position: sticky;
  bottom: 0;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}
.cart-total-label { font-size: 0.85rem; color: var(--text-muted); }
.cart-total-price {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 700;
}
.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: linear-gradient(135deg, #128C7E, #25D366);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
  color: white;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  background: linear-gradient(135deg, #1a0000 0%, #0a0000 100%);
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,215,0,0.07) 0%, transparent 60%);
}
.about-story-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.82);
}
.about-card {
  background: linear-gradient(145deg, #1a0800, #0d0200);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
}
.about-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,215,0,0.35);
  box-shadow: var(--shadow-gold);
}
.about-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--deep-red), var(--crimson));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  box-shadow: var(--shadow-red);
}
.about-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.about-card p {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  line-height: 1.7;
}
.mission-banner {
  background: linear-gradient(135deg, var(--deep-red) 0%, #3d0000 50%, var(--deep-red) 100%);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 16px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.mission-banner::before {
  content: '🎆';
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 6rem;
  opacity: 0.1;
}
.mission-banner h3 {
  font-family: 'Cinzel Decorative', serif;
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.mission-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 700px;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-grid { columns: 3; gap: 16px; }
@media (max-width: 768px) { .gallery-grid { columns: 2; } }
@media (max-width: 480px) { .gallery-grid { columns: 1; } }
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255,215,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(255,215,0,0.3);
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(192,57,43,0.7), rgba(255,215,0,0.4));
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  font-size: 2rem;
  color: white;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.active { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  border: 2px solid rgba(255,215,0,0.3);
  box-shadow: 0 0 60px rgba(255,215,0,0.2);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 25px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.lightbox-close:hover { color: var(--crimson); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.3);
  color: var(--gold);
  font-size: 1.5rem;
  padding: 12px 18px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s;
}
.lightbox-nav:hover { background: rgba(255,215,0,0.25); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ============================================================
   VIDEOS PAGE
   ============================================================ */
.video-card {
  background: linear-gradient(145deg, #1a0800, #0d0200);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(255,215,0,0.15);
}
.video-thumb {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  overflow: hidden;
  background: #000;
}
.video-thumb iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-info { padding: 1.2rem; }
.video-info h5 {
  font-family: 'Playfair Display', serif;
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.video-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-form-card {
  background: linear-gradient(145deg, #1a0800, #0d0200);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 16px;
  padding: 2.5rem;
}
.form-label {
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.form-control {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,215,0,0.2) !important;
  color: var(--white) !important;
  border-radius: 8px !important;
  padding: 0.8rem 1rem !important;
  transition: border-color 0.3s, box-shadow 0.3s !important;
}
.form-control:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(255,215,0,0.1) !important;
  outline: none !important;
}
.form-control::placeholder { color: rgba(255,255,255,0.3) !important; }
.btn-submit {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #1a0000;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  padding: 12px 35px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
}
.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.contact-info-card {
  background: linear-gradient(145deg, #1a0800, #0d0200);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 16px;
  padding: 2.5rem;
  height: 100%;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--deep-red), var(--crimson));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-item h6 {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.contact-info-item p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin: 0;
}
.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,215,0,0.2);
  margin-top: 1.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #030000;
  border-top: 2px solid var(--gold-dark);
  padding: 50px 0 25px;
}
.footer-logo {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--crimson), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.8rem;
}
.footer-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 300px;
}
.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,215,0,0.15);
}
.footer-links { list-style: none; padding: 0; }
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '›';
  color: var(--gold-dark);
  font-size: 1rem;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,215,0,0.1);
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}
.footer-bottom .designer {
  color: var(--gold);
  font-weight: 600;
}
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  transition: all 0.3s;
}
.social-link:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-3px);
}

/* ============================================================
   PAGE HERO BANNER (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, #1a0000 0%, #0a0000 60%, #150500 100%);
  padding: 80px 0 50px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,215,0,0.06) 0%, transparent 70%);
}
.page-hero h1 {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 1;
}
.page-hero .breadcrumb {
  background: none;
  justify-content: center;
  margin: 0.5rem 0 0;
  position: relative;
  z-index: 1;
}
.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a { color: var(--text-muted); font-size: 0.85rem; }
.page-hero .breadcrumb-item.active { color: var(--gold); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: var(--gold-dark); }

/* ============================================================
   UTILITY + ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 15px rgba(255,215,0,0.3); }
  50%       { box-shadow: 0 0 35px rgba(255,215,0,0.7); }
}
.float-anim { animation: float 4s ease-in-out infinite; }
.pulse-glow { animation: pulse-glow 2s ease-in-out infinite; }

.text-gold { color: var(--gold) !important; }
.text-crimson { color: var(--crimson) !important; }
.bg-dark-card { background: var(--dark-card) !important; }
.border-gold { border-color: rgba(255,215,0,0.3) !important; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Category filter buttons */
.filter-btn {
  background: rgba(255,215,0,0.05);
  border: 1px solid rgba(255,215,0,0.2);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
}
.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(135deg, var(--deep-red), var(--crimson));
  border-color: var(--crimson);
  color: var(--gold);
  box-shadow: var(--shadow-red);
}

/* Toast notification */
.toast-container-custom {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.toast-msg {
  background: linear-gradient(135deg, var(--deep-red), var(--crimson));
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 25px;
  border-radius: 50px;
  border: 1px solid rgba(255,215,0,0.3);
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
  animation: toastIn 0.4s ease, toastOut 0.4s ease 2.6s forwards;
  white-space: nowrap;
}
@keyframes toastIn  { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@keyframes toastOut { from { opacity:1; transform:translateY(0); } to { opacity:0; transform:translateY(-20px); } }

/* Cart floating tab */
.cart-tab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--deep-red), var(--crimson));
  color: var(--gold);
  padding: 12px 10px;
  border-radius: 12px 0 0 12px;
  cursor: pointer;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow: var(--shadow-red);
  border: 1px solid rgba(255,215,0,0.2);
  border-right: none;
  transition: right 0.3s;
}
.cart-tab .cart-count-badge {
  background: var(--gold);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-tab span { font-size: 0.65rem; writing-mode: vertical-rl; text-orientation: mixed; letter-spacing: 1px; }

/* ── Responsive ── */
@media (max-width: 992px) {
  .floating-cart { display: none; }
  .cart-tab { display: none; }
}
@media (max-width: 768px) {
  .hero-stats { gap: 1rem; }
  .hero-stat .num { font-size: 1.3rem; }
  .section-pad { padding: 50px 0; }
  .contact-form-card, .contact-info-card { padding: 1.5rem; }
  .mission-banner { padding: 2rem; }
}
