/* ========================================
   SMOKERS PARADISE — DARK PREMIUM THEME
   Inspired by: PUFF Bar, Daily High Club,
   Famous Smoke, Smoke Cartel
   ======================================== */

/* === BASE === */
html { scroll-behavior: smooth; }
::selection { background: #f59e0b; color: #0a0a0a; }
* { -webkit-tap-highlight-color: transparent; }

/* === AGE GATE === */
.age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  opacity: 1; transition: opacity 0.5s ease;
}
.age-gate.hidden { opacity: 0; pointer-events: none; }
.age-gate-box {
  background: #141414; border: 1px solid #2a2a2a;
  border-radius: 1.5rem; padding: 3rem; text-align: center;
  max-width: 420px; width: 90%;
  box-shadow: 0 0 60px rgba(245,158,11,0.1);
  animation: scaleIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* === SCROLL ANIMATIONS === */
.animate-on-scroll {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-visible { opacity: 1; transform: translateY(0); }
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.15s; }
.stagger > *:nth-child(4) { transition-delay: 0.2s; }
.stagger > *:nth-child(5) { transition-delay: 0.25s; }
.stagger > *:nth-child(6) { transition-delay: 0.3s; }
.stagger > *:nth-child(7) { transition-delay: 0.35s; }
.stagger > *:nth-child(8) { transition-delay: 0.4s; }

/* === HERO TEXT REVEAL (staggered smoke-in) === */
.hero-fade {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(8px);
  animation: heroFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--delay, 0s);
}
@keyframes heroFadeIn {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* === ANIMATED GRADIENT TEXT (Fire) === */
.gradient-text {
  background: linear-gradient(135deg, #f59e0b, #ff6b35, #dc2626, #f59e0b);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* === GOLD GRADIENT TEXT (Daily High Club style) === */
.gradient-text-gold {
  background: linear-gradient(135deg, #f59e0b 0%, #fcd34d 30%, #f59e0b 50%, #ff6b35 80%, #f59e0b 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 5s ease infinite;
  filter: drop-shadow(0 0 30px rgba(245,158,11,0.3));
}
@keyframes goldShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* === GLASS CHIP (glassmorphism badge) === */
.glass-chip {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
}

/* === GOLD CTA (Daily High Club style) === */
.gold-cta {
  background: linear-gradient(135deg, #ab7917, #f59e0b, #ffdf6e, #f59e0b, #ab7917);
  background-size: 300% 100%;
  color: #0a0a0a;
  position: relative; overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(245,158,11,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
  animation: goldBtnShimmer 4s ease infinite;
}
.gold-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(245,158,11,0.5), 0 0 60px rgba(245,158,11,0.15), inset 0 1px 0 rgba(255,255,255,0.3);
}
.gold-cta::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.3) 50%, transparent 65%);
  transform: translateX(-100%); transition: transform 0.7s;
}
.gold-cta:hover::after { transform: translateX(100%); }
@keyframes goldBtnShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* === GLASS CTA (ghost button w/ glassmorphism) === */
.glass-cta {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  position: relative; overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.glass-cta:hover {
  background: rgba(245,158,11,0.1);
  border-color: rgba(245,158,11,0.4);
  box-shadow: 0 0 30px rgba(245,158,11,0.15);
  transform: translateY(-3px);
}

/* === TRUST BADGES (PUFF Bar style) === */
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.6);
  transition: all 0.3s ease;
}
.trust-badge:hover {
  border-color: rgba(245,158,11,0.3);
  color: rgba(255,255,255,0.9);
  background: rgba(245,158,11,0.08);
}

/* === CARD EFFECTS — 3D TILT + GLOW BORDER === */
.card-hover {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  will-change: transform;
}
.card-hover:hover {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 30px rgba(245,158,11,0.08);
  border-color: #f59e0b50;
}

/* === GLOWING BORDER CARDS === */
.glow-card {
  position: relative;
  background: #141414;
  border-radius: 1rem;
  overflow: hidden;
}
.glow-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(from var(--angle, 0deg), transparent 60%, #f59e0b, transparent 40%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
  animation: rotateBorder 4s linear infinite;
}
.glow-card:hover::before { opacity: 1; }

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes rotateBorder {
  to { --angle: 360deg; }
}

/* === IMAGE ZOOM === */
.img-zoom { overflow: hidden; }
.img-zoom img { transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.img-zoom:hover img { transform: scale(1.1); }

/* === BUTTON GLOW — PRIMARY === */
.btn-glow {
  position: relative; overflow: hidden;
  transition: box-shadow 0.4s, transform 0.3s;
}
.btn-glow:hover {
  box-shadow: 0 8px 30px rgba(245,158,11,0.5), 0 0 60px rgba(245,158,11,0.15);
  transform: translateY(-3px) scale(1.02);
}
.btn-glow::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.25) 50%, transparent 65%);
  transform: translateX(-100%); transition: transform 0.7s;
}
.btn-glow:hover::after { transform: translateX(100%); }

