/* ===== NEXA FONT ===== */
@import url('https://fonts.cdnfonts.com/css/nexa-bold');

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

:root {
  --color-bg: #FAF7F2;
  --color-text: #1a1a1a;
  --color-accent: #F5C836;
  --color-accent-dark: #D4AB1E;
  --color-coral: #E8B714;
  --color-orange: #F0B428;
  --color-warm: #FBE89B;
  --color-surface: #F5F0E8;
  --color-muted: #8C7E6E;
  --color-dark: #1A1210;
  --color-green: #4CAF50;
  --color-teal: #2BBAB4;
  --color-lime: #A4C639;
  --color-red: #EF5350;
  --font-display: 'Nexa Bold', 'Nexa', sans-serif;
  --font-brand: 'Nexa Bold', 'Nexa', sans-serif;
  --font-body: 'Nexa Bold', 'Nexa', sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; font-size: 16px; cursor: url('./img/curseur-orange-32.png') 16 16, auto; }
*, a, button, input, textarea, select { cursor: url('./img/curseur-orange-32.png') 16 16, auto; }
a:hover, button:hover, .product-card:hover, .service-card:hover, .nav-cta:hover, .btn-primary:hover, .btn-outline:hover {
  cursor: url('./img/curseur-orange-32.png') 16 16, pointer;
}
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== PRELOADER ===== */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: #ffffff;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-video {
  max-width: 100%; max-height: 100%; object-fit: contain;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 2rem;
  transition: all 0.5s var(--ease-out-expo);
  backdrop-filter: blur(0px);
}
.nav.scrolled {
  background: rgba(26, 18, 16, 0.95);
  backdrop-filter: blur(20px);
  padding: 0.8rem 2rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.nav-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 70px; transition: height 0.4s var(--ease-out-expo); }
.nav.scrolled .nav-logo img { height: 50px; }

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, #F5A855, #E8843C, #C04E3A);
  transition: width 0.4s var(--ease-out-expo);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-links a.nav-cta {
  background: linear-gradient(135deg, #F5A855, #E8843C, #C04E3A);
  color: #fff !important;
  padding: 0.55rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
  box-sizing: border-box;
  transition: all 0.3s var(--ease-out-back);
}
.nav-cta:hover { transform: scale(1.05); background: linear-gradient(135deg, #C04E3A, #E8843C, #F5A855); color: #fff !important; }
.nav-cta::after { display: none !important; }

.nav-links a.nav-phone {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.12);
  padding: 0.55rem 1.3rem;
  border-radius: 50px;
  font-size: 0.7rem;
  color: #fff;
  white-space: nowrap;
  line-height: 1.4;
  box-sizing: border-box;
  transition: all 0.3s;
}
.nav-phone:hover { background: rgba(255,255,255,0.25); }
.nav-phone svg { width: 16px; height: 16px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s var(--ease-out-expo);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 999;
  background: rgba(26, 18, 16, 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: #fff;
  font-weight: 600;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: #E8843C; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #F5C836;
}
.hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(180,130,20,0.35) 0%, rgba(160,110,10,0.2) 60%, rgba(140,90,5,0.15) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245,200,54,0.15);
  border: 1px solid rgba(245,200,54,0.3);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--color-warm);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s var(--ease-out-expo) 0.5s forwards;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
  color: #fff;
  line-height: 0.95;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeUp 1s var(--ease-out-expo) 0.7s forwards;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #F5A855, #E8843C, #C04E3A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.92);
  max-width: 550px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(120,80,0,0.3);
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s var(--ease-out-expo) 1s forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s var(--ease-out-expo) 1.2s forwards;
}
.btn-primary {
  background: linear-gradient(135deg, #F5A855, #E8843C, #C04E3A);
  color: #fff;
  padding: 1.1rem 2.8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: none;
  transition: all 0.4s var(--ease-out-back);
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #E8843C, #F5A855);
  border-radius: 50px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out-expo);
  z-index: -1;
}
.btn-primary:hover::before { transform: scaleX(1); }
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(245,168,85,0.35); }

