/* ============================================
   MS GARAGE - Premium Stylesheet
   ============================================ */

/* ---- CSS VARIABLES ---- */
:root {
  --black:       #1C1C1C;
  --black-900:   #111111;
  --black-800:   #181818;
  --black-700:   #222222;
  --grey:        #555555;
  --grey-light:  #888888;
  --grey-border: #2a2a2a;
  --red:         #E53935;
  --red-dark:    #B71C1C;
  --red-glow:    rgba(229, 57, 53, 0.25);
  --red-glow-sm: rgba(229, 57, 53, 0.12);
  --white:       #FFFFFF;
  --off-white:   #F5F5F7;
  --gold:        #FFD700;
  --text-primary:#FFFFFF;
  --text-muted:  #999999;
  --text-dark:   #1C1C1C;
  --card-bg:     #1e1e1e;
  --card-border: rgba(255,255,255,0.06);
  --section-bg:  #161616;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-xl:   32px;
  --shadow-card: 0 8px 32px rgba(0,0,0,0.45);
  --shadow-red: 0 0 30px rgba(229,57,53,0.3);
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head:   'Montserrat', sans-serif;
  --font-body:   'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  /* Prevent horizontal scroll on mobile */
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--black-900);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  /* Prevent iOS rubber-band scroll issues */
  -webkit-overflow-scrolling: touch;
  /* Improve text rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeSpeed;
}

/* Promote images to their own compositor layer for smooth rendering */
img {
  display: block;
  max-width: 100%;
  height: auto;
  /* Prevent layout shift while images load */
  contain: layout style;
}

a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- CONTAINER ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- SECTION SPACING ---- */
.section { padding: 96px 0; }

/* ---- SECTION LABELS ---- */
.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-glow-sm);
  border: 1px solid rgba(229,57,53,0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.section-header.centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 64px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 100px;
  padding: 12px 26px;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(229,57,53,0.4);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(229,57,53,0.55);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.4s, box-shadow 0.4s, padding 0.3s;
  /* Promote to own layer — avoids repaints on scroll */
  will-change: background, box-shadow;
  transform: translateZ(0);
}

.site-header.scrolled {
  background: rgba(17,17,17,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 4px 24px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}
.logo-accent { color: var(--red); }

/* Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.2px;
}
.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}
.nav-link.active { color: var(--red); }

.header-cta { margin-left: 12px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.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); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  transition: transform 8s ease-out;
  /* Prevent mobile parallax layout shifts */
  will-change: transform;
}

.hero-img.loaded { transform: scale(1); }

.hero-video-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Mobile responsive fallback */
@media (max-width: 768px) {
  .hero-video-grid {
    display: flex;
    grid-template-columns: none;
    width: 300%;
    transform: translateX(-33.3333%);
  }
  .hero-video-item {
    width: 33.3333%;
    flex-shrink: 0;
  }
}

/* Background video dots indicator for mobile */
.hero-bg-dots {
  display: none;
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  gap: 8px;
}

.bg-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: background 0.3s, transform 0.3s;
}

.bg-dot.active {
  background: var(--red);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .hero-bg-dots {
    display: flex;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.88) 0%,
    rgba(17,17,17,0.75) 50%,
    rgba(229,57,53,0.08) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 90px;
  padding-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.3);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease both;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 7vw, 4.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s 0.15s ease both;
}

.accent-text {
  color: var(--red);
  position: relative;
}
.accent-text::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
  border-radius: 2px;
}

.hero-subtitle {
  font-family: var(--font-head);
  font-size: clamp(0.75rem, 3vw, 1.5rem);
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s 0.25s ease both;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s 0.35s ease both;
}

.highlight-item {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 18px;
  border-radius: 100px;
  letter-spacing: 0.3px;
  backdrop-filter: blur(6px);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  animation: fadeInUp 0.8s 0.45s ease both;
  width: 100%;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  position: relative;
}
.hero-scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--red);
  border-radius: 100px;
  animation: scrollDot 2s infinite;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--black-800);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 32px 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 40px;
  flex: 1;
  min-width: 140px;
}

.stat-number {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.stat-star { color: var(--gold); }

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  background: var(--black-900);
}

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

.about-image-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: bottom;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-red);
  white-space: nowrap;
}

