/* ============================================================
   CHEMINÉES PIC — Premium Design System
   ============================================================ */

/* — KEYFRAMES — */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

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

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.3), 0 0 60px rgba(249, 115, 22, 0.1);
  }

  50% {
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.5), 0 0 80px rgba(249, 115, 22, 0.2);
  }
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes loader-fade {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@keyframes counter-bar {
  from {
    width: 0;
  }
}

@keyframes line-expand {
  from {
    width: 0;
  }

  to {
    width: 60px;
  }
}

@keyframes typewriter {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* — RESET — */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #f5f3f0;
  background-color: #050507;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  color: inherit;
  cursor: pointer;
}

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

/* — LOADING SCREEN — */

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  background: #050507;
  animation: loader-fade 0.6s ease 2.2s forwards;
}

.loader-spinner {
  width: 48px;
  height: 48px;
  border: 2px solid rgba(249, 115, 22, 0.15);
  border-top-color: #f97316;
  border-radius: 50%;
  animation: spin-slow 0.8s linear infinite;
}

.loader-text {
  font-family: "Playfair Display", serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: rgba(245, 243, 240, 0.6);
}

/* — PARTICLE CANVAS — */

#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* — SCROLL REVEAL — */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

.stagger-4 {
  transition-delay: 0.4s;
}

/* — PAGE — */

.page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* — HERO VIDEO BACKGROUND — */

.hero-media {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-media--slideshow .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.05);
  transition: background-image 600ms ease;
}

.hero-video-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300vw;
  height: 170vh;
  min-width: 177.78vh;
  /* 16:9 */
  min-height: 56.25vw;
  /* 16:9 */
  pointer-events: none;
}

.hero-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, transparent 20%, rgba(0, 0, 0, 0.7) 70%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(5, 5, 7, 0.98) 100%);
}

/* — HEADER — */

.page-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 32px;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.page-header.scrolled {
  background: rgba(5, 5, 7, 0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(245, 243, 240, 0.06), 0 8px 32px rgba(0, 0, 0, 0.4);
  padding-top: 0;
  padding-bottom: 0;
}

.page-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
  transition: height 0.25s ease;
}

.page-header.scrolled .page-header-inner {
  height: 58px;
}

.brand-logo img {
  height: 36px;
  width: auto;
  display: block;
  transition: height 0.4s ease, filter 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.page-header.scrolled .brand-logo img {
  height: 30px;
}

.brand-logo:hover img {
  filter: drop-shadow(0 2px 12px rgba(249, 115, 22, 0.3));
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 10px;
  font-weight: 400;
  margin-left: auto;
}

.nav-link {
  position: relative;
  opacity: 0.85;
  transition: opacity 0.3s ease, color 0.3s ease;
  padding: 6px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, #f97316, #fb923c);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 1px;
}

.nav-link:hover {
  opacity: 1;
  color: #fb923c;
}

.nav-link:hover::after {
  width: 100%;
  left: 0;
}

.nav-phone {
  margin-left: 12px;
  font-size: 10px;
  white-space: nowrap;
  opacity: 0.85;
  padding: 7px 18px;
  border: 1px solid rgba(249, 115, 22, 0.4);
  border-radius: 999px;
  transition: all 0.3s ease;
  letter-spacing: 0.08em;
}

.nav-phone:hover {
  background: rgba(249, 115, 22, 0.12);
  border-color: #f97316;
  color: #fb923c;
}

/* — MOBILE MENU — */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  cursor: pointer;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #f5f3f0;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* — HERO CONTENT — */

.hero-content {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 120px;
}

.hero-inner {
  max-width: 780px;
  text-align: center;
}

.hero-content-compact {
  min-height: auto;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.36em;
  font-size: 11px;
  font-weight: 300;
  opacity: 0;
  margin-bottom: 20px;
  color: #fb923c;
  animation: fadeInDown 0.8s ease 2.4s forwards;
}

.hero-kicker::before,
.hero-kicker::after {
  content: "—";
  margin: 0 12px;
  opacity: 0.5;
}

.hero-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 2.6s forwards;
  background: linear-gradient(135deg, #f5f3f0 0%, #fb923c 50%, #f5f3f0 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 2.6s forwards,
    gradient-shift 6s ease infinite 3.6s;
}

.hero-title br {
  -webkit-text-fill-color: transparent;
}

.hero-text {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(245, 243, 240, 0.8);
  margin-bottom: 32px;
  font-weight: 300;
  opacity: 0;
  animation: fadeInUp 0.8s ease 2.9s forwards;
}

.hero-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  opacity: 0;
  animation: fadeInUp 0.8s ease 3.1s forwards;
}

