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

:root {
  --color-bg: #0a0a0a;
  --color-surface: #141418;
  --color-surface-light: #1e1e24;
  --color-primary: #D4AF37;
  --color-primary-hover: #c49b2f;
  --color-primary-glow: rgba(212, 175, 55, 0.25);
  --color-text: #f5f5f7;
  --color-text-muted: #9ca3af;

  /* Accent Colors */
  --color-accent-amber: #F59E0B;
  --color-accent-emerald: #10B981;
  --color-accent-ruby: #EF4444;
  --color-accent-sapphire: #6366F1;
  --color-accent-rose: #F472B6;
  --color-accent-cyan: #22D3EE;

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #D4AF37, #F5D060, #D4AF37);
  --gradient-hero: linear-gradient(135deg, #0a0a0a 0%, #1a1020 50%, #0a0a0a 100%);
  --gradient-card: linear-gradient(145deg, rgba(30,30,40,0.8), rgba(15,15,20,0.9));
  --gradient-glow: radial-gradient(ellipse at center, rgba(212,175,55,0.15), transparent 70%);

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 0.5rem;
  --radius-md: 0.875rem;
  --radius-lg: 1.25rem;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-glow: 0 0 30px rgba(212, 175, 55, 0.15);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.2;
}

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

button {
  font-family: var(--font-body);
  border: none;
  background: none;
  cursor: pointer;
  transition: var(--transition);
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.bg-glass {
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  letter-spacing: 0.025em;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--color-primary);
  color: #000;
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 169, 110, 0.3);
}

.btn-outline {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: #000;
}

.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--color-primary);
}

/* Forms */
.input-group {
  margin-bottom: 1.5rem;
}

.input-label {
  display: block;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.input-field {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: var(--color-surface-light);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-family: var(--font-body);
  transition: var(--transition);
}

.input-field:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(201, 169, 110, 0.2);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.hidden { display: none !important; }

/* ──────── Layout ──────── */
.app-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#page-container {
  flex-grow: 1;
}

/* ──────── Navbar ──────── */
.navbar {
  position: fixed;
  width: 100%;
  z-index: 50;
  top: 0;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.nav-brand span {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.nav-desktop {
  display: none;
  gap: 2rem;
  align-items: center;
}

#nav-desktop-auth {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-link {
  position: relative;
  opacity: 0.8;
  cursor: pointer;
}

.nav-link:hover { opacity: 1; }
.nav-link.text-gold { opacity: 1; }

.nav-mobile-toggle {
  display: block;
  color: var(--color-text);
  background: none;
  border: none;
}

.nav-mobile-menu {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  background: var(--color-bg);
  padding: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.nav-mobile-menu a, .nav-mobile-menu button {
  color: var(--color-text);
  font-size: 1rem;
}

.nav-mobile-menu #nav-mobile-auth {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
}

.nav-mobile-menu #nav-mobile-signout {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

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

.nav-user-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.8;
  cursor: pointer;
}

@media (min-width: 768px) {
  .nav-desktop { display: flex !important; }
  .nav-mobile-toggle { display: none !important; }
}

/* ──────── Hero Floating Reels ──────── */
.hero-floating-reels {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  pointer-events: auto;
}

.hero-reel {
  width: 200px;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(201, 169, 110, 0.08);
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
  position: relative;
}

.hero-reel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero-reel-1 {
  animation: heroFloat1 6s ease-in-out infinite, fadeIn 0.8s ease-out forwards;
  animation-delay: 0.3s, 0.3s;
}

.hero-reel-2 {
  animation: heroFloat2 7s ease-in-out infinite, fadeIn 0.8s ease-out forwards;
  animation-delay: 0.6s, 0.6s;
}

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

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

@media (max-width: 1100px) {
  .hero-floating-reels { display: none; }
}

/* ──────── Instagram Section ──────── */
.ig-section {
  background: var(--color-surface);
  border-top: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}

.ig-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.ig-header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ig-icon-wrapper {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  flex-shrink: 0;
}

.ig-title {
  font-size: 1.75rem;
  font-family: var(--font-heading);
  margin-bottom: 0.15rem;
  text-align: left;
}