.btn-outline {
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 1.1rem 2.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.btn-outline:hover { border-color: #E8843C; color: #E8843C; background: transparent; }

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: heroFadeUp 0.8s var(--ease-out-expo) 1.5s forwards;
  opacity: 0;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 6rem 2rem;
  position: relative;
}
.section-inner {
  max-width: 1300px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-dark);
}
.section-title em { font-style: normal; background: linear-gradient(135deg, #F5A855, #E8843C, #C04E3A); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 700; }
.section-desc {
  max-width: 600px;
  margin: 1.2rem auto 0;
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--color-dark);
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--color-accent-dark) 0%, var(--color-accent) 50%, var(--color-orange) 100%);
  opacity: 0.08;
}
.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.stat-item {
  text-align: center;
  color: #fff;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #F5A855, #E8843C, #D4603A, #C04E3A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
}

/* ===== PRODUCTS / CATEGORIES ===== */
.products-section {
  background: var(--color-surface);
  padding: 7rem 2rem;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.product-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 1.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product-card p {
  flex: 1;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #F5A855, #E8843C, #C04E3A);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out-expo);
}
.product-card:hover::before { transform: scaleX(1); }
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.product-card-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out-back);
}
.product-card:hover .product-card-icon { transform: scale(1.1) rotate(3deg); }
.product-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--color-dark);
}
.product-card p {
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.product-card .delivery {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: var(--color-green);
  font-weight: 600;
}
.product-card .delivery svg { width: 14px; height: 14px; }
.product-card .card-arrow {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  width: 32px; height: 32px;
  background: var(--color-surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out-expo);
}
.product-card:hover .card-arrow {
  background: linear-gradient(135deg, #F5A855, #E8843C);
  transform: translateX(3px);
}
.product-card:hover .card-arrow svg { stroke: var(--color-dark); }
.card-arrow svg { width: 16px; height: 16px; stroke: var(--color-muted); }

/* All cards equal size */

/* ===== ABOUT / STORY ===== */
.about-section {
  background: var(--color-dark);
  color: #fff;
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(245,200,54,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--color-accent-dark), var(--color-accent));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-img-main img { width: 60%; filter: brightness(0) invert(1); opacity: 0.3; }
.about-floating-card {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: #fff;
  color: var(--color-dark);
  padding: 1.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.about-floating-card .big-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #F5A855, #E8843C, #C04E3A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.about-floating-card .label {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-top: 0.3rem;
}
.about-content .section-tag { color: #E8843C; }
.about-content .section-title { color: #fff; text-align: left; }
.about-content .section-title em { background: linear-gradient(135deg, #F5A855, #E8843C, #C04E3A); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.about-text {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 1.5rem;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.about-feature-icon {
  width: 36px; height: 36px;
  background: rgba(245,200,54,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-feature-icon svg { width: 18px; height: 18px; stroke: var(--color-accent); }
.about-feature span {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

/* ===== SERVICES ===== */
.services-section { padding: 7rem 2rem; }
.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  padding: 2.5rem 2rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.service-card-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(245,200,54,0.08);
  position: absolute;
  top: 1rem; right: 1.5rem;
  line-height: 1;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.service-card p {
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== GOOGLE RATING ===== */
.google-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  padding: 0.8rem 1.5rem;
  background: #fff;
  border-radius: 50px;
  display: inline-flex;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.google-icon { flex-shrink: 0; }
.google-rating-score {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-dark);
}
.google-rating-stars { display: flex; gap: 2px; }
.google-rating-stars svg { width: 18px; height: 18px; fill: #FBBC05; }
.google-rating-count {
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: linear-gradient(135deg, #FFF5E6 0%, #FFF0DB 100%);
  padding: 7rem 2rem;
  overflow: hidden;
}
.testimonials-wrapper {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s var(--ease-out-expo);
  width: max-content;
}
.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
.testimonials-nav button {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out-back);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.testimonials-nav button:hover {
  background: var(--color-accent);
  transform: scale(1.1);
}
.testimonials-nav button:hover svg { stroke: #fff; }
.testimonials-nav button svg {
  width: 20px; height: 20px;
  stroke: var(--color-accent);
  stroke-width: 2.5;
  fill: none;
}
.testimonial-card {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  min-width: 380px;
  max-width: 380px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  position: relative;
}
.testimonial-stars {
  display: flex; gap: 3px; margin-bottom: 1rem;
}
.testimonial-stars svg { width: 16px; height: 16px; fill: var(--color-accent); }
.testimonial-text {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: normal;
}
.testimonial-author {
  display: flex; align-items: center; gap: 0.8rem;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent-dark), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-role { font-size: 0.8rem; color: var(--color-muted); }

/* ===== GALLERY / RÉALISATIONS ===== */
.gallery-section { padding: 7rem 2rem; }
.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 1rem;
}
.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: linear-gradient(135deg, var(--color-accent-dark), var(--color-accent));
}
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,18,8,0.8), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay h4 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.1rem;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.gallery-item-overlay span {
  display: block;
  color: var(--color-warm);
  font-size: 0.8rem;
  margin-top: 0.3rem;
}
.gallery-hidden { display: none; }
.gallery-grid.gallery-expanded .gallery-hidden { display: block; }
.gallery-toggle-wrap {
  text-align: center;
  margin-top: 2rem;
}
.gallery-toggle {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-accent-dark);
  letter-spacing: 0.05em;
  cursor: pointer;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s;
}
.gallery-toggle::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--color-accent-dark);
  transform: scaleX(0.5);
  transition: transform 0.3s;
}
.gallery-toggle:hover { color: var(--color-accent); }
.gallery-toggle:hover::after { transform: scaleX(1); background: var(--color-accent); }

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 20000;
  background: rgba(0,0,0,0.92);
  align-items: center; justify-content: center;
  flex-direction: column;
}
.lightbox.active { display: flex; }
.lightbox-img {
  max-width: 85vw; max-height: 75vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: opacity 0.3s;
}
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  color: #fff; font-size: 2.5rem; line-height: 1;
  cursor: pointer; opacity: 0.7; transition: opacity 0.3s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); border: none; border-radius: 50%;
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.3s;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev svg, .lightbox-next svg {
  width: 24px; height: 24px; stroke: #fff;
}
.lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255,255,255,0.25);
}
.lightbox-caption {
  color: #fff; margin-top: 1.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem; opacity: 0.8;
  text-align: center;
}

/* ===== TEAM ===== */
.team-section {
  background: var(--color-surface);
  padding: 7rem 2rem;
}
.team-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.team-card {
  text-align: center;
  transition: transform 0.4s var(--ease-out-expo);
}
.team-card:hover { transform: translateY(-5px); }
.team-photo {
  width: 160px; height: 160px;
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  background: linear-gradient(135deg, var(--color-accent), var(--color-coral));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  position: relative;
}
.team-photo::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  opacity: 0.3;
}
.team-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}
.team-card .role {
  color: var(--color-coral);
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 0.3rem;
}

