/* ======================================
   GYMSQUAT — DESIGN SYSTEM
====================================== */
:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --grey-100: #f5f5f5;
  --grey-200: #e8e8e8;
  --grey-300: #d0d0d0;
  --grey-500: #6b7280;
  --grey-700: #444444;
  --accent: #111111;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 4px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.16);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Minimal Scrollbar ── */
html {
  scrollbar-width: none;
}

::-webkit-scrollbar {
  width: 2px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

a { text-decoration: none; color: inherit; }

/* ======================================
   BUTTONS
====================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-primary:hover {
  background: var(--grey-700);
  border-color: var(--grey-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-nav {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  padding: 10px 20px;
  font-size: 13px;
}
.btn-nav:hover {
  background: var(--grey-700);
  border-color: var(--grey-700);
}

.btn-full { width: 100%; }

.btn-xl {
  padding: 18px 40px;
  font-size: 16px;
}

/* ======================================
   NAVBAR
====================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-200);
  transition: all var(--transition);
}

.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

/* ---- Brand lockup: logo-G + YMSQUAT ---- */
.brand-lockup {
  display: flex;
  align-items: center;
  line-height: 1;
}

/* The logo PNG has ~15% white padding on all sides.
   We clip it tight so the bolt G sits flush against YMSQUAT. */
.brand-g-icon {
  /* Show only the glyph area — clip right-side white padding */
  width: 28px;
  height: 34px;
  object-fit: cover;
  object-position: 30% center;
  flex-shrink: 0;
  filter: invert(0);
  /* Pull YMSQUAT in tight — compensates for remaining right padding */
  margin-right: -6px;
}

.brand-ymsquat {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  font-style: italic;
  line-height: 1;
}

/* Footer variants — larger */
.brand-lockup--footer {
  margin-bottom: 10px;
}

.brand-g-icon--footer {
  width: 40px;
  height: 48px;
  object-fit: cover;
  object-position: 30% center;
  filter: invert(1);
  margin-right: -8px;
}

.brand-ymsquat--footer {
  font-size: 32px;
  color: var(--white);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-700);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--black);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-link:hover { color: var(--black); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--grey-200);
  padding: 16px 24px 24px;
  gap: 4px;
}

.mobile-menu.open { display: flex; }

.mobile-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid var(--grey-200);
  color: var(--black);
}

/* ======================================
   HERO
====================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 140px 24px 100px;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  animation: cinematicZoom 15s infinite alternate ease-in-out;
}

@keyframes cinematicZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(50px, 10vw, 130px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}

.hero-brand-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.hero-brand-g {
  width: 1.16em;
  height: 1.41em;
  object-fit: cover;
  object-position: 30% center;
  flex-shrink: 0;
  margin-right: -0.2em;
}

.hero-brand-ymsquat {
  font-family: var(--font-heading);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(14px, 2.5vw, 18px);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin: 0 auto 36px;
  max-width: 600px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.hero .btn-primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.hero .btn-primary:hover {
  background: transparent;
  color: var(--white);
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ======================================
   MARQUEE STRIP
====================================== */
.marquee-strip {
  background: var(--black);
  color: var(--white);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 32px;
  animation: marquee 24s linear infinite;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.marquee-track span { flex-shrink: 0; }
.marquee-track .dot { color: #666; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ======================================
   PRODUCT SECTION
====================================== */
.product-section {
  padding: 100px 0;
  background: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.product-main-img-wrap {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: var(--grey-100);
  margin-bottom: 16px;
  cursor: zoom-in;
}

.product-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-main-img-wrap:hover .product-main-img { transform: scale(1.04); }

.product-thumbs {
  display: flex;
  gap: 12px;
}

.thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition);
  flex-shrink: 0;
}

.thumb:hover, .thumb.active { border-color: var(--black); }

.product-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: 8px;
}

.product-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 42px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.product-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.stars { color: var(--black); font-size: 16px; letter-spacing: 2px; }
.review-count { font-size: 14px; color: var(--grey-500); }

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--grey-200);
}

.product-price {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 36px;
  color: var(--black);
}

