/* =============================================================
   MYSTIC HALLOWEEN — Main Stylesheet
   Site: mystichalloween.com
   Description: Premium Halloween-themed website
   ============================================================= */

/* ---------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES (Design Tokens)
--------------------------------------------------------------- */
:root {
  /* Color Palette */
  --clr-bg:          #0d0b14;        /* Deep dark purple-black */
  --clr-bg-alt:      #130f1e;        /* Slightly lighter alt bg */
  --clr-surface:     #1c172a;        /* Card / section surfaces */
  --clr-surface-2:   #231d34;        /* Elevated surface */
  --clr-border:      #2e2545;        /* Subtle borders */

  --clr-orange:      #f97316;        /* Pumpkin orange (primary accent) */
  --clr-orange-light:#fb923c;        /* Light orange */
  --clr-orange-dark: #ea580c;        /* Dark orange */
  --clr-purple:      #9333ea;        /* Mystic purple */
  --clr-purple-light:#c084fc;        /* Lavender */
  --clr-purple-dark: #6b21a8;        /* Deep purple */
  --clr-gold:        #f59e0b;        /* Warm gold */

  --clr-text:        #e2d9f3;        /* Primary text */
  --clr-text-muted:  #9d8ec0;        /* Secondary / muted text */
  --clr-white:       #ffffff;

  /* Typography */
  --font-display:    'Cinzel Decorative', serif;
  --font-heading:    'Cinzel', serif;
  --font-body:       'Inter', sans-serif;

  /* Spacing */
  --section-pad:     120px;
  --section-pad-sm:  70px;

  /* Transitions */
  --transition:      all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;

  /* Shadows */
  --shadow-glow-orange: 0 0 30px rgba(249, 115, 22, 0.4);
  --shadow-glow-purple: 0 0 30px rgba(147, 51, 234, 0.4);
  --shadow-card:        0 8px 40px rgba(0, 0, 0, 0.6);
}

/* ---------------------------------------------------------------
   2. RESET & BASE
--------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

/* ---------------------------------------------------------------
   3. UTILITY CLASSES
--------------------------------------------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-fluid {
  width: 100%;
  padding: 0 24px;
}

.section-pad {
  padding: var(--section-pad) 0;
}

.section-pad-sm {
  padding: var(--section-pad-sm) 0;
}

.text-center { text-align: center; }
.text-orange { color: var(--clr-orange); }

/* Decorative divider */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-orange), var(--clr-purple));
  margin: 16px auto;
  border-radius: 3px;
}

/* Section heading style */
.section-title {
  margin-bottom: 60px;
}

.section-title .eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-orange);
  margin-bottom: 12px;
}

.section-title h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.25;
}

.section-title p {
  max-width: 560px;
  color: var(--clr-text-muted);
  margin-top: 16px;
}

/* ---------------------------------------------------------------
   4. BUTTONS
--------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: var(--transition-fast);
}

.btn:hover::before {
  opacity: 1;
}

/* Primary: Orange flame */
.btn-primary {
  background: linear-gradient(135deg, var(--clr-orange-dark), var(--clr-orange));
  color: var(--clr-white);
  box-shadow: var(--shadow-glow-orange);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 45px rgba(249, 115, 22, 0.55);
  color: var(--clr-white);
}

/* Outline: Ghost */
.btn-outline {
  background: transparent;
  color: var(--clr-orange);
  border: 2px solid var(--clr-orange);
}

.btn-outline:hover {
  background: var(--clr-orange);
  color: var(--clr-white);
  box-shadow: var(--shadow-glow-orange);
}

/* Ghost social button */
.btn-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1.5px solid var(--clr-border);
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  transition: var(--transition);
}

.btn-social:hover {
  border-color: var(--clr-purple);
  color: var(--clr-purple-light);
  box-shadow: var(--shadow-glow-purple);
}

/* ---------------------------------------------------------------
   5. FLOATING PARTICLES (background ambiance)
--------------------------------------------------------------- */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ---------------------------------------------------------------
   6. HEADER
--------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

/* Top utility bar */
.header-topbar {
  background: var(--clr-bg-alt);
  border-bottom: 1px solid var(--clr-border);
  padding: 8px 0;
}

.header-topbar .topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-topbar .social-links {
  display: flex;
  gap: 16px;
}