/* ===== FAQ ===== */
.faq-section { padding: 7rem 2rem; }
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  color: var(--color-dark);
  transition: color 0.3s;
}
.faq-question:hover { color: #E8843C; }
.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}
.faq-item.open .faq-icon { background: linear-gradient(135deg, #F5A855, #C04E3A); transform: rotate(45deg); }
.faq-icon svg { width: 14px; height: 14px; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out-expo), padding 0.5s;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding-bottom: 1.5rem;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact-section {
  background: var(--color-dark);
  color: #fff;
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,101,74,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  position: relative;
  z-index: 1;
}
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info .section-title { color: #fff; text-align: left; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(245,200,54,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; stroke: var(--color-accent); }
.contact-detail h4 {
  font-size: 0.95rem; font-weight: 600;
}
.contact-detail p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.2rem;
  line-height: 1.6;
}
.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 2.5rem;
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 0.9rem 1.2rem;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(245,200,54,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--color-dark); color: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%;
  background: linear-gradient(135deg, #F5A855, #E8843C, #C04E3A);
  color: #fff;
  padding: 1rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-out-back);
  margin-top: 0.5rem;
}
.form-submit:hover { background: linear-gradient(135deg, #C04E3A, #A8402E); color: #fff; transform: translateY(-2px); }

/* ===== TRUST BANNER ===== */
.trust-section {
  padding: 4rem 2rem;
  background: var(--color-surface);
  overflow: hidden;
}
.trust-label {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted);
  font-weight: 600;
  margin-bottom: 2rem;
}
.trust-track {
  display: flex;
  gap: 4rem;
  animation: trustScroll 25s linear infinite;
  width: max-content;
  align-items: center;
}
@keyframes trustScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trust-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-muted);
  opacity: 0.4;
  white-space: nowrap;
  transition: opacity 0.3s;
}
.trust-logo:hover { opacity: 0.8; }