/* — BUTTONS — */

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 10px;
  font-weight: 500;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.primary-button {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  border: none;
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.35), 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease;
}

.primary-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #fb923c, #f97316);
  opacity: 0;
  transition: opacity 0.2s ease;
  border-radius: inherit;
}

.primary-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 40px rgba(249, 115, 22, 0.45), 0 4px 12px rgba(0, 0, 0, 0.4);
}

.primary-button:hover::before {
  opacity: 1;
}

.primary-button span,
.primary-button {
  position: relative;
  z-index: 1;
}

.ghost-button {
  border: 1px solid rgba(245, 243, 240, 0.25);
  background: rgba(5, 5, 7, 0.4);
  color: #f5f3f0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ghost-button:hover {
  background: rgba(245, 243, 240, 0.08);
  border-color: rgba(245, 243, 240, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.ghost-button-light {
  background: transparent;
  border-color: rgba(245, 243, 240, 0.3);
}

.ghost-button-light:hover {
  border-color: #fb923c;
  color: #fb923c;
}

/* — SCROLL DOWN INDICATOR — */

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeInUp 0.6s ease 3.4s forwards, float 2.5s ease-in-out 3.4s infinite;
  cursor: pointer;
}

.scroll-indicator span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  opacity: 0.5;
  font-weight: 300;
}

.scroll-indicator-arrow {
  width: 20px;
  height: 20px;
  border-right: 1.5px solid rgba(245, 243, 240, 0.5);
  border-bottom: 1.5px solid rgba(245, 243, 240, 0.5);
  transform: rotate(45deg);
}

/* — MAIN SECTIONS — */

.main-sections {
  position: relative;
  z-index: 3;
  background: linear-gradient(to bottom,
      transparent 0%,
      rgba(5, 5, 7, 0.95) 8%,
      #050507 20%);
}

.section {
  padding: 100px 24px;
  position: relative;
}

.section-alt {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(249, 115, 22, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(249, 115, 22, 0.04) 0%, transparent 50%),
    rgba(8, 8, 12, 1);
  border-top: 1px solid rgba(249, 115, 22, 0.08);
  border-bottom: 1px solid rgba(249, 115, 22, 0.08);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 14px;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #f97316, transparent);
  margin-top: 14px;
  animation: line-expand 0.8s ease forwards;
  border-radius: 2px;
}

.section-intro {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(245, 243, 240, 0.75);
  max-width: 640px;
  font-weight: 300;
}

.section-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.6fr);
  gap: 48px;
  align-items: flex-start;
}

/* — STATS / TRUST BADGES — */

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 60px 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 28px 16px;
  border-radius: 20px;
  background: rgba(12, 12, 16, 0.6);
  border: 1px solid rgba(245, 243, 240, 0.06);
  backdrop-filter: blur(10px);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.3);
}

.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 700;
  color: #fb923c;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(245, 243, 240, 0.6);
  font-weight: 300;
}

/* — DEVIS FORMULAIRE — */

.devis-inner {
  max-width: 900px;
}

/* — Form Layout with Gallery — */

.devis-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.devis-form-wrapper {
  min-width: 0;
}

.devis-form {
  margin-top: 8px;
}

/* — Step Wizard Stepper — */

.form-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
  position: relative;
}

.form-step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  position: relative;
  cursor: pointer;
}

.form-step-dot::before {
  content: '';
  position: absolute;
  top: 16px;
  left: calc(50% + 18px);
  right: calc(-50% + 18px);
  height: 2px;
  background: rgba(245, 243, 240, 0.08);
  z-index: 0;
}