/* === BUTTON GLOW — RED === */
.btn-glow-red {
  position: relative; overflow: hidden;
  transition: box-shadow 0.4s, transform 0.3s;
}
.btn-glow-red:hover {
  box-shadow: 0 8px 30px rgba(220,38,38,0.5), 0 0 60px rgba(220,38,38,0.15);
  transform: translateY(-3px) scale(1.02);
}
.btn-glow-red::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.2) 50%, transparent 65%);
  transform: translateX(-100%); transition: transform 0.7s;
}
.btn-glow-red:hover::after { transform: translateX(100%); }

/* === GHOST BUTTON HOVER === */
.btn-ghost {
  position: relative; overflow: hidden;
  transition: all 0.4s ease;
}
.btn-ghost:hover {
  border-color: #f59e0b !important;
  box-shadow: 0 0 20px rgba(245,158,11,0.15);
  transform: translateY(-3px);
}
.btn-ghost::before {
  content: ''; position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(245,158,11,0.08);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}
.btn-ghost:hover::before { width: 300px; height: 300px; }

/* === RIPPLE EFFECT === */
.ripple {
  position: relative; overflow: hidden;
}
.ripple-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: scale(0);
  animation: rippleAnim 0.6s ease-out forwards;
  pointer-events: none;
}
@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

/* === NAVIGATION === */
.nav-link { position: relative; }
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 50%;
  width: 0; height: 2px;
  background: linear-gradient(90deg, #f59e0b, #dc2626);
  transition: width 0.3s ease, left 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; left: 0; }
.nav-link.active { color: #f59e0b; }

/* === GLASS NAV === */
.glass-nav {
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}
.glass-nav.scrolled {
  border-color: #2a2a2a;
  box-shadow: 0 4px 30px rgba(0,0,0,0.6);
  background: rgba(10,10,10,0.95);
}

/* === NAV CALL BUTTON PULSE === */
.nav-call-pulse {
  animation: navPulse 2s ease-in-out infinite;
}
@keyframes navPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,158,11,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(245,158,11,0); }
}