/* ===== FOOTER ===== */
.footer {
  background: rgba(26, 18, 16, 0.95);
  color: rgba(255,255,255,0.6);
  padding: 4rem 2rem 2rem;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.2fr 1fr;
  gap: 2.5rem;
}
.footer-products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.5rem;
}
.footer-products-grid a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.7rem;
  transition: color 0.3s;
}
.footer-products-grid a:hover { color: #fff; }
.footer-col h4 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.footer-brand img { height: 90px; margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 300px;
}
.footer-col h5 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.7rem;
  transition: color 0.3s;
}
.footer-col a:hover { color: #E8843C; }

/* ── CATALOGUES SECTION ── */
.catalogues-section { padding: 5rem 2rem; }
.catalogues-section .section-subtitle {
  max-width: 550px;
  margin: 0.5rem auto 0;
  color: var(--color-muted);
  font-size: 1rem;
}
.catalogues-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}
.catalogue-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  text-decoration: none;
  color: var(--color-dark);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  position: relative;
  overflow: hidden;
}
.catalogue-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(135deg, #F5A855, #E8843C, #C04E3A);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.catalogue-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.catalogue-card:hover::before { opacity: 1; }
.catalogue-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(245,168,85,0.12), rgba(232,132,60,0.12));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.3rem;
  transition: background 0.35s ease;
}
.catalogue-card:hover .catalogue-icon {
  background: linear-gradient(135deg, rgba(245,168,85,0.22), rgba(232,132,60,0.22));
}
.catalogue-icon svg {
  width: 32px;
  height: 32px;
  stroke: #E8843C;
}
.catalogue-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
}
.catalogue-card p {
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.catalogue-download {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #E8843C;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  background: rgba(232,132,60,0.08);
  transition: background 0.3s ease, color 0.3s ease;
  text-decoration: none;
}
.catalogue-download svg {
  width: 16px;
  height: 16px;
  stroke: #E8843C;
}
.catalogue-card:hover .catalogue-download {
  background: linear-gradient(135deg, #F5A855, #E8843C, #C04E3A);
  color: #fff;
}
.catalogue-card:hover .catalogue-download svg { stroke: #fff; }
.catalogue-downloads-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.catalogue-download-multi {
  font-size: 0.75rem;
  padding: 0.35rem 0.8rem;
}
.catalogue-card:hover .catalogue-downloads-row .catalogue-download {
  background: linear-gradient(135deg, #F5A855, #E8843C, #C04E3A);
  color: #fff;
}
.catalogue-card:hover .catalogue-downloads-row .catalogue-download svg { stroke: #fff; }
@media (max-width: 900px) {
  .catalogues-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .catalogues-grid { grid-template-columns: 1fr; }
}

/* Homepage yellow overrides for catalogues */
.page-home .catalogues-section { background: transparent; }
.page-home .catalogue-card { background: #fff; }

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}
.footer-bottom a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-bottom a:hover {
  color: #E8843C;
}
.footer-socials {
  display: flex;
  gap: 1rem;
}
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.footer-socials a:hover { background: linear-gradient(135deg, #F5A855, #C04E3A); }
.footer-socials svg { width: 16px; height: 16px; fill: #fff; }

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s var(--ease-out-back);
  animation: whatsappPulse 3s ease-in-out infinite;
}
.whatsapp-btn:hover { transform: scale(1.1); }
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6), 0 0 0 10px rgba(37,211,102,0.1); }
}
.whatsapp-btn svg { width: 28px; height: 28px; fill: #fff; }

/* ===== SHOP / CRM BUTTON ===== */
.shop-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #F5A855, #E8843C, #C04E3A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(192,78,58,0.4);
  transition: all 0.3s var(--ease-out-back);
  animation: shopPulse 3s ease-in-out infinite;
}
.shop-btn:hover { transform: scale(1.1); }
@keyframes shopPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(192,78,58,0.4); }
  50% { box-shadow: 0 4px 30px rgba(192,78,58,0.6), 0 0 0 10px rgba(192,78,58,0.1); }
}
.shop-btn svg { width: 26px; height: 26px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }
.reveal-delay-8 { transition-delay: 0.8s; }

/* ===== FLUID BLOB ===== */
.blob-container {
  position: absolute;
  width: 500px; height: 500px;
  pointer-events: none;
  z-index: 0;
}
.blob-container svg { width: 100%; height: 100%; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 2.8rem; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 180px; }
  .gallery-item:nth-child(1) { grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .section { padding: 4rem 1.2rem; }
  .testimonial-card { min-width: 300px; max-width: 300px; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-features { grid-template-columns: 1fr; }
}

/* ===== PAGE HERO BANNER ===== */
.page-hero {
  background: var(--color-dark);
  padding: 10rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,101,74,0.15) 0%, rgba(245,200,54,0.1) 100%);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  position: relative;
  z-index: 1;
  line-height: 1.1;
}
.page-hero h1 em { font-style: normal; color: var(--color-accent); }
.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 1rem auto 0;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}
.page-hero .breadcrumb {
  position: relative;
  z-index: 1;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}