.form-step-dot:last-child::before {
  display: none;
}

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(12, 12, 16, 0.8);
  border: 2px solid rgba(245, 243, 240, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  color: rgba(245, 243, 240, 0.5);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.form-step-dot.active .step-circle {
  border-color: #f97316;
  color: #fb923c;
  background: rgba(249, 115, 22, 0.1);
  box-shadow: 0 0 16px rgba(249, 115, 22, 0.25);
}

.form-step-dot.completed .step-circle {
  border-color: #22c55e;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
}

.form-step-dot.completed::before {
  background: rgba(34, 197, 94, 0.3);
}

.step-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(245, 243, 240, 0.4);
  font-weight: 300;
  transition: color 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.form-step-dot.active .step-label {
  color: #fb923c;
}

.form-step-dot.completed .step-label {
  color: rgba(34, 197, 94, 0.7);
}

/* — Form Steps — */

.form-step {
  display: none;
  animation: fadeInUp 0.4s ease;
}

.form-step.active {
  display: block;
}

.form-step-card {
  padding: 28px 32px;
  border-radius: 20px;
  background: rgba(12, 12, 16, 0.5);
  border: 1px solid rgba(245, 243, 240, 0.06);
  backdrop-filter: blur(10px);
}

.form-step-title {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 6px;
}

.form-step-subtitle {
  font-size: 12px;
  color: rgba(245, 243, 240, 0.5);
  margin-bottom: 28px;
  font-weight: 300;
}

/* — Form Step Navigation — */

.form-step-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  gap: 14px;
}

.step-btn-prev {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(245, 243, 240, 0.12);
  background: transparent;
  color: rgba(245, 243, 240, 0.7);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.step-btn-prev:hover {
  border-color: rgba(245, 243, 240, 0.3);
  color: #f5f3f0;
}

.step-btn-next {
  padding: 10px 24px;
  border-radius: 999px;
  border: 1px solid rgba(249, 115, 22, 0.4);
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(249, 115, 22, 0.05));
  color: #fb923c;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  margin-left: auto;
}

.step-btn-next:hover {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.25), rgba(249, 115, 22, 0.1));
  border-color: #f97316;
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.15);
}

.devis-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px 24px;
  margin-bottom: 24px;
}

.devis-grid-contact {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.2fr) minmax(0, 0.9fr);
}

.devis-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}

.devis-field label {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
  opacity: 0.85;
}

.devis-field input,
.devis-field select,
.devis-field textarea {
  border-radius: 999px;
  border: 1px solid rgba(245, 243, 240, 0.12);
  background: rgba(12, 12, 16, 0.8);
  color: #f5f3f0;
  padding: 12px 18px;
  font-size: 13px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  font-family: inherit;
}

.devis-field textarea {
  border-radius: 18px;
  resize: vertical;
  min-height: 120px;
}

.devis-field input:focus,
.devis-field select:focus,
.devis-field textarea:focus {
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15), 0 0 20px rgba(249, 115, 22, 0.1);
  background: rgba(16, 16, 20, 0.95);
}

/* — Radio / Checkbox — pill style — */

.devis-radio-row,
.devis-checkbox-col {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.devis-checkbox-col {
  flex-direction: row;
}

.devis-radio-row label,
.devis-checkbox-col label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(245, 243, 240, 0.1);
  background: rgba(12, 12, 16, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.devis-radio-row label:hover,
.devis-checkbox-col label:hover {
  border-color: rgba(249, 115, 22, 0.3);
  background: rgba(249, 115, 22, 0.05);
}

.devis-radio-row input:checked+span,
.devis-checkbox-col input:checked+span {
  color: #fb923c;
}

.devis-radio-row label:has(input:checked),
.devis-checkbox-col label:has(input:checked) {
  border-color: rgba(249, 115, 22, 0.5);
  background: rgba(249, 115, 22, 0.1);
}

.devis-radio-row input,
.devis-checkbox-col input {
  accent-color: #f97316;
  width: 14px;
  height: 14px;
}

.devis-note {
  font-size: 11px;
  color: rgba(245, 243, 240, 0.5);
  margin: 6px 0 14px;
  line-height: 1.6;
}

.devis-submit {
  margin-top: 4px;
  width: 100%;
}

/* — Inspiration Gallery Sidebar — */

.devis-gallery {
  position: sticky;
  top: 90px;
}

.devis-gallery-title {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(245, 243, 240, 0.4);
  margin-bottom: 16px;
  font-weight: 300;
  text-align: center;
}

.devis-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.devis-gallery-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(245, 243, 240, 0.06);
  transition: border-color 0.3s ease, transform 0.3s ease;
  aspect-ratio: 1;
}

.devis-gallery-item:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}