/* === DIVIDERS === */
.accent-divider {
  height: 2px;
  background: linear-gradient(to right, transparent, #f59e0b, #dc2626, #f59e0b, transparent);
  background-size: 200% 100%;
  animation: shimmerDivider 3s ease infinite;
}
@keyframes shimmerDivider {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* === STARS === */
.star-rating { color: #f59e0b; }

/* === CATEGORY CARD === */
.category-card {
  position: relative; overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
  will-change: transform;
}
.category-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0,0,0,0.6), 0 0 40px rgba(245,158,11,0.1);
}
.category-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
  z-index: 1; transition: all 0.5s;
}
.category-card:hover::before {
  background: linear-gradient(to top, rgba(245,158,11,0.15) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.2) 100%);
}
.category-card-content {
  position: relative; z-index: 2;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.category-card:hover .category-card-content { transform: translateY(-4px); }
.category-card::after {
  content: ''; position: absolute; inset: 0;
  background: inherit; background-size: cover; background-position: center;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}
.category-card:hover::after { transform: scale(1.1); }

/* ================================================
   HERO SECTION — CINEMATIC DARK GLASSMORPHISM
   ================================================ */
.hero-gradient {
  background: #0a0a0a;
  position: relative;
}

/* Background Slideshow */
.hero-slideshow { overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transform: scale(1.15);
  transition: opacity 2.5s cubic-bezier(0.4, 0, 0.2, 1), transform 10s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}
.hero-slide.active {
  opacity: 0.4;
  transform: scale(1);
}

/* Ambient Glow Orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: orbDrift 12s ease-in-out infinite alternate;
  will-change: transform;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,0.2), transparent 70%);
  top: -15%; left: -8%;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(220,38,38,0.15), transparent 70%);
  bottom: -10%; right: -8%;
  animation-delay: -4s; animation-duration: 16s;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(14,223,255,0.08), transparent 70%);
  top: 30%; left: 55%;
  animation-delay: -8s; animation-duration: 20s;
}
@keyframes orbDrift {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.15); }
  66% { transform: translate(-25px, 20px) scale(0.9); }
  100% { transform: translate(20px, -40px) scale(1.1); }
}

/* Ember + Smoke Particles */
.hero-particles {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: floatUp var(--dur, 8s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  left: var(--x, 50%);
  bottom: -10px;
}
.particle.ember {
  background: rgba(245,158,11,0.7);
  box-shadow: 0 0 8px 3px rgba(245,158,11,0.4);
}
.particle.smoke-p {
  width: var(--size, 8px); height: var(--size, 8px);
  background: rgba(255,255,255,0.03);
  filter: blur(3px);
}
@keyframes floatUp {
  0% { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0; }
  10% { opacity: var(--peak, 0.8); }
  80% { opacity: var(--peak, 0.8); }
  100% { transform: translateY(-100vh) translateX(var(--drift, 30px)) rotate(var(--spin, 180deg)); opacity: 0; }
}

/* ================================================
   PRODUCT SHOWCASE — FLOATING GLASS CARD
   ================================================ */
.product-showcase-wrap {
  position: relative;
  width: 100%;
  animation: showcaseFloat 5s ease-in-out infinite;
}
@keyframes showcaseFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* Glow behind card */
.product-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse at center, rgba(245,158,11,0.2) 0%, rgba(220,38,38,0.08) 40%, transparent 70%);
  filter: blur(40px);
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite;
  z-index: 0;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

/* Glass Card */
.glass-card {
  background: rgba(20,20,20,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.25rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.product-showcase {
  width: 100%;
  aspect-ratio: 3 / 4;
  position: relative;
}

/* Slides */
.pslide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.08);
}
.pslide.active {
  opacity: 1; transform: scale(1); z-index: 2;
}
.pslide img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 8s cubic-bezier(0.4, 0, 0.2, 1);
}
.pslide.active img {
  transform: scale(1.1);
}

/* Slide Caption */
.pslide-caption {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  padding: 40px 28px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}
.pslide.active .pslide-caption {
  transform: translateY(0); opacity: 1;
}
.pslide-tag {
  display: inline-block;
  background: linear-gradient(135deg, #ab7917, #f59e0b, #ffdf6e);
  color: #0a0a0a;
  font-size: 0.6rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px;
  padding: 4px 14px; border-radius: 20px;
  margin-bottom: 10px;
}
.pslide-caption h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 4px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.pslide-caption p {
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
}

/* Dot Nav */
.pslide-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.2); border: 1.5px solid rgba(255,255,255,0.15);
  cursor: pointer; transition: all 0.4s ease; padding: 0;
}
.pslide-dot.active {
  background: #f59e0b; border-color: #f59e0b;
  box-shadow: 0 0 12px rgba(245,158,11,0.6);
  width: 28px; border-radius: 5px;
}

/* Progress Bar */
.pslide-progress {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: rgba(255,255,255,0.05); z-index: 5; overflow: hidden;
}
.pslide-progress-bar {
  height: 100%; width: 0;
  background: linear-gradient(90deg, #ab7917, #f59e0b, #ffdf6e);
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(245,158,11,0.5);
}

/* Arrow Controls */
.pslide-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5; width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(0,0,0,0.4); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  color: white; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: all 0.3s ease; padding: 0;
}
.pslide-arrow svg { width: 16px; height: 16px; }
.product-showcase:hover .pslide-arrow { opacity: 1; }
.pslide-arrow:hover {
  background: rgba(245,158,11,0.25); border-color: rgba(245,158,11,0.4);
  box-shadow: 0 0 20px rgba(245,158,11,0.2);
}
.pslide-prev { left: 10px; }
.pslide-next { right: 10px; }