.header-topbar .social-links a {
  color: var(--clr-text-muted);
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.header-topbar .social-links a:hover {
  color: var(--clr-orange);
}

/* Logo */
.site-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--clr-orange), var(--clr-purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-logo .logo-icon {
  font-size: 1.6rem;
  -webkit-text-fill-color: var(--clr-orange);
  text-fill-color: var(--clr-orange);
  filter: drop-shadow(0 0 10px rgba(249, 115, 22, 0.6));
}

/* Main nav bar */
.header-navbar {
  background: rgba(13, 11, 20, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 16px 0;
  transition: var(--transition);
}

.header-navbar.scrolled {
  padding: 10px 0;
  background: rgba(13, 11, 20, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Desktop nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  position: relative;
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  transition: var(--transition);
  border-radius: 4px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--clr-orange);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--clr-white);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: calc(100% - 32px);
}

/* Dropdown */
.nav-item {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  min-width: 180px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  border-radius: 0;
}

.nav-dropdown a::after {
  display: none;
}

.nav-dropdown a:hover {
  background: rgba(249, 115, 22, 0.1);
  color: var(--clr-orange);
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 11, 20, 0.98);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(20px);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--clr-text-muted);
  padding: 12px 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: var(--clr-orange);
  text-shadow: 0 0 30px rgba(249, 115, 22, 0.6);
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--clr-text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.mobile-menu-close:hover {
  color: var(--clr-orange);
}

/* ---------------------------------------------------------------
   7. HERO SECTION
--------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 110px; /* Account for fixed header */
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero_bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

/* Multi-layer gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(13, 11, 20, 0.85) 0%,
      rgba(109, 40, 217, 0.2) 50%,
      rgba(13, 11, 20, 0.7) 100%
    );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
}

/* Bat animation above heading */
.hero-bats {
  margin-bottom: 20px;
  display: flex;
  gap: 12px;
  animation: floatBats 3s ease-in-out infinite;
}

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

.hero-bats .bat {
  font-size: 1.4rem;
  opacity: 0.7;
  animation: batWiggle 1.5s ease-in-out infinite;
}

.hero-bats .bat:nth-child(2) { animation-delay: 0.3s; opacity: 0.5; }
.hero-bats .bat:nth-child(3) { animation-delay: 0.6s; opacity: 0.4; }

@keyframes batWiggle {
  0%, 100% { transform: rotate(-5deg); }
  50%       { transform: rotate(5deg); }
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clr-orange);
  margin-bottom: 20px;
  position: relative;
  padding-left: 40px;
}

.hero-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 1px;
  background: var(--clr-orange);
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--clr-white);
  margin-bottom: 24px;
  text-shadow: 0 0 60px rgba(249, 115, 22, 0.3);
}

.hero-heading .highlight {
  color: var(--clr-orange);
  display: block;
  text-shadow: 0 0 40px rgba(249, 115, 22, 0.5);
}

.hero-subtext {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--clr-text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounceScroll 2s ease-in-out infinite;
  cursor: pointer;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--clr-orange), transparent);
}

@keyframes bounceScroll {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 1;   transform: translateX(-50%) translateY(6px); }
}

/* ---------------------------------------------------------------
   8. ABOUT SECTION
--------------------------------------------------------------- */
.about-section {
  position: relative;
  z-index: 1;
  background: var(--clr-bg-alt);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
}

.about-img-wrapper img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
}

/* Decorative frame behind image */
.about-img-wrapper::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid var(--clr-border);
  border-radius: 12px;
  z-index: -1;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.05), rgba(147, 51, 234, 0.05));
}

/* Orange accent badge */
.about-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: linear-gradient(135deg, var(--clr-orange-dark), var(--clr-orange));
  color: var(--clr-white);
  border-radius: 12px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-glow-orange);
}

.about-badge .badge-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.about-badge .badge-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: 4px;
}

.about-content .section-title {
  margin-bottom: 28px;
}

.about-content .section-title .divider {
  margin: 16px 0;
}

.about-content p {
  color: var(--clr-text-muted);
  margin-bottom: 20px;
}

/* Feature bullets */
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 8px;
  font-size: 1.2rem;
}

.feature-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-text);
}

/* ---------------------------------------------------------------
   9. PRODUCTS SECTION
--------------------------------------------------------------- */
.products-section {
  position: relative;
  z-index: 1;
  background: var(--clr-bg);
  overflow: hidden;
}

/* Background texture */
.products-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 20px;
}