.devis-gallery-item:hover {
  border-color: rgba(249, 115, 22, 0.2);
  transform: translateY(-2px);
}

.devis-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.devis-gallery-cta {
  margin-top: 20px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(12, 12, 16, 0.5);
  border: 1px solid rgba(245, 243, 240, 0.06);
  text-align: center;
}

.devis-gallery-cta p {
  font-size: 12px;
  color: rgba(245, 243, 240, 0.6);
  line-height: 1.7;
  margin-bottom: 14px;
  font-weight: 300;
}

.devis-gallery-cta a {
  font-size: 11px;
}

/* — Success State — */

.form-success {
  text-align: center;
  padding: 60px 24px;
}

.form-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.05));
  border: 2px solid rgba(34, 197, 94, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
}

.form-success h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}

.form-success p {
  font-size: 14px;
  color: rgba(245, 243, 240, 0.65);
  font-weight: 300;
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto;
}

/* — RENOVATION PAGE — */

.reno-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.reno-two-col.reverse {
  direction: rtl;
}

.reno-two-col.reverse>* {
  direction: ltr;
}

.reno-text h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 16px;
}

.reno-text p {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(245, 243, 240, 0.75);
  font-weight: 300;
  margin-bottom: 16px;
}

.reno-text .stat-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.2);
  color: #fb923c;
  font-size: 13px;
  font-weight: 500;
  margin: 4px 2px;
}

.reno-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

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

.reno-gallery-item {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(245, 243, 240, 0.06);
  cursor: pointer;
  transition: border-color 0.3s ease, transform 0.3s ease;
  aspect-ratio: 4/3;
}

.reno-gallery-item.tall {
  aspect-ratio: 3/4;
}

.reno-gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.reno-gallery-item:hover {
  border-color: rgba(249, 115, 22, 0.25);
  transform: translateY(-3px);
}

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

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

.reno-stats {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.reno-stat-card {
  flex: 1;
  min-width: 120px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(12, 12, 16, 0.5);
  border: 1px solid rgba(245, 243, 240, 0.06);
  text-align: center;
}

.reno-stat-value {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  color: #fb923c;
  margin-bottom: 4px;
}

.reno-stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(245, 243, 240, 0.5);
  font-weight: 300;
}

.reno-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 243, 240, 0.08), transparent);
  margin: 0;
  border: none;
}

/* — CARDS / GRIDS — */

.cards-grid {
  display: grid;
  gap: 28px;
  margin-top: 40px;
}

.cards-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.image-card {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(12, 12, 16, 0.8);
  border: 1px solid rgba(245, 243, 240, 0.06);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  position: relative;
}

.image-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0), rgba(249, 115, 22, 0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: background 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.image-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(249, 115, 22, 0.08);
  border-color: rgba(249, 115, 22, 0.2);
}

.image-card:hover::before {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.4), rgba(249, 115, 22, 0.1));
}

.image-card-wide {
  margin-bottom: 28px;
}

.image-card-media {
  position: relative;
  padding-bottom: 70%;
  background-image: var(--image-url);
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.image-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 12, 16, 0.4) 0%, transparent 50%);
  pointer-events: none;
}

.image-card-body {
  padding: 22px 22px 26px;
  position: relative;
}

.image-card-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 10px;
  font-weight: 500;
}