/* === TRUST BAR COUNTER === */
.counter-value {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* === SECTION LABEL GLOW === */
.section-label {
  text-shadow: 0 0 20px rgba(245,158,11,0.3);
}

/* === WHY US ICON SPIN === */
.icon-box {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.card-hover:hover .icon-box {
  transform: rotateY(180deg);
  background: rgba(245,158,11,0.2);
}

/* === TESTIMONIAL CARD QUOTE === */
.testimonial-card {
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -10px; left: 20px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: rgba(245,158,11,0.08);
  line-height: 1;
  pointer-events: none;
}

/* === CTA SECTION ANIMATED BG === */
.cta-gradient {
  background: linear-gradient(-45deg, #f59e0b, #dc2626, #ff6b35, #f59e0b);
  background-size: 400% 400%;
  animation: ctaGradient 6s ease infinite;
}
@keyframes ctaGradient {
  0%, 100% { background-position: 0% 50%; }
  25% { background-position: 100% 50%; }
  50% { background-position: 100% 0%; }
  75% { background-position: 0% 100%; }
}

/* === FAQ ACCORDION === */
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer.open { max-height: 500px; }
.faq-toggle svg { transition: transform 0.3s ease; }
.faq-toggle.open svg { transform: rotate(180deg); }

/* === FORM INPUTS (DARK) === */
.form-input {
  width: 100%; padding: 0.875rem 1rem;
  background: #141414; border: 1px solid #2a2a2a;
  border-radius: 0.75rem; color: #e5e5e5;
  font-size: 0.875rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}
.form-input::placeholder { color: #555; }
.form-input:focus {
  outline: none;
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245,158,11,0.15), 0 0 20px rgba(245,158,11,0.05);
  transform: translateY(-1px);
}

/* === PROMO CARD === */
.promo-card {
  position: relative; overflow: hidden;
  border: 1px solid #2a2a2a;
  transition: border-color 0.4s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}
.promo-card:hover {
  border-color: #f59e0b40;
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(245,158,11,0.08);
}
.promo-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: linear-gradient(135deg, #dc2626, #ff4444);
  color: white;
  padding: 0.25rem 0.75rem; border-radius: 9999px;
  font-size: 0.75rem; font-weight: 700;
  z-index: 2;
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* === PULSE ANIMATION (for phone CTA) === */
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}
.pulse-ring { position: relative; }
.pulse-ring::before {
  content: ''; position: absolute; inset: -4px;
  border: 2px solid #f59e0b;
  border-radius: inherit;
  animation: pulse-ring 2s ease-out infinite;
}

/* === SCROLL-TO-TOP === */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, #f59e0b, #ff6b35);
  color: #0a0a0a; border: none;
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  opacity: 0; transform: translateY(20px) scale(0.8);
  transition: opacity 0.4s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
  cursor: pointer; z-index: 50;
  box-shadow: 0 4px 20px rgba(245,158,11,0.3);
}
.scroll-top.visible { opacity: 1; transform: translateY(0) scale(1); }
.scroll-top:hover {
  box-shadow: 0 8px 35px rgba(245,158,11,0.5);
  transform: translateY(-3px) scale(1.1);
}

/* === FOOTER LINK HOVER === */
footer a {
  transition: color 0.3s, transform 0.3s;
  display: inline-block;
}
footer a:hover { transform: translateX(3px); }

/* === LOADING SHIMMER === */
.shimmer {
  position: relative; overflow: hidden;
}
.shimmer::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
  animation: shimmer 2s ease-in-out infinite;
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-gradient.min-h-\[100vh\] { min-height: 100vh; }
  .hero-gradient { min-height: auto; }
  .hero-image-float { animation: none; }
  .hero-orb { filter: blur(70px); opacity: 0.35; }
  .hero-orb-1 { width: 300px; height: 300px; }
  .hero-orb-2 { width: 250px; height: 250px; }
  .hero-orb-3 { width: 180px; height: 180px; }
  .hero-slide.active { opacity: 0.25; }
  .product-showcase-wrap { animation: none; }
  .hero-fade { filter: blur(0); }
}

/* === SMOOTH PAGE LOAD === */
body {
  animation: pageIn 0.6s ease-out;
}
@keyframes pageIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ================================================
   STORE — PRODUCT CATALOG
   ================================================ */

/* Scrollbar hide for category tabs */
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }
.scrollbar-hide::-webkit-scrollbar { display: none; }