.about-text {
  color: rgba(255,255,255,0.72);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
.about-text strong { color: var(--white); }

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.pillar:hover {
  border-color: rgba(229,57,53,0.3);
  background: rgba(30,30,30,0.9);
  transform: translateX(4px);
}

.pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pillar-icon.red {
  background: var(--red-glow-sm);
  border: 1px solid rgba(229,57,53,0.2);
}

.pillar > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pillar strong {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
}
.pillar span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  background: var(--section-bg);
  border-top: 1px solid rgba(255,255,255,0.04);
}

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

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  border-color: rgba(229,57,53,0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), 0 0 40px rgba(229,57,53,0.1);
}
.service-card:hover::before { opacity: 1; }

.service-card--featured {
  grid-column: span 2;
  background: linear-gradient(135deg, #1a2a3a 0%, var(--card-bg) 100%);
  border-color: rgba(229,57,53,0.25);
}
.service-card--featured::before { opacity: 1; }

.service-icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--red-glow-sm);
  border: 1px solid rgba(229,57,53,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: var(--red-glow);
  box-shadow: var(--shadow-red);
}

.service-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.service-tag {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-glow-sm);
  border: 1px solid rgba(229,57,53,0.2);
  padding: 4px 12px;
  border-radius: 100px;
}
.service-tag--gold {
  color: var(--gold);
  background: rgba(255,215,0,0.08);
  border-color: rgba(255,215,0,0.2);
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.product-section {
  background: var(--black-900);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.product-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.product-section-header .section-subtitle {
  max-width: 650px;
}

.product-view-all-btn {
  flex-shrink: 0;
}

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

.product-card {
  min-height: 310px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}

.product-card:hover {
  border-color: rgba(229,57,53,0.32);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), 0 0 40px rgba(229,57,53,0.1);
}

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

.product-card--featured {
  background: linear-gradient(135deg, #1a2a3a 0%, var(--card-bg) 100%);
  border-color: rgba(229,57,53,0.25);
}

.product-icon-wrap {
  width: 58px;
  height: 58px;
  background: var(--red-glow-sm);
  border: 1px solid rgba(229,57,53,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: var(--transition);
}

.product-card:hover .product-icon-wrap {
  background: var(--red-glow);
  box-shadow: var(--shadow-red);
}

.product-kicker {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.product-card h3 {
  font-family: var(--font-head);
  font-size: 1.12rem;
  line-height: 1.35;
  color: var(--white);
  margin-bottom: 12px;
}

.product-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

/* Image cards on index product section */
.product-card-img-wrap {
  width: calc(100% + 64px);
  margin: -32px -32px 24px -32px;
  aspect-ratio: 3/4;
  background: #0d0d0d;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

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

.product-view-link {
  margin-top: auto;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.72;
  display: block;
}



/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section { background: var(--black-900); }

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

.why-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--red-glow-sm) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.why-card:hover {
  border-color: rgba(229,57,53,0.3);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}
.why-card:hover::after { opacity: 1; }

.why-icon {
  font-size: 2.4rem;
  margin-bottom: 18px;
  display: block;
  filter: drop-shadow(0 0 12px rgba(229,57,53,0.3));
  transition: transform 0.3s;
}
.why-card:hover .why-icon { transform: scale(1.15); }

.why-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
  background: var(--section-bg);
  border-top: 1px solid rgba(255,255,255,0.04);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  cursor: pointer;
  background-color: var(--black-800);
}
.gallery-item--large {
  grid-column: span 2;
  grid-row: span 1;
  aspect-ratio: 16/9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.gallery-item:hover img { transform: scale(1.08); }

#gal-2 img {
  object-position: bottom;
}

@media (min-width: 481px) {
  #gal-2 {
    aspect-ratio: auto;
    height: 100%;
  }
}


.gallery-overlay {
  display: none !important;
}

.gallery-overlay span {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

/* ============================================
   PRODUCTS PAGE
   ============================================ */
.products-hero {
  min-height: calc(100svh - 72px);
  padding-top: 148px;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.92), rgba(17,17,17,0.9)),
    url("../images/Image%202/PHOTO-2026-06-03-02-30-41.jpg") center/cover;
}

.products-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 56px;
  align-items: center;
}

.products-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
}