.price-note {
  font-size: 13px;
  color: var(--grey-500);
}





.benefit-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.quantity-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.qty-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.qty-controls {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--grey-300);
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
}
.qty-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.qty-btn:hover {
  background: var(--grey-100);
}
.qty-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  width: 40px;
  text-align: center;
  border-left: 1px solid var(--grey-200);
  border-right: 1px solid var(--grey-200);
}

.qty-value {
  width: 48px;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  border-left: 1px solid var(--grey-200);
  border-right: 1px solid var(--grey-200);
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.product-trust {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--grey-500);
  flex-wrap: wrap;
}

/* ======================================
   HOW IT WORKS
====================================== */
.how-it-works {
  padding: 100px 0;
  background: var(--grey-100);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 16px;
  line-height: 1;
}

.section-sub {
  font-size: 17px;
  color: var(--grey-700);
  max-width: 520px;
  margin: 0 auto;
}

.steps-grid {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
}

.step-card {
  background: var(--white);
  border-radius: 8px;
  padding: 40px 32px;
  flex: 1;
  max-width: 320px;
  border: 1px solid var(--grey-200);
  transition: all var(--transition);
  cursor: default;
}

.step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: var(--black);
}

.step-number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 56px;
  color: var(--grey-300);
  line-height: 1;
  margin-bottom: 16px;
}

.step-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 15px;
  color: var(--grey-700);
  line-height: 1.7;
}

.step-arrow {
  font-size: 32px;
  color: var(--grey-300);
  flex-shrink: 0;
  font-weight: 100;
}

/* ======================================
   FEATURES GRID
====================================== */
.features-section {
  padding: 100px 0;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2px;
  background: var(--grey-200);
  border: 1px solid var(--grey-200);
  border-radius: 8px;
  overflow: hidden;
}

.feature-card {
  background: var(--white);
  padding: 44px 36px;
  transition: all var(--transition);
}

.feature-card:hover {
  background: var(--black);
  color: var(--white);
}

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition);
}

.feature-card:hover .feature-icon-wrap {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--grey-700);
  transition: color var(--transition);
}

.feature-card:hover p { color: var(--grey-300); }

/* ======================================
   GALLERY
====================================== */
.gallery-section {
  padding: 100px 0;
  background: var(--grey-100);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--grey-200);
}



.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: background var(--transition);
}

.gallery-overlay span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transition: opacity var(--transition);
  transform: translateY(8px);
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(0,0,0,0.4);
}

.gallery-item:hover .gallery-overlay span {
  opacity: 1;
  transform: translateY(0);
}

/* ======================================
   COMPARISON TABLE
====================================== */
.compare-section {
  padding: 100px 0;
  background: var(--white);
}