/* Category Tabs */
.store-tab {
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #999;
  background: transparent;
  border: 1px solid #2a2a2a;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.store-tab:hover {
  border-color: #f59e0b50;
  color: #f59e0b;
  background: rgba(245,158,11,0.05);
}
.store-tab.active {
  background: #f59e0b;
  color: #0a0a0a;
  border-color: #f59e0b;
  box-shadow: 0 4px 15px rgba(245,158,11,0.3);
}
.tab-count {
  font-size: 0.65rem;
  background: rgba(255,255,255,0.15);
  padding: 1px 6px;
  border-radius: 9999px;
}
.store-tab.active .tab-count {
  background: rgba(0,0,0,0.2);
}

/* Product Grid */
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.store-category-header {
  grid-column: 1 / -1;
  padding: 1.5rem 0 0.5rem;
}
.store-category-header:first-child {
  padding-top: 0;
}

/* Product Card */
.product-card {
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(20px);
}
.product-card.card-animate-in {
  animation: cardFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: inherit;
}
@keyframes cardFadeIn {
  to { opacity: 1; transform: translateY(0); }
}
.product-card:hover {
  border-color: rgba(245,158,11,0.3);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5), 0 0 20px rgba(245,158,11,0.05);
}

/* Card Image */
.product-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #1c1c1c;
}

/* Stock Badge */
.stock-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  z-index: 2;
}
.stock-badge.in-stock {
  background: rgba(16,185,129,0.15);
  color: #34d399;
  border: 1px solid rgba(16,185,129,0.3);
}
.stock-badge.out-of-stock {
  background: rgba(239,68,68,0.15);
  color: #f87171;
  border: 1px solid rgba(239,68,68,0.3);
}

/* Placeholder Badge */
.placeholder-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
  background: rgba(245,158,11,0.15);
  color: #f59e0b;
  border: 1px solid rgba(245,158,11,0.3);
  z-index: 2;
}

/* Card Info */
.product-card-info {
  padding: 1rem;
}
.product-card-category {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f59e0b;
  margin-bottom: 0.25rem;
}
.product-card-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.product-card-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}
.product-call-link {
  font-size: 0.7rem;
  font-weight: 600;
  color: #f87171;
  transition: color 0.2s;
  white-space: nowrap;
}
.product-call-link:hover {
  color: #fca5a5;
}

/* ================================================
   ADMIN PANEL STYLES
   ================================================ */

/* Admin Product Row */
.admin-product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  transition: background 0.2s;
}
.admin-product-row:hover {
  background: rgba(255,255,255,0.02);
}

/* Admin Action Buttons */
.admin-btn-sm {
  width: 32px;
  height: 32px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #2a2a2a;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.admin-btn-edit { color: #94a3b8; }
.admin-btn-edit:hover {
  background: rgba(245,158,11,0.1);
  border-color: #f59e0b50;
  color: #f59e0b;
}
.admin-btn-delete { color: #94a3b8; }
.admin-btn-delete:hover {
  background: rgba(239,68,68,0.1);
  border-color: #ef444450;
  color: #ef4444;
}

/* Admin Tool Buttons */
.admin-tool-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #999;
  background: transparent;
  border: 1px solid #2a2a2a;
  cursor: pointer;
  transition: all 0.2s;
}
.admin-tool-btn:hover {
  border-color: #f59e0b50;
  color: #f59e0b;
  background: rgba(245,158,11,0.05);
}

/* Admin Category Chips */
.admin-cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
  background: #1c1c1c;
  border: 1px solid #2a2a2a;
  transition: border-color 0.2s;
}
.admin-cat-chip:hover {
  border-color: #f59e0b50;
}
.admin-cat-action {
  padding: 2px;
  border-radius: 4px;
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
  display: flex;
  align-items: center;
}

/* Toast Notification */
.admin-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.admin-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.admin-toast.success {
  background: #065f46;
  color: #6ee7b7;
  border: 1px solid #047857;
}
.admin-toast.error {
  background: #7f1d1d;
  color: #fca5a5;
  border: 1px solid #991b1b;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .store-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .product-card-info { padding: 0.75rem; }
  .product-card-name { font-size: 0.8rem; }
  .product-card-price { font-size: 0.95rem; }

  .admin-product-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .admin-product-row > div:last-child {
    width: 100%;
    justify-content: space-between;
  }
}

/* ── Mobile spacing fix: reduce huge gaps on sub-pages ── */
@media (max-width: 768px) {
  section.py-20 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
  section.py-24 { padding-top: 3.5rem !important; padding-bottom: 3.5rem !important; }
  section.py-16 { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
  section.hero-gradient { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
}