.image-card p {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(245, 243, 240, 0.7);
  font-weight: 300;
}

.image-card:hover .image-card-media {
  transform: scale(1.06);
}

.image-card:hover .image-card-title {
  color: #fb923c;
}

/* — CTA SECTION — */

.section-cta {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(249, 115, 22, 0.12) 0%, transparent 60%),
    linear-gradient(135deg, rgba(12, 12, 16, 1) 0%, rgba(20, 15, 10, 1) 100%);
  border-top: 1px solid rgba(249, 115, 22, 0.2);
  border-bottom: 1px solid rgba(249, 115, 22, 0.1);
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}

.section-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.section-cta-text {
  max-width: 600px;
}

.section-cta-text p {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(245, 243, 240, 0.8);
  font-weight: 300;
}

.section-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}

.section-contact-coords {
  font-size: 13px;
  margin-top: 20px;
  color: rgba(245, 243, 240, 0.75);
  line-height: 1.8;
}

/* — MAP SECTION — */

.section-map {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.5fr);
  gap: 48px;
  align-items: start;
}

.section-map-embed iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 20px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.6);
  transition: box-shadow 0.4s ease;
}

.section-map-embed iframe:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(249, 115, 22, 0.08);
}

/* — SOCIALS — */

.socials-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.socials-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(245, 243, 240, 0.4);
  font-weight: 300;
}

.socials-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.social-pill {
  padding: 11px 24px;
  border-radius: 999px;
  border: 1px solid rgba(245, 243, 240, 0.2);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  background: rgba(12, 12, 16, 0.4);
}

.social-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-pill:hover {
  border-color: rgba(249, 115, 22, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(249, 115, 22, 0.1);
  color: #fb923c;
}

.social-pill:hover::before {
  opacity: 1;
}

/* — FLOATING WHATSAPP — */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0, 0, 0, 0.4);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* — FOOTER — */

.page-footer {
  padding: 40px 24px 32px;
  border-top: 1px solid rgba(245, 243, 240, 0.08);
  background: linear-gradient(to bottom, #050507, #030305);
  position: relative;
}

.page-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.4), transparent);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-copy {
  font-size: 12px;
  color: rgba(245, 243, 240, 0.6);
  font-weight: 300;
}

.footer-copy-small {
  margin-top: 6px;
  color: rgba(245, 243, 240, 0.35);
  font-size: 10px;
}

/* — BACK TO TOP — */

.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(12, 12, 16, 0.8);
  border: 1px solid rgba(245, 243, 240, 0.12);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s ease;
  pointer-events: none;
  cursor: pointer;
}

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

.back-to-top:hover {
  background: rgba(249, 115, 22, 0.2);
  border-color: rgba(249, 115, 22, 0.4);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #f5f3f0;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* — CUSTOM CURSOR GLOW (large screens only) — */

.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
  opacity: 0;
}

.cursor-glow.active {
  opacity: 1;
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */

/* — Breadcrumb — */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(245, 243, 240, 0.5);
  padding: 16px 0 0;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(245, 243, 240, 0.6);
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #fb923c;
}

.breadcrumb .breadcrumb-sep {
  color: rgba(245, 243, 240, 0.25);
  font-size: 10px;
}

.breadcrumb .breadcrumb-current {
  color: #fb923c;
  font-weight: 500;
}

/* — Product Layout — */

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* — Product Gallery — */

.product-gallery {
  position: sticky;
  top: 90px;
}

.product-gallery-main {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(12, 12, 16, 0.6);
  border: 1px solid rgba(245, 243, 240, 0.06);
  cursor: zoom-in;
  position: relative;
  margin-bottom: 16px;
}