.ig-title::after { display: none; }

.ig-subtitle {
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.ig-follow-btn {
  font-size: 0.875rem;
  padding: 0.6rem 1.4rem;
}

.ig-carousel-wrapper { position: relative; }

.ig-carousel-wrapper::before,
.ig-carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.ig-carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--color-surface), transparent);
}

.ig-carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--color-surface), transparent);
}

.ig-carousel {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem 0;
}

.ig-carousel::-webkit-scrollbar { display: none; }

.ig-card {
  flex: 0 0 340px;
  min-width: 340px;
  height: 480px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  background: var(--color-bg);
  transition: var(--transition);
}

.ig-card:hover {
  border-color: rgba(201, 169, 110, 0.25);
  box-shadow: 0 8px 32px rgba(201, 169, 110, 0.08);
  transform: translateY(-4px);
}

.ig-iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: var(--color-bg);
}

.ig-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--color-text);
  cursor: pointer;
  transition: var(--transition);
}

.ig-nav:hover {
  background: var(--color-primary);
  color: #000;
  border-color: var(--color-primary);
}

.ig-nav-left { left: 8px; }
.ig-nav-right { right: 8px; }

.ig-cta-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: linear-gradient(135deg, rgba(201,169,110,0.08), rgba(201,169,110,0.02));
  border: 1px dashed rgba(201,169,110,0.3);
}

.ig-cta-card:hover {
  background: linear-gradient(135deg, rgba(201,169,110,0.15), rgba(201,169,110,0.05));
  border-color: var(--color-primary);
}

.ig-cta-content {
  text-align: center;
  padding: 2rem;
}

.ig-cta-icon {
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.ig-cta-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

@media (max-width: 640px) {
  .ig-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .ig-card {
    flex: 0 0 290px;
    min-width: 290px;
    height: 420px;
  }
  .ig-nav { display: none; }
  .ig-carousel-wrapper::before,
  .ig-carousel-wrapper::after { width: 30px; }
}

/* ──────── Location & Map Section ──────── */
.location-section { background: var(--color-bg); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2.5rem;
  align-items: start;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.location-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.location-card:hover {
  border-color: rgba(201, 169, 110, 0.2);
  transform: translateX(4px);
}

.location-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(201, 169, 110, 0.1);
  color: var(--color-primary);
  flex-shrink: 0;
}

.location-card-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.location-card-text {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.location-hours {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.location-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.location-directions-btn {
  width: 100%;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.location-map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 0 40px rgba(201, 169, 110, 0.06);
  aspect-ratio: 4 / 3;
  min-height: 400px;
}

.location-map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.3) contrast(1.05);
  transition: filter 0.4s ease;
}

.location-map-iframe:hover,
.location-map-wrapper:hover .location-map-iframe {
  filter: grayscale(0) contrast(1);
}

@media (max-width: 768px) {
  .location-grid { grid-template-columns: 1fr; }
  .location-map-wrapper { min-height: 300px; }
}

/* ──────── Service Card ──────── */
.service-card {
  padding: 2rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 110, 0.3);
}

.service-card.selected {
  border: 1px solid var(--color-primary);
  box-shadow: 0 0 20px rgba(201,169,110,0.1);
}

.service-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: transparent;
  transition: var(--transition);
}

.service-card.selected .service-card-accent {
  background: var(--color-primary);
}