.page-hero .breadcrumb a { color: var(--color-accent); transition: color 0.3s; }
.page-hero .breadcrumb a:hover { color: var(--color-warm); }

/* ===== HOMEPAGE YELLOW BACKGROUND ===== */
.page-home { background: #F5C836; }
.page-home .stats-bar { background: transparent; }
.page-home .stats-bar::before { display: none; }
.page-home .stat-number { background: none; -webkit-background-clip: unset; -webkit-text-fill-color: #fff; color: #fff; }
.page-home .stat-label { color: rgba(255,255,255,0.7); }
.page-home .products-section { background: transparent; }
.page-home .product-card { background: #fff; border: 1px solid rgba(0,0,0,0.04); }
.page-home .product-card:hover { background: #fff; }
.page-home .section-tag { color: rgba(255,255,255,0.7); }
.page-home .section-title { color: #fff; }
.page-home .section-desc { color: rgba(255,255,255,0.75); }
.page-home .trust-section { background: transparent; }
.page-home .trust-label { color: rgba(255,255,255,0.6); }
.page-home .trust-logo { color: #1C1608; opacity: 0.6; }
.page-home .services-section { background: transparent; }
.page-home .service-card { background: #fff; border: 1px solid rgba(0,0,0,0.05); }
.page-home .service-card:hover { background: #fff; }
.page-home .about-section { background: transparent; }
.page-home .about-section::before { display: none; }
.page-home .about-img-main { background: rgba(255,255,255,0.2); }
.page-home .about-floating-card { background: #fff; color: var(--color-dark); }
.page-home .about-floating-card .big-num { background: linear-gradient(135deg, #F5A855, #E8843C, #C04E3A); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-home .about-floating-card .label { color: var(--color-muted); }
.page-home .about-text { color: rgba(255,255,255,0.75); }
.page-home .about-feature span { color: rgba(255,255,255,0.9); }
.page-home .about-feature-icon { background: rgba(255,255,255,0.2); }
.page-home .about-feature-icon svg { stroke: #fff; }
.page-home .about-content .section-tag { color: rgba(255,255,255,0.7); }
.page-home .about-content .section-title { color: #fff; }
.page-home .about-content .section-title em { background: none; -webkit-text-fill-color: #fff; font-weight: 800; }
.page-home .testimonials-section { background: transparent; }
.page-home .testimonial-card { background: #fff; border: none; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.page-home .testimonial-text { color: var(--color-text); }
.page-home .testimonial-name { color: var(--color-text); }
.page-home .testimonial-role { color: var(--color-muted); }
.page-home .testimonials-nav button { background: #fff; border: 2px solid var(--color-accent); }
.page-home .testimonials-nav button svg { stroke: var(--color-accent); }
.page-home .testimonials-nav button:hover { background: var(--color-accent); }
.page-home .testimonials-nav button:hover svg { stroke: #fff; }
.page-home .footer { background: rgba(26, 18, 16, 0.95); }

/* Page-home overrides for inner pages */
.page-home .page-hero { background: transparent; }
.page-home .page-hero::before { display: none; }
.page-home .page-hero h1 { color: #fff; }
.page-home .page-hero h1 em { background: none; -webkit-text-fill-color: #fff; color: #fff; }
.page-home .page-hero p { color: rgba(255,255,255,0.75); }
.page-home .page-hero .breadcrumb { color: rgba(255,255,255,0.5); }
.page-home .page-hero .breadcrumb a { color: #fff; }
.page-home .product-hero { background: transparent; }
.page-home .product-hero::before { display: none; }
.page-home .product-hero-text .breadcrumb a { color: #fff; }
.page-home .product-hero-text h1 em { background: none; -webkit-text-fill-color: #fff; }
.page-home .product-hero-text .product-price-info strong { color: #fff; }
.page-home .contact-section { background: transparent; }
.page-home .contact-section::before { display: none; }
.page-home .contact-info .section-title { color: #fff; }
.page-home .contact-form { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.25); }
.page-home .gallery-section { background: transparent; }
.page-home .faq-section { background: transparent; }
.page-home .team-section { background: transparent; }

/* ===== PRODUCT DETAIL PAGE ===== */
.product-hero {
  background: var(--color-dark);
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.product-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,101,74,0.12) 0%, rgba(245,200,54,0.08) 100%);
}
.product-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.product-hero-text .breadcrumb {
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}
.product-hero-text .breadcrumb a { color: var(--color-accent); transition: color 0.3s; }
.product-hero-text .breadcrumb a:hover { color: var(--color-warm); }
.product-hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.product-hero-text h1 em { font-style: normal; background: linear-gradient(135deg, #F5A855, #E8843C, #C04E3A); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.product-hero-text .product-tagline {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.product-hero-text .product-delivery-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(76,175,80,0.15);
  border: 1px solid rgba(76,175,80,0.3);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--color-green);
  font-weight: 600;
  margin-bottom: 2rem;
}
.product-hero-text .product-delivery-badge svg { width: 16px; height: 16px; }
.product-hero-text .product-price-info {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}
.product-hero-text .product-price-info strong {
  font-size: 1.8rem;
  color: var(--color-accent);
  font-family: var(--font-display);
  font-weight: 800;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #F5A855, #E8843C, #C04E3A);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: none;
  transition: all 0.4s var(--ease-out-back);
  border: none;
  cursor: pointer;
}
.btn-cta:hover {
  background: linear-gradient(135deg, #E8843C, #F5A855);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(192,78,58,0.35);
}
.btn-cta svg { width: 20px; height: 20px; }
.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
  cursor: pointer;
}
.btn-cta-secondary:hover { border-color: #E8843C; color: #E8843C; }
.product-cta-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.product-hero-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.product-hero-gallery .gallery-main {
  grid-column: span 2;
  aspect-ratio: 16/10;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-accent-dark), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-hero-gallery .gallery-thumb {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(245,200,54,0.2), rgba(232,101,74,0.2));
  border: 2px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.product-hero-gallery .gallery-thumb:hover {
  border-color: var(--color-accent);
  transform: scale(1.03);
}
.product-hero-gallery .gallery-main img,
.product-hero-gallery .gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-hero-gallery .placeholder-icon {
  font-size: 2.5rem;
  opacity: 0.5;
}
.product-hero-gallery .gallery-main .placeholder-icon { font-size: 4rem; }

/* Product detail sections */
.product-details {
  padding: 5rem 2rem;
}
.product-details-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.product-features h2,
.product-specs h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 1.5rem;
}
.product-features h2 em,
.product-specs h2 em { font-style: normal; background: linear-gradient(135deg, #F5A855, #E8843C, #C04E3A); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.6;
}
.feature-list li .check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: rgba(76,175,80,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.feature-list li .check svg { width: 14px; height: 14px; stroke: var(--color-green); }

/* Specs table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
}
.specs-table tr { border-bottom: 1px solid rgba(0,0,0,0.06); }
.specs-table td {
  padding: 1rem 0;
  font-size: 0.95rem;
}
.specs-table td:first-child {
  font-weight: 600;
  color: var(--color-dark);
  width: 45%;
}
.specs-table td:last-child { color: var(--color-muted); }

/* Use cases */
.product-usecases {
  background: transparent;
  padding: 5rem 2rem;
}
.usecases-inner {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--color-surface);
  border-radius: 24px;
  padding: 3rem;
}
.usecases-inner .section-header { margin-bottom: 3rem; }
.usecases-inner .section-title { color: var(--color-dark); }
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.usecase-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s var(--ease-out-expo);
}
.usecase-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.usecase-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: rgba(245,200,54,0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.usecase-icon svg { width: 28px; height: 28px; stroke: var(--color-accent); }
.usecase-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.usecase-card p {
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* ===== OTHER PRODUCTS CAROUSEL ===== */
.other-products-section {
  padding: 5rem 2rem;
  background: #F5C836;
}
.other-products-section .section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.other-products-section .section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.other-products-section .section-title {
  color: #fff;
}
.other-products-carousel {
  overflow: hidden;
  position: relative;
  max-width: calc(270px * 4 + 1.5rem * 3);
  margin: 0 auto;
  padding: 1rem 0;
}
.other-products-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s var(--ease-out-expo);
}
.other-product-card {
  min-width: calc(25% - 1.125rem);
  max-width: calc(25% - 1.125rem);
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 1.5rem 3.5rem;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
  cursor: pointer;
  transition: all 0.5s var(--ease-out-expo);
  flex-shrink: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.other-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.other-product-card .product-card-icon {
  width: 80px; height: 80px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-surface);
  display: flex; align-items: center; justify-content: center;
}
.other-product-card .product-card-icon img {
  width: 100%; height: 100%; object-fit: cover;
}
.other-product-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-dark);
}
.other-product-card p {
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}
.other-product-card .delivery {
  display: flex; align-items: center; justify-content: center; gap: 0.3rem;
  font-size: 0.75rem;
  color: var(--color-accent-dark);
  font-weight: 600;
}
.other-product-card .delivery svg {
  width: 14px; height: 14px;
}
.other-product-card .card-arrow {
  position: absolute; bottom: 1rem; right: 1rem;
  opacity: 0; transition: opacity 0.3s;
}
.other-product-card:hover .card-arrow { opacity: 1; }
.other-product-card .card-arrow svg {
  width: 20px; height: 20px; stroke: var(--color-accent);
}
.other-products-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.other-products-nav button {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.other-products-nav button svg {
  width: 20px; height: 20px; stroke: #fff;
}
.other-products-nav button:hover {
  background: #fff;
}
.other-products-nav button:hover svg {
  stroke: var(--color-accent);
}

/* Sticky CTA bar */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(28,18,8,0.95);
  backdrop-filter: blur(20px);
  padding: 1rem 2rem;
  z-index: 900;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out-expo);
  border-top: 1px solid rgba(245,200,54,0.2);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sticky-cta-text {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}
.sticky-cta-text span {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-weight: 700;
}

/* Product page responsive */
@media (max-width: 1024px) {
  .product-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .product-details-inner { grid-template-columns: 1fr; gap: 2rem; }
  .usecases-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .product-hero { padding: 7rem 1.5rem 3rem; }
  .product-hero-gallery { grid-template-columns: 1fr 1fr; }
  .product-cta-buttons { flex-direction: column; align-items: flex-start; }
  .btn-cta-secondary { margin-left: 0; margin-top: 0; }
  .usecases-grid { grid-template-columns: 1fr; }
  .sticky-cta-inner { flex-direction: column; gap: 0.8rem; text-align: center; }
  .other-product-card { min-width: 250px; max-width: 250px; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-canvas { display: none; }
}