.products-subtitle {
  max-width: 620px;
  color: rgba(255,255,255,0.74);
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

.products-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.products-preview {
  display: grid;
  gap: 16px;
}

.product-placeholder-card {
  background: rgba(30,30,30,0.84);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.product-placeholder-card:hover {
  border-color: rgba(229,57,53,0.32);
  transform: translateY(-4px);
}

.product-placeholder-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--red-glow-sm);
  border: 1px solid rgba(229,57,53,0.22);
  color: var(--red);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.product-placeholder-card h2 {
  font-family: var(--font-head);
  font-size: 1.08rem;
  color: var(--white);
  margin-bottom: 8px;
}

.product-placeholder-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-section { background: var(--black-900); }

.reviews-rating-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.stars-row { display: flex; gap: 4px; }
.reviews-rating-summary strong {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
}
.reviews-rating-summary span { color: var(--text-muted); font-size: 0.9rem; }

/* Slider */
.reviews-slider {
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
}

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

.review-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  flex: 0 0 calc(33.333% - 16px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.review-card.active-card {
  border-color: rgba(229,57,53,0.3);
  box-shadow: 0 0 30px rgba(229,57,53,0.08);
}

.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--card-border);
  padding-top: 16px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.review-author > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-author strong { font-size: 0.9rem; font-weight: 700; }
.review-author span  { font-size: 0.78rem; color: var(--text-muted); }

/* Slider Controls */
.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.review-btn {
  width: 44px;
  height: 44px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}
.review-btn:hover {
  background: var(--red);
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}

.review-dots {
  display: flex;
  gap: 8px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: var(--transition);
}
.dot.active {
  background: var(--red);
  width: 24px;
  border-radius: 100px;
  box-shadow: 0 0 8px var(--red);
}

/* ============================================
   CTA STRIP
   ============================================ */
.cta-strip {
  background: linear-gradient(135deg, #0b1829 0%, #111827 40%, #0a1520 100%);
  border-top: 1px solid rgba(229,57,53,0.15);
  border-bottom: 1px solid rgba(229,57,53,0.15);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(229,57,53,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-strip::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(229,57,53,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.cta-strip-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}
.cta-strip-text p {
  font-size: 1rem;
  color: var(--text-muted);
}

.cta-strip-btns {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  background: var(--section-bg);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-tagline {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.contact-item:hover {
  border-color: rgba(229,57,53,0.25);
  transform: translateX(4px);
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: var(--red-glow-sm);
  border: 1px solid rgba(229,57,53,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-item strong {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-item span {
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.5;
}

.contact-link {
  font-size: 1.4rem;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--red);
  transition: color 0.2s;
}
.contact-link:hover { color: var(--white); }

.contact-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.instagram-follow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(100%, 500px);
  margin-top: 28px;
  padding: 18px 36px;
  border-radius: 100px;
  background: linear-gradient(135deg, #f7c75c 0%, #e94e8f 48%, #6f28d9 100%);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.2px;
  box-shadow: 0 18px 48px rgba(233,78,143,0.22), 0 10px 30px rgba(111,40,217,0.22);
  transition: transform 0.25s, box-shadow 0.25s, filter 0.25s;
}
.instagram-follow-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.06);
  box-shadow: 0 24px 60px rgba(233,78,143,0.32), 0 14px 38px rgba(111,40,217,0.3);
}
.instagram-follow-btn svg {
  flex: 0 0 auto;
  color: #b82fbf;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,0.35));
}
.instagram-follow-btn span {
  min-width: 0;
}

/* Map */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-card);
  background: var(--card-bg);
  position: relative;
}
.map-wrap iframe {
  filter: grayscale(0.7) invert(0.85) contrast(0.9);
}

/* ============================================
   FOOTER
   ============================================ */
.ig-showcase { padding-top: 72px; }
.ig-showcase-head { text-align: center; margin-bottom: 40px; }
.ig-showcase-title { font-family: var(--font-head); font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 800; color: var(--white); margin: 12px 0 8px; }
.ig-showcase-sub { font-size: 0.95rem; color: var(--text-muted); }

.ig-phone-wrap { max-width: 420px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 20px; }

/* Phone-frame card */
.ig-app { width: 100%; background: #000; border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,0.12); box-shadow: 0 24px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.05); }

/* Nav bar */
.ig-nav { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.ig-nav-user { flex: 1; font-family: var(--font-body); font-size: 1rem; font-weight: 700; color: var(--white); letter-spacing: -0.3px; }
.ig-nav-icons { display: flex; gap: 14px; align-items: center; }

/* Profile header */
.ig-ph { display: flex; align-items: flex-start; gap: 16px; padding: 18px 16px 10px; }
.ig-pic-wrap { position: relative; flex-shrink: 0; width: 86px; height: 86px; }
.ig-ring { position: absolute; inset: -3px; border-radius: 50%; background: linear-gradient(135deg, #f9ce34, #ee2a7b 45%, #6228d7); z-index: 0; animation: igRp 3s ease-in-out infinite; }
@keyframes igRp { 0%,100%{opacity:1} 50%{opacity:.7} }
.ig-pic { position: relative; z-index: 1; width: 86px; height: 86px; border-radius: 50%; object-fit: cover; border: 3px solid #000; display: block; }
.ig-ph-meta { flex: 1; display: flex; flex-direction: column; gap: 6px; padding-top: 4px; }
.ig-ph-name { font-family: var(--font-body); font-size: 0.95rem; font-weight: 700; color: var(--white); }
.ig-ph-stats { display: flex; gap: 14px; }
.ig-ph-stat { display: flex; flex-direction: column; align-items: center; }
.ig-ph-stat strong { font-size: 0.95rem; font-weight: 700; color: var(--white); }
.ig-ph-stat span { font-size: 0.72rem; color: rgba(255,255,255,0.5); }

/* Bio */
.ig-bio2 { padding: 0 16px 12px; display: flex; flex-direction: column; gap: 2px; }
.ig-bio2-cat { font-size: 0.82rem; font-weight: 700; color: var(--white); }
.ig-bio2-line { font-size: 0.82rem; color: rgba(255,255,255,0.85); line-height: 1.55; }
.ig-mention { color: #0095f6; }
.ig-more-lnk { color: rgba(255,255,255,0.45); font-size: 0.8rem; }
.ig-bio2-loc { font-size: 0.8rem; color: #0095f6; margin-top: 3px; }

/* Followed by */
.ig-fby { display: flex; align-items: center; gap: 10px; padding: 4px 16px 12px; }
.ig-fby-avs { display: flex; flex-shrink: 0; }
.ig-fby-av { width: 22px; height: 22px; border-radius: 50%; border: 2px solid #000; font-size: 0.6rem; font-weight: 700; color: #fff; display: flex; align-items: center; justify-content: center; }
.ig-fby-text { font-size: 0.78rem; color: rgba(255,255,255,0.8); line-height: 1.4; }
.ig-fby-text strong { color: var(--white); }

/* 4 action buttons */
.ig-acts { display: flex; gap: 6px; padding: 4px 16px 14px; }
.ig-act { flex: 1; display: flex; align-items: center; justify-content: center; gap: 3px; font-family: var(--font-body); font-size: 0.82rem; font-weight: 700; border-radius: 8px; padding: 7px 4px; transition: filter .2s; text-decoration: none; cursor: pointer; }
.ig-act:hover { filter: brightness(1.2); }
.ig-act-following { background: rgba(255,255,255,0.12); color: var(--white); border: 1px solid rgba(255,255,255,0.15); }
.ig-act-msg { background: rgba(255,255,255,0.12); color: var(--white); border: 1px solid rgba(255,255,255,0.15); }
.ig-act-contact { background: rgba(255,255,255,0.12); color: var(--white); border: 1px solid rgba(255,255,255,0.15); }
.ig-act-add { flex: 0 0 38px; background: rgba(255,255,255,0.12); color: var(--white); border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; padding: 7px; }

/* Story highlights */
.ig-hls { display: flex; gap: 14px; padding: 10px 16px 16px; overflow-x: auto; scrollbar-width: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
.ig-hls::-webkit-scrollbar { display: none; }
.ig-hl2 { display: flex; flex-direction: column; align-items: center; gap: 5px; flex-shrink: 0; text-decoration: none; cursor: pointer; }
.ig-hl2 span { font-size: 0.66rem; color: rgba(255,255,255,0.75); white-space: nowrap; font-family: var(--font-body); }
.ig-hl2-ring { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg,#f9ce34,#ee2a7b 45%,#6228d7); padding: 2px; transition: transform .2s; }
.ig-hl2:hover .ig-hl2-ring { transform: scale(1.08); }
.ig-hl2-img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 2px solid #000; display: block; }

/* Tabs */
.ig-tabs2 { display: flex; border-top: 1px solid rgba(255,255,255,0.06); }
.ig-tab2 { flex: 1; display: flex; justify-content: center; padding: 12px; color: rgba(255,255,255,0.4); border-bottom: 2px solid transparent; transition: color .2s; }
.ig-tab2-on { color: var(--white); border-bottom-color: var(--white); }

/* Post grid */
.ig-grid2 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.ig-gp { aspect-ratio: 1; background-size: cover; background-position: center; background-color: #1a1a1a; transition: filter .25s; }
.ig-grid2:hover .ig-gp { filter: brightness(.82); }
.ig-grid2:hover .ig-gp:hover { filter: brightness(1.08); }

/* Big CTA below phone */
.ig-big-cta { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg,#f9ce34,#ee2a7b 40%,#6228d7); color: var(--white); font-family: var(--font-head); font-size: 0.95rem; font-weight: 800; padding: 14px 32px; border-radius: 100px; text-decoration: none; box-shadow: 0 8px 32px rgba(238,42,123,0.4); transition: transform .25s, box-shadow .25s; letter-spacing: 0.3px; }
.ig-big-cta:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 14px 48px rgba(238,42,123,0.55); }

/* Footer Instagram link */
.footer-instagram { display: inline-flex; align-items: center; gap: 8px; font-size: 0.88rem; font-family: var(--font-head); font-weight: 600; color: rgba(255,255,255,0.55); margin-top: 12px; transition: color 0.2s; }
.footer-instagram:hover { color: #ee2a7b; }

@media (max-width: 768px) {
  .ig-showcase { padding-top: 48px; }
  .ig-phone-wrap { max-width: 100%; }
  .ig-ph-stats { gap: 10px; }
}

/* ============================================
   FOOTER
   ============================================ */
.ig-profile-card {
  margin-top: 28px;
  background: #000;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.6);
  transition: box-shadow 0.3s, transform 0.3s;
}
.ig-profile-card:hover {
  box-shadow: 0 20px 64px rgba(0,0,0,0.8);
  transform: translateY(-3px);
}

/* Top bar */
.ig-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ig-topbar-label {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  flex: 1;
  letter-spacing: 0.5px;
}
.ig-open-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: #0095f6;
  transition: opacity 0.2s;
  text-decoration: none;
}
.ig-open-link:hover { opacity: 0.75; }

/* Profile header */
.ig-prof-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 16px 14px;
}

.ig-prof-pic-wrap {
  position: relative;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
}

/* Story ring gradient ring around profile pic */
.ig-story-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f9ce34, #ee2a7b 45%, #6228d7);
  z-index: 0;
  animation: igRingPulse 3s ease-in-out infinite;
}
@keyframes igRingPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.72; }
}

.ig-prof-pic {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #000;
  display: block;
}

.ig-prof-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ig-prof-username-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ig-prof-username {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.2px;
}

.ig-prof-displayname {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

.ig-prof-stats-row {
  display: flex;
  gap: 18px;
  margin-top: 8px;
}
.ig-prof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}
.ig-prof-stat strong {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}
.ig-prof-stat span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
}

/* Bio */
.ig-bio {
  padding: 0 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ig-bio-category {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}
.ig-bio-line {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.ig-bio-mention {
  color: #0095f6;
  font-weight: 500;
}
.ig-bio-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

/* Action buttons */
.ig-action-row {
  display: flex;
  gap: 8px;
  padding: 4px 16px 16px;
}
.ig-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: 8px 0;
  transition: filter 0.2s, transform 0.2s;
  text-decoration: none;
  cursor: pointer;
}
.ig-btn:hover { filter: brightness(1.15); transform: scale(1.02); }

.ig-btn-follow {
  background: #0095f6;
  color: #fff;
}
.ig-btn-message {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
}

/* Story highlights */
.ig-highlights-row {
  display: flex;
  gap: 14px;
  padding: 8px 16px 16px;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ig-highlights-row::-webkit-scrollbar { display: none; }

.ig-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  flex-shrink: 0;
}
.ig-highlight span {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  font-family: var(--font-body);
}

.ig-hl-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: transform 0.2s, border-color 0.2s;
  background: #111;
}
.ig-highlight:hover .ig-hl-circle {
  transform: scale(1.08);
  border-color: rgba(255,255,255,0.4);
}

/* Grid tabs bar */
.ig-grid-tabs {
  display: flex;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 10px 0;
  justify-content: center;
}
.ig-grid-tab {
  padding: 6px 24px;
  color: rgba(255,255,255,0.4);
  border-bottom: 2px solid transparent;
  transition: color 0.2s;
}
.ig-grid-tab--active {
  color: var(--white);
  border-bottom-color: var(--white);
}

/* Post grid */
.ig-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  text-decoration: none;
  cursor: pointer;
}

.ig-post {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
  transition: filter 0.25s;
  position: relative;
  overflow: hidden;
}
.ig-post-grid:hover .ig-post { filter: brightness(0.85); }
.ig-post-grid:hover .ig-post:hover { filter: brightness(1.08); }

.ig-post--more {
  background: #111 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.ig-post--more span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.4;
}

/* Footer Instagram link */
.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  margin-top: 12px;
  transition: color 0.2s;
}
.footer-instagram:hover { color: #ee2a7b; }

/* Responsive: compact the profile card on mobile */
@media (max-width: 768px) {
  .ig-prof-header { gap: 14px; padding: 16px 12px 10px; }
  .ig-prof-pic-wrap { width: 64px; height: 64px; }
  .ig-prof-pic { width: 64px; height: 64px; }
  .ig-bio, .ig-action-row, .ig-highlights-row { padding-left: 12px; padding-right: 12px; }
  .ig-topbar { padding: 10px 12px; }
  .ig-prof-stats-row { gap: 12px; }
}



/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--black-800);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .logo { margin-bottom: 18px; }
.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.6;
}
.footer-rating {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul,
.footer-services ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a,
.footer-services a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover,
.footer-services a:hover { color: var(--red); }

.footer-contact p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
.footer-phone {
  display: block;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-phone:hover { color: var(--white); }
.footer-hours {
  font-size: 0.82rem !important;
  color: rgba(255,255,255,0.4) !important;
}

.footer-bottom {
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-credit { color: rgba(255,255,255,0.25) !important; }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 48px;
  height: 48px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(229,57,53,0.5);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover { background: var(--red-dark); }

/* ============================================
   PERFORMANCE: Prefers-Reduced-Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-left, .reveal-right {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-badge, .hero-title, .hero-subtitle, .hero-cta-group {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-img {
    transition: none !important;
  }
  .hero-scroll-indicator span::after {
    animation: none !important;
  }
  .preloader-logo {
    animation: none !important;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollDot {
  0%   { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(16px); opacity: 0; }
}

/* ---- Scroll-reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left  { opacity: 0; transform: translateX(-36px); transition: opacity 0.7s, transform 0.7s; }
.reveal-right { opacity: 0; transform: translateX(36px);  transition: opacity 0.7s, transform 0.7s; }
.reveal-left.visible,
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 1024px) {
  .services-grid  { grid-template-columns: repeat(2,1fr); }
  .service-card--featured { grid-column: span 2; }
  .product-grid   { grid-template-columns: repeat(2,1fr); }
  .product-card--featured { grid-column: span 2; }
  .why-grid       { grid-template-columns: repeat(2,1fr); }
  .about-grid     { grid-template-columns: 1fr; gap: 48px; }
  .about-img-badge { right: 16px; bottom: -16px; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand   { grid-column: span 2; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .contact-grid   { grid-template-columns: 1fr; }
  .map-wrap       { height: 340px; }
  .gallery-grid   { grid-template-columns: repeat(2,1fr); }
  .gallery-item--large { grid-column: span 2; }
  .products-hero-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 768px) {
  .section { padding: 60px 0; }

  /* ---- Header ---- */
  /* Nav slides down from header, stays within fixed context */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0a0a0a;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 80px 0 40px;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.35s;
    pointer-events: none;
    z-index: 998;
  }
  .nav-links.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-link {
    padding: 18px 32px;
    border-radius: 0;
    font-size: 1.15rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    width: 100%;
    text-align: center;
    max-width: 320px;
  }
  .hamburger   { display: flex; z-index: 1001; position: relative; }
  .header-cta  { display: none; }

  /* Ensure header is always above nav overlay */
  .site-header { z-index: 1000; }
  .header-inner { height: 64px; }

  /* ---- Stats ---- */
  .stats-grid    { display: grid; grid-template-columns: 1fr 1fr; }
  .stat-divider  { display: none; }
  .stat-item     { padding: 18px 12px; }

  /* ---- Services ---- */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card--featured { grid-column: span 1; }
  .service-card  { padding: 28px 22px; }

  /* ---- Products ---- */
  .product-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 36px;
  }
  .product-grid { grid-template-columns: 1fr; gap: 16px; }
  .product-card,
  .product-card--featured {
    grid-column: span 1;
  }
  .product-card {
    min-height: auto;
    padding: 28px 22px;
  }

  /* ---- Why ---- */
  .why-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .why-card { padding: 24px 18px; }

  /* ---- Gallery ---- */
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-item--large { grid-column: span 2; }

  /* ---- Reviews  ---- */
  .review-card { flex: 0 0 100%; padding: 28px 22px; }
  .reviews-track { gap: 0; }

  /* ---- CTA strip ---- */
  .cta-strip { padding: 48px 0; }
  .cta-strip-btns { justify-content: center; flex-direction: column; align-items: center; gap: 12px; }
  .cta-strip-text { text-align: center; }
  .cta-strip-btns .btn { width: 100%; max-width: 280px; justify-content: center; }

  /* ---- Footer ---- */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 4px; }

  /* ---- Hero ---- */
  .hero-content  { padding-top: 80px; padding-bottom: 40px; }
  .hero-title    { letter-spacing: -0.5px; margin-bottom: 14px; }
  .hero-badge    { font-size: 0.72rem; padding: 6px 14px; margin-bottom: 18px; }
  .hero-cta-group { flex-direction: column; align-items: center; width: 100%; gap: 10px; }
  .hero-cta-group .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  .hero-cta-group .btn-lg { padding: 15px 24px; font-size: 0.95rem; }
  .hero-scroll-indicator { display: none; }

  /* ---- About ---- */
  .about-image-wrap  { order: -1; }
  .about-img-badge   { right: 12px; bottom: -14px; font-size: 0.75rem; }
  .about-grid        { gap: 36px; }
  .section-header.centered { margin-bottom: 40px; }

  /* ---- Contact ---- */
  .contact-item:hover { transform: none; }
  .map-wrap { height: 260px; }
  .instagram-follow-btn {
    width: 100%;
    padding: 16px 22px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section   { padding: 48px 0; }

  /* Hero */
  .hero-content  { padding-top: 72px; padding-bottom: 32px; }
  .hero-badge    { font-size: 0.68rem; padding: 5px 12px; margin-bottom: 14px; }
  .hero-title    { font-size: clamp(1.7rem, 8vw, 2.4rem); letter-spacing: -0.3px; margin-bottom: 12px; }
  .hero-subtitle { font-size: 0.7rem; letter-spacing: 1.5px; margin-bottom: 20px; }
  .hero-highlights { gap: 7px; margin-bottom: 24px; }
  .highlight-item  { font-size: 0.72rem; padding: 6px 12px; }

  /* Stats */
  .stat-number { font-size: 1.6rem; }
  .stat-label  { font-size: 0.72rem; }
  .stat-item   { padding: 16px 8px; }

  /* Services */
  .service-card { padding: 24px 18px; }
  .service-icon-wrap { width: 50px; height: 50px; margin-bottom: 16px; }

  /* Products */
  .product-view-all-btn { width: 100%; justify-content: center; }
  .product-card { padding: 24px 18px; }
  .product-icon-wrap { width: 50px; height: 50px; margin-bottom: 16px; }

  /* Why - stack to 1 col */
  .why-grid { grid-template-columns: 1fr; gap: 12px; }
  .why-card { padding: 22px 18px; }

  /* Gallery - 1 col */
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--large { grid-column: span 1; aspect-ratio: 16/9; }

  /* Reviews */
  .review-card { padding: 22px 18px; }
  .section-title { font-size: 1.5rem; }

  /* Footer */
  .site-footer { padding-top: 48px; }
  .footer-grid { gap: 24px; padding-bottom: 40px; }
  .instagram-follow-btn {
    align-items: center;
    padding: 15px 18px;
    font-size: 0.86rem;
    gap: 9px;
  }
  .products-hero { padding-top: 112px; }
  .products-cta-group .btn { width: 100%; justify-content: center; }
  .product-placeholder-card { padding: 22px; }
}

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background-color: var(--black-900);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
.preloader-logo {
  height: 80px;
  width: auto;
  border-radius: 8px;
  animation: pulse 1.5s infinite ease-in-out;
}
@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

/* ============================================
   PRODUCTS PAGE (prod-page-*)
   ============================================ */

/* Hero */
.prod-page-hero {
  padding: 60px 0 80px;
  background: linear-gradient(160deg, var(--black-900) 60%, rgba(229,57,53,0.05) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.prod-page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.prod-page-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.prod-page-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--white);
}

.prod-page-subtitle {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 440px;
}

.prod-page-lineup-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.06);
}

.prod-page-lineup-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
}

.prod-page-lineup-wrap:hover .prod-page-lineup-img {
  transform: scale(1.03);
}

/* Cards Section */
.prod-cards-section {
  padding: 96px 0;
  background: var(--section-bg);
}

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

/* Individual Card */
.prod-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.prod-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.prod-card:hover {
  transform: translateY(-8px);
  border-color: rgba(229,57,53,0.3);
  box-shadow: var(--shadow-card), 0 16px 48px rgba(229,57,53,0.12);
}

.prod-card:hover::before {
  opacity: 1;
}

/* Card image */
.prod-card-img-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #0d0d0d;
}

.prod-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.prod-card:hover .prod-card-img {
  transform: scale(1.05);
}

/* Card body */
.prod-card-body {
  padding: 24px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.prod-card-category {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-glow-sm);
  border: 1px solid rgba(229,57,53,0.2);
  padding: 3px 10px;
  border-radius: 100px;
  align-self: flex-start;
  margin-bottom: 4px;
}

.prod-card-name {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.prod-card-type {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.prod-card-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 1024px) {
  .prod-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-page-hero-inner { gap: 40px; }
}

@media (max-width: 768px) {
  .prod-page-hero { padding: 40px 0 60px; }
  .prod-page-hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .prod-page-lineup-wrap { order: -1; }
  .prod-page-title { font-size: clamp(2rem, 8vw, 3rem); }
  .prod-cards-section { padding: 60px 0; }
  .prod-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 480px) {
  .prod-cards-grid { grid-template-columns: 1fr; gap: 16px; }
  .prod-card-body { padding: 20px 18px 24px; }
}

/* ============================================
   GALLERY PAGE SPECIFIC STYLES
   ============================================ */
.gallery-hero-section {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(22, 22, 22, 0.9));
  padding: 120px 0 48px;
}

.gallery-main-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.gallery-main-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.75;
}

.gallery-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.filter-tab {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(30, 30, 30, 0.6);
  padding: 10px 24px;
  border-radius: 100px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}

.filter-tab:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
  transform: translateY(-2px);
}

.filter-tab.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}