/* ──────── Footer ──────── */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 4rem 0 2rem 0;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-social-icon {
  color: var(--color-text-muted);
  padding: 0.5rem;
  background: var(--color-surface-light);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

/* ──────── SVG Icons ──────── */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

.icon svg {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ──────── Animated Glowing SVG Icons ──────── */
.icon-svg {
  display: inline-block;
  vertical-align: middle;
  transition: filter 0.3s ease, transform 0.3s ease;
}

/* Breathe Animation (subtle scale pulse loop) */
@keyframes iconBreathe {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.85; }
}
.icon-breathe {
  animation: iconBreathe 3s ease-in-out infinite;
}

/* Glow Pulse Keyframes */
@keyframes glowPulseGold {
  0%, 100% { filter: drop-shadow(0 0 3px rgba(212,175,55,0.3)) drop-shadow(0 0 8px rgba(212,175,55,0.15)); }
  50% { filter: drop-shadow(0 0 8px rgba(212,175,55,0.5)) drop-shadow(0 0 18px rgba(212,175,55,0.25)); }
}
@keyframes glowPulseEmerald {
  0%, 100% { filter: drop-shadow(0 0 3px rgba(16,185,129,0.3)) drop-shadow(0 0 8px rgba(16,185,129,0.15)); }
  50% { filter: drop-shadow(0 0 8px rgba(16,185,129,0.5)) drop-shadow(0 0 18px rgba(16,185,129,0.25)); }
}
@keyframes glowPulseSapphire {
  0%, 100% { filter: drop-shadow(0 0 3px rgba(99,102,241,0.3)) drop-shadow(0 0 8px rgba(99,102,241,0.15)); }
  50% { filter: drop-shadow(0 0 8px rgba(99,102,241,0.5)) drop-shadow(0 0 18px rgba(99,102,241,0.25)); }
}
@keyframes glowPulseAmber {
  0%, 100% { filter: drop-shadow(0 0 3px rgba(245,158,11,0.3)) drop-shadow(0 0 8px rgba(245,158,11,0.15)); }
  50% { filter: drop-shadow(0 0 8px rgba(245,158,11,0.5)) drop-shadow(0 0 18px rgba(245,158,11,0.25)); }
}
@keyframes glowPulseRuby {
  0%, 100% { filter: drop-shadow(0 0 3px rgba(239,68,68,0.3)) drop-shadow(0 0 8px rgba(239,68,68,0.15)); }
  50% { filter: drop-shadow(0 0 8px rgba(239,68,68,0.5)) drop-shadow(0 0 18px rgba(239,68,68,0.25)); }
}
@keyframes glowPulseRose {
  0%, 100% { filter: drop-shadow(0 0 3px rgba(244,114,182,0.3)) drop-shadow(0 0 8px rgba(244,114,182,0.15)); }
  50% { filter: drop-shadow(0 0 8px rgba(244,114,182,0.5)) drop-shadow(0 0 18px rgba(244,114,182,0.25)); }
}
@keyframes glowPulseCyan {
  0%, 100% { filter: drop-shadow(0 0 3px rgba(34,211,238,0.3)) drop-shadow(0 0 8px rgba(34,211,238,0.15)); }
  50% { filter: drop-shadow(0 0 8px rgba(34,211,238,0.5)) drop-shadow(0 0 18px rgba(34,211,238,0.25)); }
}

/* Glow classes */
.icon-glow-gold { animation: glowPulseGold 2.5s ease-in-out infinite; }
.icon-glow-emerald { animation: glowPulseEmerald 2.5s ease-in-out infinite; }
.icon-glow-sapphire { animation: glowPulseSapphire 2.5s ease-in-out infinite; }
.icon-glow-amber { animation: glowPulseAmber 2.5s ease-in-out infinite; }
.icon-glow-ruby { animation: glowPulseRuby 2.5s ease-in-out infinite; }
.icon-glow-rose { animation: glowPulseRose 2.5s ease-in-out infinite; }
.icon-glow-cyan { animation: glowPulseCyan 2.5s ease-in-out infinite; }

/* Combined glow + breathe: use both animations */
.icon-glow-gold.icon-breathe { animation: glowPulseGold 2.5s ease-in-out infinite, iconBreathe 3s ease-in-out infinite; }
.icon-glow-emerald.icon-breathe { animation: glowPulseEmerald 2.5s ease-in-out infinite, iconBreathe 3s ease-in-out infinite; }
.icon-glow-sapphire.icon-breathe { animation: glowPulseSapphire 2.5s ease-in-out infinite, iconBreathe 3s ease-in-out infinite; }
.icon-glow-amber.icon-breathe { animation: glowPulseAmber 2.5s ease-in-out infinite, iconBreathe 3s ease-in-out infinite; }
.icon-glow-ruby.icon-breathe { animation: glowPulseRuby 2.5s ease-in-out infinite, iconBreathe 3s ease-in-out infinite; }
.icon-glow-rose.icon-breathe { animation: glowPulseRose 2.5s ease-in-out infinite, iconBreathe 3s ease-in-out infinite; }
.icon-glow-cyan.icon-breathe { animation: glowPulseCyan 2.5s ease-in-out infinite, iconBreathe 3s ease-in-out infinite; }

/* Hover enhancement for interactive icons */
.btn:hover .icon-svg,
a:hover .icon-svg,
button:hover .icon-svg {
  transform: scale(1.1);
  filter: drop-shadow(0 0 12px rgba(212,175,55,0.4));
}

/* ══════════════════════════════════════════════════════════════
   Verda Biomass Pellet Plant – Catalog Page
   ══════════════════════════════════════════════════════════════ */
.catalog-page {
  --catalog-navy: #1a2a5e;
  --catalog-navy-light: #2a3d7a;
  --catalog-white: #ffffff;
  --catalog-bg: #ffffff;
  --catalog-text: #222222;
  --catalog-text-muted: #555555;
  --catalog-border: #cccccc;
  --catalog-table-alt: #f4f6fa;
  --catalog-footer-curve: #1a2a5e;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}

.catalog-page {
  background: var(--catalog-bg);
  color: var(--catalog-text);
  max-width: 794px;
  margin: 0 auto;
  line-height: 1.55;
}

.catalog-cover {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 1100px;
  padding: 60px 40px 0;
  background: var(--catalog-bg);
  overflow: hidden;
}

.catalog-cover-logo {
  width: 200px;
  height: auto;
  margin-bottom: 36px;
}

.catalog-cover-title {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--catalog-navy);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.25;
  margin-bottom: 44px;
}

.catalog-cover-hero {
  width: 90%;
  max-width: 560px;
  height: auto;
  object-fit: contain;
}

.catalog-section {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 1100px;
  background: var(--catalog-bg);
  padding-bottom: 80px;
}

.catalog-section-header {
  background: var(--catalog-navy);
  color: var(--catalog-white);
  padding: 18px 36px;
  margin: 0;
}

.catalog-section-header h2 {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0;
  color: var(--catalog-white);
}

.catalog-section-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 24px 32px;
}