/* Products carousel container */
.products-track-wrapper {
  overflow: hidden;
  position: relative;
}

.products-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Product Card */
.product-card {
  flex: 0 0 calc(25% - 21px);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.5), var(--shadow-glow-orange);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.08);
}

/* Hover overlay with CTA */
.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,11,20,0.9) 0%, rgba(13,11,20,0.3) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-overlay .btn {
  padding: 10px 20px;
  font-size: 0.8rem;
  transform: translateY(10px);
  transition: var(--transition);
}

.product-card:hover .product-overlay .btn {
  transform: translateY(0);
}

/* Category tag */
.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--clr-orange);
  color: var(--clr-white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}

.product-info {
  padding: 20px;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: 8px;
  transition: var(--transition-fast);
}

.product-card:hover .product-name {
  color: var(--clr-orange);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-orange);
}

.product-price .old-price {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  text-decoration: line-through;
  margin-left: 6px;
  font-weight: 400;
}

.product-rating {
  display: flex;
  gap: 2px;
  color: var(--clr-gold);
  font-size: 0.75rem;
}

/* Carousel controls */
.carousel-controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 48px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--clr-border);
  background: var(--clr-surface);
  color: var(--clr-text-muted);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.carousel-btn:hover {
  border-color: var(--clr-orange);
  color: var(--clr-orange);
  background: rgba(249, 115, 22, 0.1);
  box-shadow: var(--shadow-glow-orange);
}

/* ---------------------------------------------------------------
   10. VIDEO SECTION
--------------------------------------------------------------- */
.video-section {
  position: relative;
  z-index: 1;
}

.video-inner {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;
  margin: 0 24px;
}

.video-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('../img/video_bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: transform 0.8s ease;
}

.video-inner:hover .video-bg-img {
  transform: scale(1.03);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 11, 20, 0.75) 0%,
    rgba(109, 40, 217, 0.35) 100%
  );
  z-index: 2;
}

.video-content {
  position: relative;
  z-index: 3;
  text-align: center;
}

.play-btn {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.15);
  border: 2px solid var(--clr-orange);
  color: var(--clr-white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  margin: 0 auto 24px;
  backdrop-filter: blur(8px);
  position: relative;
}

.play-btn::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(249, 115, 22, 0.3);
  animation: pulseRing 2s ease-out infinite;
}

.play-btn::after {
  content: '';
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  border: 1px solid rgba(249, 115, 22, 0.15);
  animation: pulseRing 2s ease-out infinite 0.5s;
}

@keyframes pulseRing {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}

.play-btn:hover {
  background: var(--clr-orange);
  transform: scale(1.1);
  box-shadow: var(--shadow-glow-orange);
}

.video-label {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--clr-white);
  font-weight: 700;
}

.video-sub {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  margin-top: 8px;
}

/* ---------------------------------------------------------------
   11. TESTIMONIALS SECTION
--------------------------------------------------------------- */
.testimonials-section {
  position: relative;
  z-index: 1;
  background: var(--clr-bg-alt);
}

/* Background radial glow */
.testimonials-section::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(147, 51, 234, 0.4);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.4), var(--shadow-glow-purple);
  transform: translateY(-4px);
}

/* Quote mark */
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--clr-orange);
  opacity: 0.15;
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--clr-gold);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.testimonial-text {
  font-style: italic;
  color: var(--clr-text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-orange-dark), var(--clr-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.author-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-white);
}

.author-title {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  margin-top: 2px;
}

/* ---------------------------------------------------------------
   12. BLOG SECTION
--------------------------------------------------------------- */
.blog-section {
  position: relative;
  z-index: 1;
  background: var(--clr-bg);
}

.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 16px;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.blog-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: var(--shadow-card), 0 0 30px rgba(249, 115, 22, 0.1);
  transform: translateY(-4px);
}

.blog-img {
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.06);
}

.blog-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.blog-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-orange);
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.2);
  padding: 3px 10px;
  border-radius: 3px;
}

.blog-date {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
}

.blog-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.4;
  margin-bottom: 12px;
  transition: var(--transition-fast);
}

.blog-card:hover .blog-title {
  color: var(--clr-orange);
}

.blog-excerpt {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-orange);
  transition: var(--transition-fast);
}

.blog-read-more span {
  transition: transform 0.2s ease;
}

.blog-card:hover .blog-read-more span {
  transform: translateX(4px);
}