.subpage-gallery-grid {
  column-count: 3;
  column-gap: 24px;
  width: 100%;
}

.subpage-gallery-grid .gallery-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 24px;
  break-inside: avoid;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: auto;
}

.subpage-gallery-grid .gallery-item:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 57, 53, 0.35);
  box-shadow: var(--shadow-card), 0 12px 36px rgba(229, 57, 53, 0.15);
}

.subpage-gallery-grid .gallery-item img,
.subpage-gallery-grid .gallery-item video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.subpage-gallery-grid .gallery-item:hover img,
.subpage-gallery-grid .gallery-item:hover video {
  transform: scale(1.04);
}

.gallery-item[data-type="video"]::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
  transition: background 0.3s;
}

.gallery-item[data-type="video"]:hover::after {
  background: rgba(0, 0, 0, 0.15);
}

/* Play Badge over Videos */
.video-play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(229, 57, 53, 0.9);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(229, 57, 53, 0.5);
  transition: transform 0.3s, background 0.3s;
  z-index: 2;
  pointer-events: none;
}

.video-play-badge svg {
  margin-left: 3px; /* visual center alignment */
}

.gallery-item:hover .video-play-badge {
  background: var(--red);
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: var(--shadow-red);
}

/* Media Queries for Gallery Subpage */
@media (max-width: 768px) {
  .gallery-hero-section {
    padding: 100px 0 36px;
  }
  .gallery-filter-tabs {
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
  }
  .filter-tab {
    padding: 8px 18px;
    font-size: 0.76rem;
  }
  .subpage-gallery-grid {
    column-count: 2 !important;
    column-gap: 10px !important;
  }
  .subpage-gallery-grid .gallery-item {
    margin-bottom: 10px;
    border-radius: var(--radius-sm);
  }
  .video-play-badge {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 480px) {
  .subpage-gallery-grid {
    column-count: 2 !important;
    column-gap: 8px !important;
  }
  .subpage-gallery-grid .gallery-item {
    margin-bottom: 8px;
    border-radius: var(--radius-sm);
  }
  .video-play-badge {
    width: 36px;
    height: 36px;
  }
  .video-play-badge svg {
    width: 16px;
    height: 16px;
  }
}