.catalog-section-image {
  max-width: 420px;
  width: 80%;
  height: auto;
  object-fit: contain;
}

.catalog-section-description {
  border: 1px solid var(--catalog-border);
  border-radius: 4px;
  margin: 0 36px 36px;
  padding: 24px 28px;
}

.catalog-section-description p {
  font-size: 0.92rem;
  color: var(--catalog-text);
  line-height: 1.7;
  margin: 0;
}

.catalog-spec-table-wrapper {
  margin: 0 36px 24px;
}

.catalog-spec-table-title {
  background: var(--catalog-navy);
  color: var(--catalog-white);
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-align: center;
  margin: 0;
}

.catalog-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.catalog-spec-table th {
  background: var(--catalog-navy);
  color: var(--catalog-white);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  border: 1px solid var(--catalog-navy-light);
  font-size: 0.82rem;
}

.catalog-spec-table td {
  padding: 10px 14px;
  border: 1px solid #dde1e6;
  vertical-align: top;
  font-size: 0.82rem;
  line-height: 1.5;
}

.catalog-spec-table tr:nth-child(even) td {
  background: var(--catalog-table-alt);
}

.catalog-spec-table td:first-child {
  font-weight: 600;
  color: var(--catalog-text);
  white-space: nowrap;
}

.catalog-footer-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--catalog-navy);
  color: var(--catalog-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 36px;
  border-radius: 0 60px 0 0;
}

.catalog-footer-bar a,
.catalog-footer-bar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--catalog-white);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
}

.catalog-footer-bar svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.catalog-spec-table.pulse-jet td:first-child {
  width: 30%;
}

@media (max-width: 600px) {
  .catalog-page { max-width: 100%; }
  .catalog-cover { min-height: auto; padding: 32px 20px 0; }
  .catalog-cover-title { font-size: 1.4rem; }
  .catalog-cover-logo { width: 140px; }
  .catalog-section { min-height: auto; }
  .catalog-section-header h2 { font-size: 1.2rem; }
  .catalog-section-description { margin: 0 16px 24px; padding: 16px; }
  .catalog-spec-table-wrapper { margin: 0 16px 16px; overflow-x: auto; }
  .catalog-footer-bar { padding: 12px 20px; flex-direction: column; gap: 8px; border-radius: 0; }
}