/* ---------------------------------------------------------------
   13. GALLERY / INSTAGRAM SECTION
--------------------------------------------------------------- */
.gallery-section {
  position: relative;
  z-index: 1;
  background: var(--clr-bg-alt);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(147, 51, 234, 0.7),
    rgba(249, 115, 22, 0.7)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-icon {
  font-size: 2rem;
  color: var(--clr-white);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-icon {
  transform: scale(1);
}

.gallery-social {
  text-align: center;
  margin-top: 48px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------------------------------------------------------------
   14. NEWSLETTER SECTION
--------------------------------------------------------------- */
.newsletter-section {
  position: relative;
  z-index: 1;
  background: var(--clr-bg);
  text-align: center;
}

.newsletter-box {
  max-width: 580px;
  margin: 0 auto;
}

.newsletter-box h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 12px;
}

.newsletter-box p {
  color: var(--clr-text-muted);
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 4px;
  color: var(--clr-text);
  font-size: 0.9rem;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition-fast);
}

.newsletter-form input::placeholder {
  color: var(--clr-text-muted);
}

.newsletter-form input:focus {
  border-color: var(--clr-orange);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

/* ---------------------------------------------------------------
   15. FOOTER
--------------------------------------------------------------- */
.site-footer {
  position: relative;
  z-index: 1;
  background: var(--clr-bg-alt);
  border-top: 1px solid var(--clr-border);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--clr-border);
  flex-wrap: wrap;
  gap: 20px;
}

.footer-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-nav a {
  padding: 6px 14px;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  letter-spacing: 0.05em;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.footer-nav a:hover {
  color: var(--clr-orange);
  background: rgba(249, 115, 22, 0.08);
}

.footer-body {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding: 56px 0;
  border-bottom: 1px solid var(--clr-border);
}

.footer-col-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 20px;
}

.footer-col-title .col-icon {
  font-size: 1.1rem;
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  color: var(--clr-orange);
}

.contact-text {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.contact-text a {
  color: var(--clr-text-muted);
}

.contact-text a:hover {
  color: var(--clr-orange);
}

/* Footer bottom */
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}

.footer-bottom .heart {
  color: var(--clr-orange);
}

/* ---------------------------------------------------------------
   16. SCROLL-TO-TOP BUTTON
--------------------------------------------------------------- */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-orange-dark), var(--clr-purple));
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
  border: none;
}

#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

#back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.6);
}

/* ---------------------------------------------------------------
   17. LIGHTBOX OVERLAY
--------------------------------------------------------------- */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 0 80px rgba(0,0,0,0.8);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--clr-white);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--clr-orange);
}

/* ---------------------------------------------------------------
   18. ANIMATION UTILITIES
--------------------------------------------------------------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ---------------------------------------------------------------
   19. RESPONSIVE DESIGN
--------------------------------------------------------------- */
@media (max-width: 1100px) {
  .about-grid { gap: 50px; }
  .product-card { flex: 0 0 calc(33.333% - 19px); }
  .footer-body { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root {
    --section-pad: 80px;
    --section-pad-sm: 50px;
  }

  .main-nav { display: none; }
  .hamburger { display: flex; }

  .header-topbar .social-links { display: none; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-img-wrapper { max-width: 500px; margin: 0 auto; }

  .about-badge {
    bottom: 20px;
    right: 10px;
  }

  .testimonials-grid { grid-template-columns: 1fr 1fr; }

  .blog-grid { grid-template-columns: 1fr; }

  .blog-card { grid-template-columns: 1fr; }

  .blog-img { height: 200px; }

  .footer-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-top { flex-direction: column; align-items: flex-start; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 2/1;
  }

  .product-card { flex: 0 0 calc(50% - 14px); }
}

@media (max-width: 600px) {
  :root {
    --section-pad: 60px;
  }

  .hero-heading { font-size: clamp(2rem, 10vw, 3.5rem); }

  .testimonials-grid { grid-template-columns: 1fr; }

  .newsletter-form { flex-direction: column; }

  .gallery-grid { grid-template-columns: 1fr; }

  .gallery-item:first-child {
    grid-column: auto;
    aspect-ratio: 1;
  }

  .about-features { grid-template-columns: 1fr; }

  .product-card { flex: 0 0 calc(100% - 28px); }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  #back-to-top {
    bottom: 20px;
    right: 20px;
  }
}