.compare-table-wrap {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.compare-table th {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 20px 32px;
  text-align: left;
  border-bottom: 2px solid var(--grey-200);
}

.compare-table td {
  padding: 18px 32px;
  border-bottom: 1px solid var(--grey-200);
  color: var(--grey-700);
}

.compare-table td:first-child {
  font-weight: 500;
  color: var(--black);
}

.highlight-col {
  background: var(--black) !important;
  color: var(--white) !important;
}

.compare-table tbody tr:hover td:not(.highlight-col) {
  background: var(--grey-100);
}

.check { color: #22c55e; font-size: 20px; font-weight: 700; }
.cross { color: #9ca3af; font-size: 20px; }

/* ======================================
   REVIEWS
====================================== */
.reviews-section {
  padding: 100px 0;
  background: var(--grey-100);
}


/* ======================================
   REVIEWS CAROUSEL
====================================== */
.reviews-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-slide {
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  background: var(--white);
  border-radius: 8px;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.review-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.review-slide .reviewer {
  justify-content: center;
}


.review-stars {
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--grey-700);
  margin-bottom: 24px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.reviewer-name {
  font-weight: 600;
  font-size: 14px;
}

.reviewer-tag {
  font-size: 13px;
  color: var(--grey-500);
}

/* ======================================
   BUY / CTA SECTION
====================================== */
.buy-section {
  padding: 100px 0;
  background: var(--white);
}

.buy-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--grey-200);
}

.buy-img-wrap {
  height: 520px;
  overflow: hidden;
  background: var(--grey-100);
}

.buy-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  
}

.buy-img-wrap:hover .buy-img { transform: scale(1.04); }

.buy-content {
  padding: 64px 56px;
  background: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.buy-content .product-label { color: var(--grey-500); }

.buy-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 48px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.buy-desc {
  font-size: 20px;
  color: var(--grey-300);
  line-height: 1.9;
  margin-bottom: 32px;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.buy-price-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.buy-price {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 48px;
  color: var(--white);
}

.buy-original {
  font-size: 20px;
  color: var(--grey-500);
  text-decoration: line-through;
}

.buy-badge {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 4px;
}

.buy-actions { margin-bottom: 20px; }

.buy-content .btn-primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  width: 100%;
}

.buy-content .btn-primary:hover {
  background: var(--grey-200);
  border-color: var(--grey-200);
}

.buy-shipping {
  font-size: 13px;
  color: var(--grey-500);
}

/* ======================================
   FOOTER
====================================== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}


.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  max-width: 240px;
  line-height: 1.6;
  margin-top: 6px;
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-group h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}

.footer-links-group a {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}

.footer-links-group a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer-legal a:hover { color: var(--white); }

/* ======================================
   CART TOAST
====================================== */
.cart-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--black);
  color: var(--white);
  padding: 16px 28px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  z-index: 9999;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-lg);
}

.cart-toast.show {
  transform: translateX(-50%) translateY(0);
}

.toast-icon {
  background: #22c55e;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

/* ======================================
   SCROLL ANIMATIONS
====================================== */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================================
   RESPONSIVE
====================================== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 40px 60px;
    text-align: center;
    min-height: auto;
  }

  .hero-eyebrow { justify-content: center; }
  .hero-subtitle { margin: 0 auto 40px; }
  .hero-cta-group { justify-content: center; }
  .hero-image-wrap { max-width: 480px; margin: 0 auto; }
  .hero-scroll-indicator { display: none; }

  .product-grid { grid-template-columns: 1fr; gap: 40px; }

  .steps-grid { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }

  .features-grid { grid-template-columns: repeat(2, 1fr); }

  .gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}

  

  .reviews-grid { grid-template-columns: 1fr 1fr; }

  .buy-card { grid-template-columns: 1fr; }
  .buy-img-wrap { height: 340px; }
  .buy-content { padding: 48px 40px; }

  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 90px 24px 60px; }
  .hero-title { font-size: 64px; }

  .features-grid { grid-template-columns: 1fr; }

  .gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}

  .reviews-grid { grid-template-columns: 1fr; }

  .section-title { font-size: 36px; }

  .buy-content { padding: 40px 28px; }
  .buy-title { font-size: 36px; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  .compare-table th, .compare-table td { padding: 14px 16px; }
}

/* ======================================
   REVIEWS CAROUSEL
====================================== */
.reviews-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-slide {
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  background: var(--white);
  border-radius: 8px;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.review-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.review-slide .reviewer {
  justify-content: center;
}

.review-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 768px) {
  .review-pair { grid-template-columns: 1fr; }
}

.review-card {
  background: var(--white);
  border-radius: 8px;
  padding: 36px;
  border: 1px solid var(--grey-200);
  transition: all var(--transition);
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.review-stars {
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.review-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--grey-700);
  margin-bottom: 24px;
  font-style: italic;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}
.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.reviewer-name {
  font-weight: 600;
  font-size: 14px;
}
.reviewer-tag {
  font-size: 13px;
  color: var(--grey-500);
}

.qty-controls {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--grey-300);
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
}
.qty-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.qty-btn:hover {
  background: var(--grey-100);
}
.qty-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  width: 40px;
  text-align: center;
  border-left: 1px solid var(--grey-200);
  border-right: 1px solid var(--grey-200);
}
.product-benefits {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 24px;
}
.product-benefits li {
  margin-bottom: 10px;
  color: var(--grey-700);
  line-height: 1.5;
  font-size: 15px;
}
.benefit-icon { display: none; }