.product-gallery-main img {
  width: 100%;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-gallery-main:hover img {
  transform: scale(1.04);
}

.product-gallery-main .gallery-zoom-hint {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(5, 5, 7, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 243, 240, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.product-gallery-main:hover .gallery-zoom-hint {
  opacity: 1;
}

.gallery-zoom-hint svg {
  width: 16px;
  height: 16px;
  stroke: #f5f3f0;
  stroke-width: 2;
  fill: none;
}

.product-gallery-thumbs {
  display: flex;
  gap: 12px;
}

.product-gallery-thumb {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(245, 243, 240, 0.08);
  cursor: pointer;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.product-gallery-thumb.active {
  border-color: #f97316;
  box-shadow: 0 0 16px rgba(249, 115, 22, 0.25);
}

.product-gallery-thumb:hover {
  border-color: rgba(249, 115, 22, 0.5);
  transform: translateY(-2px);
}

.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* — Product Info — */

.product-info {
  padding-top: 8px;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(249, 115, 22, 0.05));
  border: 1px solid rgba(249, 115, 22, 0.25);
  color: #fb923c;
}

.product-badge-icon {
  width: 14px;
  height: 14px;
}

.product-name {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
  margin-bottom: 8px;
}

.product-brand {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(245, 243, 240, 0.45);
  margin-bottom: 24px;
}

.product-description {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(245, 243, 240, 0.75);
  font-weight: 300;
  margin-bottom: 32px;
  border-left: 2px solid rgba(249, 115, 22, 0.3);
  padding-left: 20px;
}

/* — Key Features (Highlights) — */

.product-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin-bottom: 36px;
}

.highlight-card {
  padding: 20px 16px;
  border-radius: 16px;
  background: rgba(12, 12, 16, 0.6);
  border: 1px solid rgba(245, 243, 240, 0.06);
  text-align: center;
  transition: border-color 0.4s ease, transform 0.4s ease;
}

.highlight-card:hover {
  border-color: rgba(249, 115, 22, 0.25);
  transform: translateY(-3px);
}

.highlight-value {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: #fb923c;
  margin-bottom: 4px;
}

.highlight-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(245, 243, 240, 0.5);
  font-weight: 300;
}

/* — Product CTA — */

.product-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* — Color Variants — */

.product-colors {
  margin-bottom: 36px;
}

.product-colors-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(245, 243, 240, 0.5);
  margin-bottom: 14px;
  font-weight: 300;
}

.product-colors-row {
  display: flex;
  gap: 14px;
}

.product-color-swatch {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(245, 243, 240, 0.08);
  cursor: pointer;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.product-color-swatch:hover,
.product-color-swatch.active {
  border-color: #f97316;
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.2);
}

.product-color-swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* — Spec Sections (Tabs-like) — */

.product-specs-section {
  margin-top: 20px;
}

.specs-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(245, 243, 240, 0.08);
  padding-bottom: 0;
}

.specs-tab {
  padding: 12px 20px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(245, 243, 240, 0.5);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
  font-weight: 400;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  white-space: nowrap;
}

.specs-tab.active,
.specs-tab:hover {
  color: #fb923c;
  border-bottom-color: #f97316;
}

.specs-panel {
  display: none;
}

.specs-panel.active {
  display: block;
  animation: fadeInUp 0.4s ease;
}

/* — Spec Table — */

.spec-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.spec-table tr {
  transition: background 0.2s ease;
}

.spec-table tr:hover {
  background: rgba(249, 115, 22, 0.04);
}

.spec-table td {
  padding: 12px 16px;
  font-size: 13px;
  border-bottom: 1px solid rgba(245, 243, 240, 0.05);
  vertical-align: middle;
}

.spec-table td:first-child {
  color: rgba(245, 243, 240, 0.65);
  font-weight: 300;
  width: 55%;
}

.spec-table td:last-child {
  color: #f5f3f0;
  font-weight: 500;
  text-align: right;
}

.spec-table .spec-highlight td:last-child {
  color: #fb923c;
}

/* — Points forts list — */

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(245, 243, 240, 0.05);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(249, 115, 22, 0.05));
  border: 1px solid rgba(249, 115, 22, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fb923c;
  font-size: 14px;
}

.feature-text strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 3px;
}

.feature-text span {
  font-size: 12px;
  color: rgba(245, 243, 240, 0.6);
  font-weight: 300;
  line-height: 1.6;
}

/* — Dimensions Image — */