/* ══════════════════════════════════════════════════════════════
   NEW FEATURE STYLES
   ══════════════════════════════════════════════════════════════ */

/* ──────── Toast Notifications ──────── */
#toast-container {
  position: fixed;
  top: 100px;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.toast {
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 500;
  pointer-events: auto;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  max-width: 380px;
}

.toast-success { border-left: 3px solid #22c55e; }
.toast-error { border-left: 3px solid #ef4444; }
.toast-info { border-left: 3px solid var(--color-primary); }

/* ──────── Floating CTA ──────── */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.floating-cta .btn {
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 3rem;
  box-shadow: 0 8px 32px rgba(201, 169, 110, 0.3);
  gap: 0.5rem;
}

.floating-cta .btn:hover {
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.45);
}

@media (max-width: 640px) {
  .floating-cta {
    right: 1rem;
    bottom: 1rem;
  }
  .floating-cta .btn { padding: 0.85rem 1.5rem; font-size: 0.9rem; }
}

/* ──────── Scroll Reveal Animation ──────── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* ──────── Gallery ──────── */
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-filter-btn:hover {
  border-color: var(--color-primary) !important;
  color: var(--color-primary) !important;
}

/* ──────── Lightbox ──────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10001;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10001;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ──────── Barber Card ──────── */
.barber-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 169, 110, 0.3);
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.1);
}

/* ──────── FAQ ──────── */
.faq-item:hover {
  border-color: rgba(201, 169, 110, 0.15) !important;
}

/* ──────── Pulse Animation ──────── */
@keyframes pulse {
  0% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  70% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* ──────── Select Dropdown Style ──────── */
select.input-field {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* ──────── Gift Card Hover ──────── */
.gc-amount-btn:hover {
  border-color: var(--color-primary) !important;
  color: var(--color-primary) !important;
}

/* ──────── Reels Showcase ──────── */
.reels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.reel-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.reel-card:hover {
  border-color: rgba(212,175,55,0.2);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  transform: translateY(-3px);
}

.reel-embed-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  max-height: 460px;
  overflow: hidden;
  background: #111;
}
.reel-iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border: none;
}