.dimensions-image {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(12, 12, 16, 0.5);
  border: 1px solid rgba(245, 243, 240, 0.06);
  margin-top: 24px;
}

.dimensions-image img {
  width: 100%;
  display: block;
}

/* — Download Card — */

.download-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border-radius: 16px;
  background: rgba(12, 12, 16, 0.6);
  border: 1px solid rgba(245, 243, 240, 0.08);
  transition: border-color 0.3s ease, transform 0.3s ease;
  margin-top: 28px;
}

.download-card:hover {
  border-color: rgba(249, 115, 22, 0.3);
  transform: translateY(-2px);
}

.download-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(234, 68, 53, 0.2), rgba(234, 68, 53, 0.05));
  border: 1px solid rgba(234, 68, 53, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ea4335;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.download-info {
  flex: 1;
}

.download-title {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 3px;
}

.download-meta {
  font-size: 11px;
  color: rgba(245, 243, 240, 0.45);
  font-weight: 300;
}

.download-btn {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #fb923c;
  padding: 8px 16px;
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 999px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.download-btn:hover {
  background: rgba(249, 115, 22, 0.12);
  border-color: #f97316;
}

/* — Lightbox — */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  cursor: zoom-out;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.92);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.open img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(245, 243, 240, 0.1);
  border: 1px solid rgba(245, 243, 240, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
  color: #f5f3f0;
  font-size: 20px;
}

.lightbox-close:hover {
  background: rgba(245, 243, 240, 0.2);
}

/* — Share Row — */

.product-share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 243, 240, 0.06);
}

.product-share-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(245, 243, 240, 0.4);
  font-weight: 300;
}

.product-share-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(12, 12, 16, 0.6);
  border: 1px solid rgba(245, 243, 240, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all 0.3s ease;
  color: rgba(245, 243, 240, 0.6);
}

.product-share-btn:hover {
  border-color: rgba(249, 115, 22, 0.3);
  color: #fb923c;
  transform: translateY(-2px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 960px) {
  .nav {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 7, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    font-size: 13px;
    letter-spacing: 0.25em;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
    margin-left: 0;
    z-index: 150;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }

  .nav-phone {
    margin-left: 0;
    margin-top: 12px;
  }

  .hamburger {
    display: flex;
  }

  .section-map {
    grid-template-columns: 1fr;
  }

  .section-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-two-col {
    grid-template-columns: 1fr;
  }

  .reno-two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .reno-two-col.reverse {
    direction: ltr;
  }

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

  .devis-layout {
    grid-template-columns: 1fr;
  }

  .devis-gallery {
    position: static;
    max-width: 600px;
    margin: 0 auto;
  }

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

  .devis-grid-contact {
    grid-template-columns: 1fr;
  }

  .form-step-card {
    padding: 24px 20px;
  }

  .step-label {
    font-size: 8px;
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

  .product-gallery {
    position: static;
  }

  .product-highlights {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .cursor-glow {
    display: none;
  }
}

@media (max-width: 768px) {
  .cards-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-content {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section {
    padding: 70px 20px;
  }

  .hero-title {
    font-size: clamp(22px, 6vw, 32px);
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }

  .back-to-top {
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
  }

  .product-highlights {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .specs-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .product-gallery-thumb {
    width: 64px;
    height: 64px;
  }
}

@media (max-width: 540px) {
  .cards-grid-3 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 16px;
  }

  .section-title {
    letter-spacing: 0.2em;
    font-size: 12px;
  }

  .stats-strip {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 40px 16px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 9px;
  }

  .hero-kicker {
    font-size: 9px;
  }

  .hero-kicker::before,
  .hero-kicker::after {
    display: none;
  }

  .product-highlights {
    grid-template-columns: 1fr;
  }

  .product-cta {
    flex-direction: column;
  }

  .product-cta .primary-button,
  .product-cta .ghost-button {
    width: 100%;
    text-align: center;
  }

  .download-card {
    flex-direction: column;
    text-align: center;
  }

  .product-share {
    flex-wrap: wrap;
  }

  .product-color-swatch {
    width: 52px;
    height: 52px;
  }
}