.reel-fb-placeholder {
  aspect-ratio: 9/16;
  max-height: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(145deg, #1a1a24, #12121a);
  position: relative;
}
.reel-fb-play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(66,103,178,0.2);
  border: 2px solid rgba(66,103,178,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4267B2;
  font-size: 1.5rem;
  transition: var(--transition);
}
.reel-fb:hover .reel-fb-play {
  background: rgba(66,103,178,0.4);
  transform: scale(1.1);
}

.reel-card-footer {
  padding: 0.875rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.reel-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.reel-badge-ig {
  background: rgba(225,48,108,0.12);
  color: #E1306C;
}
.reel-badge-fb {
  background: rgba(66,103,178,0.12);
  color: #4267B2;
}
.reel-caption {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Horizontal Scroll Row (for Cuts) */
.reels-scroll-wrapper {
  position: relative;
}
.reels-scroll-row {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.5rem 0;
}
.reels-scroll-row::-webkit-scrollbar { display: none; }
.reels-scroll-row .reel-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
}

.reels-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(20,20,24,0.9);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.reels-nav:hover {
  background: var(--color-primary);
  color: #000;
}
.reels-nav-left { left: -15px; }
.reels-nav-right { right: -15px; }

/* ═══ Reel Preview Card (thumbnail style) ═══ */
.reel-preview-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.reel-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(212,175,55,0.15);
}
.reel-preview-thumb {
  aspect-ratio: 9/14;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.reel-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.55) 100%);
  transition: background 0.3s ease;
}
.reel-preview-card:hover .reel-preview-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.4) 100%);
}
.reel-preview-play {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(212,175,55,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 25px rgba(212,175,55,0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.reel-preview-card:hover .reel-preview-play {
  transform: scale(1.12);
  box-shadow: 0 8px 35px rgba(212,175,55,0.5);
}
.reel-preview-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 3;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/* Hero reel responsive */
.hero-reel {
  display: block;
}
@media (max-width: 768px) {
  .hero-reel {
    flex: 0 0 280px !important;
    max-width: 280px !important;
    margin: 0 auto;
  }
  .reels-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }
  .reels-scroll-row .reel-card {
    flex: 0 0 260px;
  }
  .reels-nav { display: none; }
}
@media (max-width: 480px) {
  .hero-reel {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}

/* ══════════════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE RESPONSIVE — All Screen Sizes
   ══════════════════════════════════════════════════════════════ */

/* ── Ensure full-width on all devices ── */
html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.app-wrapper {
  width: 100%;
  overflow-x: hidden;
}

/* ── Tablet breakpoint (768px and below) ── */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  /* Buttons */
  .btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
  }

  .btn-primary, .btn-outline {
    font-size: 0.9rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    text-align: center;
    font-size: 0.8rem;
  }
}

/* ── Mobile breakpoint (480px and below) ── */
@media (max-width: 480px) {

  /* ── Base container: tighter padding, edge-to-edge ── */
  .container {
    padding: 0 0.75rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section-title {
    font-size: 1.65rem;
    margin-bottom: 1.5rem;
  }

  .section-title::after {
    width: 40px;
  }

  /* ── Navbar Mobile ── */
  .navbar .container {
    height: 64px;
    padding: 0 0.75rem;
  }

  .nav-brand span {
    font-size: 1.2rem;
    letter-spacing: 1.5px;
  }

  .nav-brand svg {
    width: 22px;
    height: 22px;
  }

  .nav-mobile-menu {
    top: 64px;
    padding: 1.5rem 1rem;
    gap: 1.25rem;
  }

  .nav-mobile-menu a,
  .nav-mobile-menu button {
    font-size: 0.95rem;
  }

  /* ── Buttons ── */
  .btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    gap: 0.35rem;
  }

  /* ── Forms ── */
  .input-field {
    padding: 0.65rem 0.85rem;
    font-size: 0.9rem;
  }

  .input-label {
    font-size: 0.8rem;
  }

  .input-group {
    margin-bottom: 1.25rem;
  }

  /* ── Cards & Glassmorphism ── */
  .bg-glass {
    border-radius: var(--radius-md) !important;
  }

  /* ── Footer ── */
  .site-footer {
    padding: 2.5rem 0 1.5rem 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-grid div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-grid ul {
    align-items: center;
  }

  .footer-bottom {
    text-align: center;
  }

  /* ── Referral Banner ── */
  .referral-banner {
    flex-direction: column !important;
    align-items: stretch !important;
    text-align: center;
  }

  .referral-banner > div:first-of-type {
    text-align: center;
  }

  .referral-banner .referral-btn {
    width: 100% !important;
    text-align: center;
    justify-content: center;
  }

  /* ── Toast ── */
  #toast-container {
    top: 75px;
    right: 0.75rem;
    left: 0.75rem;
  }

  .toast {
    max-width: 100%;
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
  }

  /* ── Floating CTA ── */
  .floating-cta {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .floating-cta .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
    border-radius: 2rem;
  }

  /* ── Lightbox ── */
  .lightbox-close {
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
  }

  .lightbox-nav {
    width: 36px;
    height: 36px;
  }

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

  /* ── Gallery ── */
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)) !important;
    gap: 0.75rem !important;
  }
}

/* ── Small Mobile (360px and below — Galaxy S8, iPhone SE, etc.) ── */
@media (max-width: 380px) {
  .container {
    padding: 0 0.5rem;
  }

  .navbar .container {
    padding: 0 0.5rem;
  }

  .nav-brand span {
    font-size: 1.1rem;
    letter-spacing: 1px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .btn {
    padding: 0.55rem 0.85rem;
    font-size: 0.8rem;
  }

  .input-field {
    padding: 0.6rem 0.75rem;
    font-size: 0.85rem;
  }

  .nav-mobile-menu {
    padding: 1.25rem 0.75rem;
    gap: 1rem;
  }

  .site-footer {
    padding: 2rem 0 1rem 0;
  }
}
