@charset "UTF-8";
/* _fonts.scss */
@font-face {
  font-family: "SourceCodePro";
  src: url("../assets/fonts/Gotham-Medium.otf") format("opentype");
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "InterTight";
  src: url("../assets/fonts/InterTight-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Alpino";
  src: url("../assets/fonts/Alpino-Variable.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AlpinoRegular";
  src: url("../assets/fonts/Alpino-Regular.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  color: #38404b;
  background: #f9f9f9;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

body {
  font-family: "SourceCodePro", sans-serif;
}

h1 {
  font-size: 2.6rem;
  line-height: 1.2;
}

p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #38404b;
}

h1 {
  font-family: "InterTight", sans-serif;
}

h2,
h3,
h4,
p,
a,
ul,
nav {
  font-family: "SourceCodePro", sans-serif;
  font-weight: 200;
}

a {
  color: #38404b;
}

.header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
}

.nav {
  max-width: 2200px;
  margin: 0 auto;
  padding: 0.4rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem; /* 👈 Espace entre logo, liens et recherche */
}

.arrow-down {
  font-size: 0.5rem;
  margin-left: 0rem;
  transition: transform 0.3s ease;
}

.nav_item_with_mega:hover .arrow-down {
  transform: rotate(180deg);
}

.nav_logo img {
  height: 80px;
}

.nav_links {
  display: flex;
  list-style: none;
  gap: 1.4rem;
  align-items: center;
  color: #333;
  transition: color 0.3s ease;
  flex: 1; /* 👈 Permet aux liens de prendre l'espace disponible */
  justify-content: right; /* 👈 Met les liens à droite */
}

.nav_links a {
  color: #333; /* Couleur par défaut */
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
  text-decoration: none;
  font-weight: 100;
  font-size: 0.87rem;
  font-weight: 500;
}

.nav_links a:hover {
  color: #c59d5f; /* Changez cette couleur selon vos besoins */
}

.nav_icon {
  width: 20px;
  height: 20px;
}

/* Icône de recherche dans le header */
.search-icon {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: color 0.3s;
  flex-shrink: 0;
}
.search-icon:hover {
  color: #bf8821;
}
.search-icon svg {
  width: 24px;
  height: 24px;
}

/* Overlay de recherche */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-overlay-content {
  position: relative;
  width: 90%;
  max-width: 700px;
  padding: 40px;
}

/* Bouton fermer */
.search-close {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
  color: #dfaf4f;
  cursor: pointer;
  padding: 10px;
  transition: transform 0.3s;
}
.search-close:hover {
  transform: rotate(90deg);
}
.search-close svg {
  width: 32px;
  height: 32px;
}

/* Champ de recherche */
.search-box {
  position: relative;
}

.search-input {
  width: 100%;
  padding: 20px 30px;
  font-size: 1.5rem;
  border: none;
  border-radius: 12px;
  background: white;
  color: #bf8821;
  outline: none;
}
.search-input::placeholder {
  color: #999;
}
.search-input:focus {
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.3);
}

/* Résultats de recherche */
.search-results {
  margin-top: 20px;
  background: white;
  border-radius: 12px;
  max-height: 400px;
  overflow-y: auto;
  display: none;
}
.search-results.active {
  display: block;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #eee;
  transition: background-color 0.2s;
}

.search-result-item:hover {
  background-color: #f5f5f5;
}

.search-result-thumbnail {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.search-result-content {
  flex: 1;
  min-width: 0;
}

.search-result-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
  color: #333;
}

.search-result-collection {
  font-size: 14px;
  color: #666;
}

.no-results {
  padding: 20px;
  text-align: center;
  color: #999;
}

/* Mobile */
@media (max-width: 768px) {
  .search-overlay-content {
    padding: 20px;
  }
  .search-input {
    font-size: 1.2rem;
    padding: 15px 20px;
  }
  .nav_logo img {
    height: 30px;
  }
}
@media (max-width: 1024px) {
  .nav_links {
    display: none;
  }
  .nav_burger {
    display: flex;
  }
  .search-close {
    display: none;
  }
  .nav_logo img {
    height: 34px;
  }
}
@media (min-width: 1025px) {
  .nav_links {
    display: flex;
  }
  .nav_burger {
    display: none;
  }
}
.footer {
  background: #f9f9f9;
  color: #e4e4e4;
  margin-top: 100px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px 20px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #38404b;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand img {
  width: 150px;
}

.footer-brand p {
  color: #38404b;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 300px;
}

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

.footer-column h3 {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  color: #38404b;
}

.footer-column ul {
  color: #38404b;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column a,
.footer-contact span {
  color: #38404b;
  text-decoration: none;
  font-size: 0.75rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-column a:hover {
  color: #dfaf4f;
  transform: translateX(5px);
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact svg {
  flex-shrink: 0;
  opacity: 0.6;
}

.footer-contact a:hover {
  color: #dfaf4f;
  transform: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  font-size: 0.875rem;
  color: #38404b;
}

.footer-bottom p {
  font-size: 0.9rem;
}

.footer-bottom .footer-legal {
  display: flex;
  gap: 25px;
}

.footer-legal a {
  color: #888;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #dfaf4f;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-brand img {
    width: 200px;
  }
}
@media (max-width: 640px) {
  .footer-content {
    padding: 40px 20px 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .footer-brand img {
    width: 140px;
    margin-bottom: 10px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer-brand h2 {
    font-size: 1.5rem;
  }
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

.footer-social {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-social .footer-social-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 12px;
  opacity: 0.7;
  font-weight: 500;
}
.footer-social .footer-social-links {
  display: flex;
  gap: 20px;
  margin-top: 5px;
}
.footer-social .footer-social-links a {
  color: #38404b;
  transition: all 0.3s ease;
  opacity: 0.8;
}
.footer-social .footer-social-links a:hover {
  color: #dfaf4f;
  opacity: 1;
  transform: translateY(-2px);
}
.footer-social .footer-social-links a svg {
  display: block;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .footer-social {
    margin-top: 20px;
    padding-top: 20px;
  }
  .footer-social .footer-social-links {
    justify-content: flex-start;
  }
}
main {
  padding: 0.4rem 0rem;
}

.container {
  width: 100%;
  max-width: clamp(1200px, 85vw, 1600px);
  margin: 0 auto;
  box-sizing: border-box;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.path-product {
  margin-top: 1rem;
  margin-left: 1rem;
  font-size: 1.2rem;
}
.path-product a {
  text-decoration: underline;
}

.path-product:hover a {
  color: #dfaf4f;
}

.collection-dropdown {
  position: relative;
  display: inline-block;
}

.collection-btn {
  background: none;
  border: none;
  font-size: 15px;
  cursor: pointer;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 4px;
  transition: background 0.2s;
  font-size: 1.1rem;
}

.collection-btn:hover {
  background: #f0f0f0;
}

.arrow {
  font-size: 12px;
  transition: transform 0.2s;
}

.collection-dropdown.active .arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  z-index: 1000;
  margin-top: 5px;
}

.collection-dropdown.active .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
  transition: background 0.2s;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
}

.dropdown-menu img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: clamp(650px, 70vh, 750px);
  padding: clamp(1.4rem, 1vw, 2rem);
  margin-top: 1rem;
}
@media (max-width: 1024px) {
  .hero {
    height: 60vh;
    padding: clamp(0.5rem, 2vw, 1rem);
  }
}
@media (max-width: 768px) {
  .hero {
    height: 55vh;
    padding: 1rem 0.5rem;
  }
}
@media (max-width: 480px) {
  .hero {
    margin-top: 2rem;
  }
}
@media (min-width: 1920px) {
  .hero {
    margin: 3rem 0;
  }
}
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 1200px;
  width: 100%;
}
@media (max-width: 768px) {
  .hero__content {
    gap: clamp(0.8rem, 1.5vw, 1rem);
  }
}
.hero__image-wrapper {
  width: clamp(500px, 60vw, 1000px);
  height: clamp(350px, 40vh, 600px);
  border-radius: clamp(20px, 3vw, 40px);
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: scale(0.8);
  animation: imageZoomIn 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.3s;
}
@media (max-width: 1024px) {
  .hero__image-wrapper {
    width: clamp(500px, 80vw, 900px);
    height: clamp(400px, 45vh, 600px);
  }
}
@media (max-width: 768px) {
  .hero__image-wrapper {
    width: clamp(320px, 90vw, 600px);
    height: clamp(250px, 30vh, 350px);
  }
}
.hero__image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
  z-index: 3;
}
.hero__image-wrapper:hover::before {
  left: 100%;
}
.hero__image-wrapper:hover .hero__image {
  transform: scale(1.05);
}
.hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 90%;
  transition: transform 0.6s ease, opacity 1s ease;
}
.hero__image--current {
  z-index: 2;
  opacity: 1;
}
.hero__image--next {
  z-index: 1;
  opacity: 0;
}
.hero .hero-image-leluc {
  object-position: center 60%;
}
.hero__text {
  font-family: "InterTight", sans-serif;
  font-size: clamp(4rem, 6vw, 5.4rem);
  font-weight: 400;
  line-height: 0.8;
  margin: 0;
  letter-spacing: 0.05em;
  color: #38404b;
  position: relative;
  opacity: 0;
}
@media (max-width: 1024px) {
  .hero__text {
    font-size: clamp(3.5rem, 7vw, 7rem);
  }
}
@media (max-width: 768px) {
  .hero__text {
    font-size: clamp(3rem, 8vw, 4rem);
  }
}
@media (min-width: 1920px) {
  .hero__text {
    font-size: clamp(5rem, 7vw, 7rem);
  }
}
.hero__text--top {
  align-self: flex-start;
  transform: translateX(-100px);
  animation: slideInLeft 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.1s;
}
@media (max-width: 768px) {
  .hero__text--top {
    align-self: flex-end;
    margin-right: 1.5rem;
  }
}
.hero__text--bottom {
  align-self: flex-end;
  transform: translateX(100px);
  animation: slideInRight 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.5s;
}
@media (max-width: 768px) {
  .hero__text--bottom {
    align-self: flex-start;
    margin-left: 1.5rem;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes imageZoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.separator {
  width: clamp(200px, 40vw, 800px);
  height: 2px;
  background: #dfaf4f;
  margin: clamp(4rem, 4vh, 5rem) auto;
  opacity: 0.4;
}
@media (max-width: 768px) {
  .separator {
    width: clamp(80px, 40vw, 200px);
    margin: clamp(2rem, 5vh, 4rem) auto;
  }
}

.choice-section {
  padding: 0;
  margin-top: 8rem;
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .choice-section {
    padding: 2rem 0;
    margin-top: 2rem;
    margin-bottom: 2rem;
    background: #f5f5f5;
  }
}

.choice-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 50vh;
  min-height: 300px;
}
@media (max-width: 768px) {
  .choice-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    height: 50vh;
    gap: 0;
    padding: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .choice-container::-webkit-scrollbar {
    display: none;
  }
}

.choice-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.5s ease;
  text-decoration: none;
}
@media (max-width: 768px) {
  .choice-card {
    flex: 0 0 95%;
    scroll-snap-align: start;
    min-height: 40vh;
  }
}
@media (max-width: 480px) {
  .choice-card {
    min-height: 65vh;
  }
}
.choice-card .choice-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
}
.choice-card .choice-overlay .choice__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(3px) brightness(0.5);
  transition: all 0.5s ease;
}
@media (max-width: 768px) {
  .choice-card .choice-overlay .choice__image {
    filter: blur(2px) brightness(0.5);
  }
}
@media (min-width: 769px) {
  .choice-card:hover .choice-overlay .choice__image {
    filter: blur(2px) brightness(0.8);
    transform: scale(1.05);
  }
  .choice-card:hover {
    z-index: 2;
  }
  .choice-card:hover .choice-content {
    transform: translateY(-10px);
  }
  .choice-card:hover .choice-icon svg {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 6px 12px rgba(255, 255, 255, 0.3));
  }
  .choice-card:hover .choice-cta {
    background: #dfaf4f;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }
}
.choice-card .choice-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 2rem;
  transform: translateY(0);
  transition: transform 0.5s ease;
}
@media (max-width: 768px) {
  .choice-card .choice-content {
    padding: 3rem 2rem;
  }
}
@media (max-width: 480px) {
  .choice-card .choice-content {
    padding: 2.5rem 1.5rem;
  }
}
.choice-card .choice-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
}
@media (max-width: 768px) {
  .choice-card .choice-icon {
    width: 75px;
    height: 75px;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 480px) {
  .choice-card .choice-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 1.2rem;
  }
}
.choice-card .choice-icon svg {
  display: block;
  stroke: white;
  transition: all 0.3s ease;
}
.choice-card .choice-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  color: white;
}
@media (max-width: 768px) {
  .choice-card .choice-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 480px) {
  .choice-card .choice-title {
    font-size: 1.9rem;
  }
}
.choice-card .choice-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
  color: white;
}
@media (max-width: 768px) {
  .choice-card .choice-description {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 480px) {
  .choice-card .choice-description {
    font-size: 1.05rem;
    margin-bottom: 1.8rem;
  }
}
.choice-card .choice-cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: white;
  color: #333;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .choice-card .choice-cta {
    padding: 1.3rem 3.5rem;
    font-size: 1.05rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  }
}
@media (max-width: 480px) {
  .choice-card .choice-cta {
    padding: 1.1rem 3rem;
    font-size: 1rem;
  }
}
@media (max-width: 1024px) {
  .choice-card {
    min-height: 55vh;
  }
}
@media (min-width: 1920px) {
  .choice-card .choice-title {
    font-size: 3rem;
  }
  .choice-card .choice-description {
    font-size: 1.4rem;
  }
  .choice-card .choice-icon {
    width: 100px;
    height: 100px;
  }
}

.choice-scroll-indicator {
  display: none;
}
@media (max-width: 768px) {
  .choice-scroll-indicator {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.5rem 0;
  }
}
.choice-scroll-indicator .scroll-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  transition: all 0.3s ease;
}
.choice-scroll-indicator .scroll-dot.active {
  background: var(--primary, #2c5f2d);
  width: 12px;
  height: 12px;
}

.sketch-main-container {
  position: relative;
  max-width: clamp(1000px, 90vw, 1800px);
  margin: 0 auto;
  padding: clamp(2rem, 4vh, 4rem) clamp(1rem, 3vw, 2rem);
}

.bg-decoration {
  position: absolute;
  top: 40px;
  width: clamp(140px, 140px + 0vw, 140px);
  height: auto;
  opacity: 0.7;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .bg-decoration {
    width: clamp(50px, 10vw, 80px);
  }
}
@media (max-width: 768px) {
  .bg-decoration {
    width: clamp(200px, 200px + 0vw, 200);
    opacity: 0.2;
  }
}

.bg-left {
  left: clamp(1rem, 5vw, 3rem);
}

.bg-right {
  right: clamp(1rem, 5vw, 3rem);
}

.sketch-section {
  position: relative;
  min-height: auto;
  overflow: hidden;
  margin-top: clamp(2rem, 4vh, 4rem);
  padding: clamp(2rem, 4vh, 3rem) clamp(1rem, 3vw, 2rem);
}
@media (max-width: 768px) {
  .sketch-section {
    padding: clamp(1.5rem, 3vh, 2rem) clamp(1rem, 3vw, 2rem);
  }
}

.sketch-bg {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(5rem, 10vw, 10rem);
  margin-top: clamp(0.5rem, 1vh, 1rem);
  z-index: 0;
}
@media (max-width: 768px) {
  .sketch-bg {
    gap: clamp(1rem, 4vw, 4rem);
    margin-top: 0.5rem;
  }
}

.sketch {
  opacity: 0;
  transition: all 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  filter: drop-shadow(0 8px 12px rgba(167, 167, 167, 0.1));
  height: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .sketch {
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  }
}

.sketch-left {
  width: clamp(150px, 25vw, 400px);
  transform: translateX(-400px);
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .sketch-left {
    width: clamp(140px, 28vw, 350px);
  }
}
@media (max-width: 1024px) {
  .sketch-left {
    width: clamp(120px, 32vw, 300px);
  }
}
@media (max-width: 768px) {
  .sketch-left {
    width: clamp(100px, 30vw, 220px);
  }
}

.sketch-right {
  width: clamp(280px, 40vw, 600px);
  transform: translateX(400px);
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .sketch-right {
    width: clamp(250px, 45vw, 500px);
  }
}
@media (max-width: 1024px) {
  .sketch-right {
    width: clamp(200px, 48vw, 400px);
  }
}
@media (max-width: 768px) {
  .sketch-right {
    width: clamp(150px, 45vw, 300px);
  }
}

.sketch-section.active .sketch-left {
  opacity: 1;
  transform: translateX(0);
}

.sketch-section.active .sketch-right {
  opacity: 1;
  transform: translateX(0);
}

.sketch-section.active .sketch-left,
.sketch-section.active .sketch-right {
  transition: all 2s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (max-width: 768px) {
  .sketch-section.active .sketch-left,
  .sketch-section.active .sketch-right {
    transition: all 1.5s cubic-bezier(0.22, 1, 0.36, 1);
  }
}

.content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #333;
  max-width: clamp(600px, 85vw, 900px);
  margin: 0 auto 0 auto;
}
.content p {
  padding: 0 clamp(0.4rem, 2vw, 1rem);
  font-size: clamp(2rem, 1.2vw + 0.3rem, 6rem);
  line-height: 1.4;
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .content p {
    font-size: clamp(0.95rem, 2vw, 1.3rem);
    padding: 0 clamp(0.5rem, 3vw, 2rem);
  }
}
@media (max-width: 768px) {
  .content p {
    font-size: clamp(0.9rem, 3.5vw, 1.1rem);
    padding: 0 clamp(0.5rem, 2vw, 1rem);
  }
}

.commitments {
  margin: 0 clamp(0.4rem, 3vw, 1rem);
  padding: clamp(1rem, 6vh, 2rem) 0;
  background-color: #f8f7f7;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.1));
}
@media (max-width: 768px) {
  .commitments {
    height: clamp(450px, 60vh, 550px);
    margin: 0;
    padding: clamp(2rem, 5vh, 3rem) 0;
  }
}
.commitments__inner {
  max-width: clamp(900px, 90vw, 1200px);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}
@media (max-width: 768px) {
  .commitments__inner {
    padding: 0 1rem;
  }
}
.commitments__title {
  text-align: center;
  margin-bottom: clamp(2rem, 5vh, 3rem);
  font-size: clamp(1.5rem, 3vw, 2rem);
}
@media (max-width: 768px) {
  .commitments__title {
    margin-bottom: clamp(1.5rem, 4vh, 2rem);
    font-size: clamp(1.3rem, 3vw, 1.2rem);
  }
}
.commitments__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 2.5vw, 2rem);
}
@media (max-width: 1024px) {
  .commitments__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.2rem, 2vw, 1.8rem);
  }
}
@media (max-width: 768px) {
  .commitments__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding: 0 1rem 1rem;
    margin: 0 -1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .commitments__grid::-webkit-scrollbar {
    display: none;
  }
  .commitments__grid .commitment-card {
    flex: 0 0 clamp(250px, 85vw, 320px);
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
}
@media (max-width: 480px) {
  .commitments__grid .commitment-card {
    flex: 0 0 clamp(220px, 90vw, 280px);
  }
}

.products-bar {
  background: #111;
  border-bottom: 2px solid #eee;
  padding: 1rem 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: #dfaf4f transparent;
}
.products-bar::-webkit-scrollbar {
  height: 2px;
}
.products-bar::-webkit-scrollbar-thumb {
  background: rgba(223, 175, 79, 0.3);
  border-radius: 10px;
}
.products-bar__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.4rem;
  background-color: reds;
}
@media (max-width: 1024px) {
  .products-bar__container {
    justify-content: flex-start;
    padding: 0 2rem;
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .products-bar__container {
    gap: 0.8rem;
    padding: 0 1rem;
  }
}
.products-bar a {
  text-decoration: none;
  position: relative;
  display: inline-block;
}
.products-bar a::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -4px;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.3s ease;
}
.products-bar a:hover::after {
  width: 80%;
}
.products-bar .productbar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.2rem;
  padding-top: 0.4rem;
  cursor: pointer;
  border-radius: 8px;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .products-bar .productbar-item {
    gap: 0.5rem;
    padding: 0.1rem;
    padding-top: 0.3rem;
  }
}
.products-bar .icon-productbar {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  color: #f9f9f9;
  filter: drop-shadow(2px 1px 2px rgba(0, 0, 0, 0.4));
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .products-bar .icon-productbar {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 480px) {
  .products-bar .icon-productbar {
    width: 28px;
    height: 28px;
  }
}
.products-bar a.active .icon-productbar,
.products-bar a.active h3 {
  color: white;
}
.products-bar a.active::after {
  width: 80%;
}
.products-bar .product_item_content {
  display: flex;
  flex-direction: column;
}
.products-bar .productbar-item h3 {
  font-size: 0.7rem;
  color: #f9f9f9;
  margin: 0 0 0.1rem 0;
  font-weight: 400;
  white-space: nowrap;
  filter: drop-shadow(2px 1px 2px rgba(0, 0, 0, 0.4));
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .products-bar .productbar-item h3 {
    font-size: 0.85rem;
  }
}
@media (max-width: 480px) {
  .products-bar .productbar-item h3 {
    font-size: 0.75rem;
  }
}
.products-bar a:hover .icon-productbar,
.products-bar a:hover h3 {
  color: #dfaf4f;
}
@media (max-width: 768px) {
  .products-bar {
    padding: 0.75rem 0;
  }
}

.type-container {
  display: flex;
  flex-direction: column;
  padding: 1rem 2rem;
  width: 100%;
  margin: 0 auto;
}
.type-container .type-title {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: left;
  color: #222;
  margin-bottom: 2rem;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 1rem;
}
@media (max-width: 768px) {
  .type-container .type-title {
    font-size: 1.2rem;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 480px) {
  .type-container .type-title {
    font-size: 1.2rem;
    padding: 0.5rem;
    margin-bottom: 1rem;
  }
}
.type-container .type-mat {
  margin-bottom: 2rem;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .type-container .type-mat {
    margin-bottom: 1.5rem;
  }
}
.type-container .product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
  justify-items: center;
}
@media (max-width: 1024px) {
  .type-container .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .type-container .product-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .type-container {
    padding: 1rem 1rem;
  }
}
@media (max-width: 480px) {
  .type-container {
    padding: 0.75rem 0.75rem;
  }
}

.product-page-img-container {
  width: 100%;
  margin: 0 auto;
  padding: 2rem 0;
}
@media (max-width: 768px) {
  .product-page-img-container {
    padding: 1.5rem 0;
  }
}
@media (max-width: 480px) {
  .product-page-img-container {
    padding: 1rem 0;
  }
}
.product-page-img-container .product-images {
  display: grid;
  grid-auto-flow: column;
  gap: 1.4rem;
  padding: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
  scroll-behavior: smooth;
  touch-action: pan-x;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .product-page-img-container .product-images {
    gap: 1rem;
    padding: 1.5rem 1rem;
  }
}
@media (max-width: 480px) {
  .product-page-img-container .product-images {
    gap: 0.8rem;
    padding: 1rem 0.5rem;
  }
}
.product-page-img-container .product-images:has(img:nth-child(2)) {
  justify-content: center;
  gap: 0.8rem;
}
.product-page-img-container .product-images:has(img:nth-child(3)) {
  justify-content: flex-start;
  gap: 1.4rem;
}
@media (max-width: 768px) {
  .product-page-img-container .product-images:has(img:nth-child(3)) {
    gap: 1rem;
  }
}
.product-page-img-container .product-images.active {
  cursor: grabbing;
}
.product-page-img-container .product-images img {
  width: 400px;
  height: auto;
  object-fit: cover;
  border-radius: 10px 60px 60px 60px;
  scroll-snap-align: center;
  -webkit-user-drag: none;
  user-select: none;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1024px) {
  .product-page-img-container .product-images img {
    width: 350px;
  }
}
@media (max-width: 768px) {
  .product-page-img-container .product-images img {
    width: 280px;
    border-radius: 8px 40px 40px 40px;
  }
}
@media (max-width: 480px) {
  .product-page-img-container .product-images img {
    width: 240px;
    border-radius: 6px 30px 30px 30px;
  }
}
.product-page-img-container .product-images::-webkit-scrollbar {
  display: none;
}
.product-page-img-container .product-images::-webkit-scrollbar-thumb {
  background: rgba(223, 175, 79, 0.3);
  border-radius: 10px;
}

.product-description {
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 4rem;
  align-items: start;
}
.product-description h3 {
  font-size: 25px;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .product-description h3 {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .product-description h3 {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .product-description {
    margin: 0 2rem;
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .product-description {
    grid-template-columns: 1fr;
    margin: 0 1.5rem;
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .product-description {
    margin: 0 1rem;
    gap: 15px;
  }
}

.material-icon {
  width: 26px;
  height: 26px;
  margin-right: 10px;
  border-radius: 4px;
  vertical-align: top;
}
@media (max-width: 480px) {
  .material-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
  }
}

.text-description {
  grid-column: 1/-1;
  padding: 30px;
  border-radius: 10px;
}
.text-description p {
  font-size: 1.1em;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .text-description p {
    font-size: 1em;
    line-height: 1.5;
  }
}
@media (max-width: 480px) {
  .text-description p {
    font-size: 0.95em;
  }
}
@media (max-width: 768px) {
  .text-description {
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .text-description {
    padding: 15px;
  }
}

.materieaux-description,
.finition-description,
.dimensions-description {
  display: flex;
  flex-direction: column;
  padding: 0;
  border-radius: 10px;
  color: #555;
  line-height: 1.6;
  padding: 0 2rem;
}
.materieaux-description h3,
.finition-description h3,
.dimensions-description h3 {
  margin: 0 0 15px 0;
}
@media (max-width: 480px) {
  .materieaux-description h3,
  .finition-description h3,
  .dimensions-description h3 {
    margin: 0 0 10px 0;
  }
}
.materieaux-description details,
.finition-description details,
.dimensions-description details {
  border-bottom: 1px solid #ddd;
}
.materieaux-description summary,
.finition-description summary,
.dimensions-description summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
}
.materieaux-description summary::-webkit-details-marker,
.finition-description summary::-webkit-details-marker,
.dimensions-description summary::-webkit-details-marker {
  display: none;
}
.materieaux-description summary h2,
.finition-description summary h2,
.dimensions-description summary h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-decoration: none;
}
.materieaux-description .accordion-icon,
.finition-description .accordion-icon,
.dimensions-description .accordion-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.materieaux-description details[open] .accordion-icon,
.finition-description details[open] .accordion-icon,
.dimensions-description details[open] .accordion-icon {
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .materieaux-description,
  .finition-description,
  .dimensions-description {
    padding: 0;
  }
}
@media (max-width: 480px) {
  .materieaux-description,
  .finition-description,
  .dimensions-description {
    padding: 0;
  }
}

.materieaux-description {
  grid-column: 1;
}
@media (max-width: 768px) {
  .materieaux-description {
    grid-column: auto;
  }
}

.materieaux-description ul,
.finition-description ul {
  list-style-position: inside;
  line-height: 1.8;
  margin: 0;
  padding: 0 0 20px 0;
}
@media (max-width: 480px) {
  .materieaux-description ul,
  .finition-description ul {
    line-height: 1.6;
    font-size: 0.95em;
  }
}

.finition-description {
  grid-column: 2;
}
@media (max-width: 768px) {
  .finition-description {
    grid-column: auto;
  }
}

.finition-description p,
.dimensions-description p {
  margin: 0;
  padding: 0 0 20px 0;
}
@media (max-width: 480px) {
  .finition-description p,
  .dimensions-description p {
    font-size: 0.95em;
  }
}

.dimensions-description {
  grid-column: 3;
}
@media (max-width: 768px) {
  .dimensions-description {
    grid-column: auto;
  }
}

.couleurs-finitions-menu {
  padding: 2rem;
}
.couleurs-finitions-menu .container {
  max-width: 1200px;
  margin: 0 auto;
}
.couleurs-finitions-menu h3 {
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.4rem);
  margin-bottom: 2rem;
  color: #2c2c2c;
}
.couleurs-finitions-menu .finitions-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .couleurs-finitions-menu .finitions-list {
    gap: 1rem;
    flex-direction: column;
  }
}
.couleurs-finitions-menu .finitions-list li a {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #f5f5f5, #fafafa);
  border-radius: 8px;
  text-decoration: none;
  color: #2c2c2c;
  font-weight: 500;
  transition: all 0.3s ease;
  display: block;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.couleurs-finitions-menu .finitions-list li a:hover {
  background: #dfaf4f;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.collection-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.8rem; /* 🧩 Espacement plus cohérent entre les éléments */
  padding: 3rem 1.5rem 2rem;
  max-width: 1100px; /* ✅ Moins large pour recentrer l’attention */
  margin: 0 auto;
  color: #1a1a1a;
}
@media (min-width: 768px) {
  .collection-hero {
    padding: 4rem 2rem 2.5rem;
    gap: 1rem;
  }
}
.collection-hero .collection-symbol {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f5f5;
  border-radius: 16px;
  padding: 0.8rem 1rem;
  width: 85px;
  height: 85px;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.collection-hero .collection-symbol img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  filter: grayscale(20%);
  opacity: 0.9;
}
.collection-hero .collection-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
  color: #111;
}
.collection-hero .collection-description {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.5;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.collection-products {
  padding: 40px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.collection-products h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
  text-align: center;
  color: #1a1a1a;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.other-collections {
  padding: 2.5rem 0 3rem;
  background: #fafafa;
  text-align: center;
}
.other-collections h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.8rem;
}
.other-collections .other-collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 0.8rem; /* 🧩 Espacement réduit entre les cards */
  justify-content: center;
  justify-items: center;
  max-width: 720px; /* ✅ largeur limitée au centre */
  margin: 0 auto; /* ✅ centré horizontalement */
}
.other-collections .symbol-only {
  text-align: center;
  transition: transform 0.2s ease;
}
.other-collections .symbol-only a {
  text-decoration: none;
  color: inherit;
}
.other-collections .symbol-only:hover {
  transform: translateY(-3px);
}
.other-collections .symbol-only .symbol-container {
  background: white;
  border-radius: 10px;
  padding: 0.8rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  width: 90px;
  height: 90px;
  margin: 0 auto 0.4rem;
}
.other-collections .symbol-only .symbol-container img.symbol-image {
  max-width: 70%;
  height: auto;
  object-fit: contain;
  filter: grayscale(15%);
  opacity: 0.85;
}
.other-collections .symbol-only h3 {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  margin: 0;
}

/* Hero Video Section */
.surmesure-hero {
  width: 100%;
  height: 70vh;
  min-height: 500px;
  position: relative;
  overflow: hidden;
  background-color: #000;
}
@media (max-width: 768px) {
  .surmesure-hero {
    height: 50vh;
    min-height: 400px;
  }
}
@media (max-width: 480px) {
  .surmesure-hero {
    min-height: 350px;
  }
}

.surmesure-hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.surmesure-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.surmesure-hero__sound-toggle {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 10;
}
@media (max-width: 768px) {
  .surmesure-hero__sound-toggle {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }
}
@media (max-width: 480px) {
  .surmesure-hero__sound-toggle {
    width: 40px;
    height: 40px;
    bottom: 15px;
    right: 15px;
  }
}
.surmesure-hero__sound-toggle:hover {
  background: #fff;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.surmesure-hero__sound-toggle:active {
  transform: scale(0.95);
}

.surmesure-hero__sound-icon {
  width: 24px;
  height: 24px;
  color: #2c3e50;
  transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
  .surmesure-hero__sound-icon {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 480px) {
  .surmesure-hero__sound-icon {
    width: 18px;
    height: 18px;
  }
}
.surmesure-hero__sound-icon--muted {
  opacity: 1;
}
.surmesure-hero__sound-icon--unmuted {
  opacity: 0;
  position: absolute;
}

.surmesure-hero__sound-toggle.unmuted .surmesure-hero__sound-icon--muted {
  opacity: 0;
}

.surmesure-hero__sound-toggle.unmuted .surmesure-hero__sound-icon--unmuted {
  opacity: 1;
}

/* Container */
.surmesure-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .surmesure-container {
    padding: 0 15px;
  }
}

/* Page Title */
.surmesure-title-top {
  text-align: center;
  padding: 80px 20px 40px;
}
@media (max-width: 768px) {
  .surmesure-title-top {
    padding: 60px 15px 30px;
  }
}
@media (max-width: 480px) {
  .surmesure-title-top {
    padding: 40px 15px 20px;
  }
}

.surmesure-title-top__heading {
  font-family: "InterTight", sans-serif;
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: #2c3e50;
  position: relative;
  display: inline-block;
}
@media (max-width: 1024px) {
  .surmesure-title-top__heading {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .surmesure-title-top__heading {
    font-size: 2.5rem;
    letter-spacing: 1px;
  }
}
@media (max-width: 480px) {
  .surmesure-title-top__heading {
    font-size: 2rem;
  }
}
.surmesure-title-top__heading::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 80px;
  height: 3px;
  background: #dfaf4f;
}
@media (max-width: 480px) {
  .surmesure-title-top__heading::after {
    width: 60px;
    height: 2px;
    bottom: -10px;
  }
}

/* Bureau d'études Section */
.surmesure-bureau {
  padding: 60px 20px;
}
@media (max-width: 768px) {
  .surmesure-bureau {
    padding: 40px 15px;
  }
}

.surmesure-bureau__title {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 30px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .surmesure-bureau__title {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .surmesure-bureau__title {
    font-size: 1.5rem;
  }
}

.surmesure-bureau__text {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  text-align: justify;
}
@media (max-width: 768px) {
  .surmesure-bureau__text {
    font-size: 1rem;
    text-align: left;
  }
}

/* IMAGE COMPARATOR SLIDER*/
.surmesure-bureau__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.image-comparator {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: clamp(8px, 1.5vw, 16px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: block;
}
@media (max-width: 1024px) {
  .image-comparator {
    max-width: 600px;
  }
}
@media (max-width: 768px) {
  .image-comparator {
    max-width: 100%;
  }
}

.image-comparator__container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  line-height: 0;
  display: block;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .image-comparator__container {
    aspect-ratio: 4/3;
  }
}

.image-comparator__after,
.image-comparator__before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-comparator__before-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
  transition: width 0.05s ease-out;
}

.image-comparator__before {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  object-fit: cover;
}

.image-comparator__slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: white;
  cursor: ew-resize;
  transition: left 0.05s ease-out;
  z-index: 10;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.image-comparator__slider::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
}

.image-comparator__handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  cursor: ew-resize;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-comparator__handle::before, .image-comparator__handle::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}
.image-comparator__handle::before {
  left: 10px;
  border-width: 6px 8px 6px 0;
  border-color: transparent #333 transparent transparent;
}
.image-comparator__handle::after {
  right: 10px;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #333;
}

.surmesure-bureau__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px; /* Optionnel : pour arrondir les coins */
}

/* Responsive : sur mobile, les colonnes se superposent */
@media (max-width: 768px) {
  .surmesure-bureau__wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.galerie-processus {
  padding: 4rem 0;
}

.galerie-processus__grid {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 1rem; /* Espace pour la scrollbar */
  overflow-x: auto; /* Force l'apparition de la scrollbar horizontale */
}

.galerie-processus__grid::-webkit-scrollbar {
  height: 8px;
}

.galerie-processus__grid::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.galerie-processus__grid::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.galerie-processus__grid::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.galerie-processus__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.galerie-processus__image {
  width: 400px;
  height: 300px; /* Ajustez la hauteur selon vos besoins */
  overflow: hidden;
  border-radius: 8px;
}

.galerie-processus__image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Affiche l'image entière sans la couper */
  display: block;
  background-color: #f5f5f5; /* Optionnel: fond gris si l'image ne remplit pas tout l'espace */
}

.galerie-processus__text {
  text-align: center;
  font-size: 0.95rem;
  color: #333;
  margin: 0;
  line-height: 1.4;
}

.galerie-processus__wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.galerie-processus__arrow {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #333;
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.galerie-processus__arrow:hover {
  background-color: #555;
  transform: scale(1.1);
}

.galerie-processus__arrow:active {
  transform: scale(0.95);
}

.galerie-processus__arrow svg {
  pointer-events: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .galerie-processus__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .galerie-processus__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .galerie-processus__arrow {
    display: none;
  }
  .galerie-processus__wrapper {
    gap: 0;
  }
}
@media (max-width: 480px) {
  .galerie-processus__grid {
    grid-template-columns: 1fr;
  }
}
/* Nos Forces Section */
.surmesure-forces {
  padding: 80px 20px;
  background: #bf8821;
  color: #fff;
}
@media (max-width: 768px) {
  .surmesure-forces {
    padding: 60px 15px;
  }
}
@media (max-width: 480px) {
  .surmesure-forces {
    padding: 40px 15px;
  }
}

.surmesure-forces__title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 300;
  letter-spacing: 1px;
}
@media (max-width: 1024px) {
  .surmesure-forces__title {
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  .surmesure-forces__title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .surmesure-forces__title {
    font-size: 1.75rem;
  }
}

.surmesure-forces__content {
  max-width: 900px;
  margin: 0 auto;
}

.surmesure-forces__text {
  color: #f9f9f9;
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 20px;
  text-align: justify;
  opacity: 0.95;
}
@media (max-width: 768px) {
  .surmesure-forces__text {
    font-size: 1rem;
    text-align: left;
    line-height: 1.7;
  }
}

.surmesure-gallery {
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 3vw, 2rem);
  background: #fff;
}

.surmesure-container {
  max-width: 1400px;
  margin: 0 auto;
}
.surmesure-container h2 {
  font-family: "InterTight", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
  color: #38404b;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
}
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: clamp(0.5rem, 1.5vw, 1rem);
  }
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: clamp(8px, 1.5vw, 16px);
  aspect-ratio: 4/3;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Classe utilitaire pour l'accessibilité */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.project-header {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(1.5rem, 4vw, 3rem);
  margin-left: auto;
  margin-right: auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}
.project-header h1 {
  font-weight: 200;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  text-align: left;
}

.project-meta {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 1.5rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .project-meta {
    gap: 1.25rem;
  }
}
@media (max-width: 768px) {
  .project-meta {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.project-city,
.project-year,
.product-used {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background-color: rgb(242, 241, 241);
  border-radius: 20px;
  font-size: 16px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  width: fit-content;
}
.project-city:hover,
.project-year:hover,
.product-used:hover {
  background-color: #d0d0d0;
}
@media (max-width: 1024px) {
  .project-city,
  .project-year,
  .product-used {
    font-size: 15px;
    padding: 7px 12px;
    gap: 7px;
  }
}
@media (max-width: 768px) {
  .project-city,
  .project-year,
  .product-used {
    font-size: 14px;
    padding: 6px 12px;
    gap: 6px;
  }
}
@media (max-width: 480px) {
  .project-city,
  .project-year,
  .product-used {
    font-size: 13px;
    padding: 6px 10px;
    gap: 5px;
  }
}

.project-products h2 {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  margin: 0 0 clamp(8px, 1.5vw, 12px) 0;
  color: #38404b;
}

.project-products-grid {
  display: flex;
  gap: clamp(0.8rem, 1.5vw, 1rem);
}
@media (max-width: 768px) {
  .project-products-grid {
    flex-wrap: wrap;
  }
}

.product-used img {
  width: clamp(20px, 3vw, 24px);
  height: clamp(20px, 3vw, 24px);
  object-fit: contain;
  flex-shrink: 0;
}
.product-used h3 {
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 400;
  margin: 0;
  color: #333;
}
.product-used .collection-name {
  font-size: clamp(14px, 2vw, 16px);
  color: #666;
  margin: 0;
}

.project-gallery {
  padding: clamp(20px, 5vw, 40px) clamp(10px, 3vw, 20px);
  margin: 0 auto;
}

.project-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  justify-content: center;
  gap: clamp(12px, 10.4px + 0.5vw, 20px);
}
@media (max-width: 768px) {
  .project-images {
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  }
}
@media (max-width: 480px) {
  .project-images {
    grid-template-columns: 1fr;
  }
}
.project-images:has(img:only-child) {
  display: flex;
  justify-content: center;
}
.project-images img {
  width: 100%;
  max-width: 600px;
  object-fit: cover;
  border-radius: clamp(12px, 10.4px + 0.5vw, 20px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.project-images img:only-child {
  max-width: min(800px, 100%);
  height: auto;
}
.project-images:not(:has(img:only-child)) img {
  height: clamp(200px, 144px + 17.5vw, 480px);
  object-fit: cover;
}
@media (max-width: 768px) {
  .project-images:not(:has(img:only-child)) img {
    height: clamp(250px, 230px + 6.25vw, 350px);
  }
}
@media (max-width: 480px) {
  .project-images:not(:has(img:only-child)) img {
    height: clamp(300px, 280px + 6.25vw, 400px);
  }
}

/* Liste des projets */
.projects-hero {
  padding: 60px 20px;
  text-align: center;
  color: white;
}
@media (max-width: 768px) {
  .projects-hero {
    padding: 40px 15px;
  }
}
@media (max-width: 480px) {
  .projects-hero {
    padding: 30px 10px;
  }
}
.projects-hero p {
  color: #38404b;
  font-size: 1.2rem;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .projects-hero p {
    font-size: 1.1rem;
  }
}
@media (max-width: 480px) {
  .projects-hero p {
    font-size: 1rem;
  }
}

.projects-hero-heading {
  color: #38404b;
  font-size: 3rem;
  margin-bottom: 35px;
  position: relative;
  display: inline-block;
}
.projects-hero-heading::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 80px;
  height: 3px;
  background: #dfaf4f;
}
@media (max-width: 768px) {
  .projects-hero-heading {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  .projects-hero-heading::after {
    width: 60px;
    bottom: -12px;
  }
}
@media (max-width: 480px) {
  .projects-hero-heading {
    font-size: 2rem;
    margin-bottom: 25px;
  }
  .projects-hero-heading::after {
    width: 50px;
    bottom: -10px;
    height: 2px;
  }
}

.projects-list {
  padding: 20px 20px;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 1024px) {
  .projects-list {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .projects-list {
    grid-template-columns: 1fr;
    padding: 15px;
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .projects-list {
    padding: 10px;
    gap: 15px;
  }
}

.project-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .project-card:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 768px) {
  .project-card {
    border-radius: 10px;
  }
}

.project-card-image {
  width: 100%;
  height: 460px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .project-card-image {
    height: 250px;
  }
}
@media (max-width: 480px) {
  .project-card-image {
    height: 200px;
  }
}

.project-card-content {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  align-content: center;
}
.project-card-content h2 {
  font-size: 1.1rem;
  font-weight: 200;
  margin-bottom: 8px;
  color: #333;
}
@media (max-width: 768px) {
  .project-card-content h2 {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .project-card-content h2 {
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  .project-card-content {
    padding: 14px 16px;
  }
}
@media (max-width: 480px) {
  .project-card-content {
    padding: 12px 14px;
  }
}

.project-card-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 8px;
  color: #666;
  font-size: 0.85rem;
}
.project-card-meta .project-city {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
}
.project-card-meta .project-city::before {
  content: "📍";
  font-size: 0.9em;
}
@media (max-width: 480px) {
  .project-card-meta {
    font-size: 0.8rem;
    gap: 10px;
  }
}

.section-histoire {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 40px) clamp(15px, 3vw, 40px);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #2c3e50;
  margin-bottom: clamp(25px, 4vw, 40px);
  position: relative;
  padding-bottom: clamp(10px, 2vw, 15px);
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: clamp(60px, 10vw, 80px);
  height: 3px;
  background: #dfaf4f;
}

.intro-section {
  background: white;
  border-radius: clamp(8px, 1.2vw, 12px);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: clamp(25px, 4vw, 40px);
}

.intro-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(20px, 3vw, 30px);
  align-items: center;
}
@media (max-width: 1024px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.intro-content {
  padding-right: clamp(0px, 2vw, 20px);
}
@media (max-width: 1024px) {
  .intro-content {
    padding-right: 0;
  }
}
.intro-content .quote {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.6;
  color: #555;
  font-style: italic;
  position: relative;
  padding-left: clamp(20px, 3vw, 30px);
  border-left: 2px solid #dfaf4f;
}

.intro-image {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: clamp(6px, 1vw, 8px);
  overflow: hidden;
}
@media (max-width: 1024px) {
  .intro-image {
    max-width: 400px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .intro-image {
    max-width: 100%;
  }
}
.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.histoire-section {
  background: white;
  border-radius: clamp(8px, 1.2vw, 12px);
  padding: clamp(25px, 5vw, 50px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.histoire-content {
  max-width: 1100px;
  margin: 0 auto;
}
.histoire-content p {
  margin-bottom: clamp(15px, 3vw, 25px);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: #555;
  text-align: justify;
}
@media (max-width: 768px) {
  .histoire-content p {
    text-align: left;
  }
}

.highlight {
  background: #dfaf4f;
  padding: 2px clamp(6px, 1vw, 8px);
  border-radius: 3px;
  font-weight: 500;
}

.rencontre-section {
  background: white;
  border-radius: clamp(8px, 1.2vw, 12px);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: clamp(25px, 4vw, 40px);
}

.rencontre-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(20px, 3vw, 30px);
  align-items: center;
}
@media (max-width: 1024px) {
  .rencontre-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.rencontre-image {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: clamp(6px, 1vw, 8px);
  overflow: hidden;
}
@media (max-width: 1024px) {
  .rencontre-image {
    max-width: 400px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .rencontre-image {
    max-width: 100%;
  }
}
.rencontre-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rencontre-content {
  padding-left: clamp(0px, 2vw, 20px);
}
@media (max-width: 1024px) {
  .rencontre-content {
    padding-left: 0;
  }
}
.rencontre-content h3 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: #2c3e50;
  margin-bottom: clamp(20px, 3vw, 30px);
  font-weight: 400;
}
.rencontre-content p {
  margin-bottom: clamp(15px, 2.5vw, 20px);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: #555;
  text-align: justify;
}
@media (max-width: 768px) {
  .rencontre-content p {
    text-align: left;
  }
}
.rencontre-content .conclusion {
  margin-top: clamp(20px, 3vw, 30px);
  padding: clamp(15px, 3vw, 25px);
  background: #f8f9fa;
  border-radius: clamp(6px, 1vw, 8px);
  border-left: 4px solid #dfaf4f;
  font-style: italic;
}

.equipe-section {
  background: white;
  border-radius: clamp(8px, 1.2vw, 12px);
  padding: clamp(25px, 5vw, 50px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .equipe-section {
    padding-bottom: 30px;
  }
}

.equipe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 4vw, 40px);
  margin-top: clamp(15px, 2.5vw, 20px);
}
@media (max-width: 1024px) {
  .equipe-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .equipe-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 20px;
    padding-bottom: 15px;
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(223, 175, 79, 0.3) transparent;
  }
  .equipe-grid::-webkit-scrollbar {
    height: 6px;
  }
  .equipe-grid::-webkit-scrollbar-track {
    background: transparent;
  }
  .equipe-grid::-webkit-scrollbar-thumb {
    background: rgba(223, 175, 79, 0.3);
    border-radius: 3px;
  }
}

.equipe-member {
  text-align: center;
  transition: transform 0.3s ease;
}
.equipe-member:hover {
  transform: translateY(-5px);
}
@media (max-width: 768px) {
  .equipe-member {
    flex: 0 0 280px;
    scroll-snap-align: start;
  }
  .equipe-member:hover {
    transform: none;
  }
}
@media (max-width: 480px) {
  .equipe-member {
    flex: 0 0 240px;
  }
}

.equipe-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: clamp(6px, 1vw, 8px);
  overflow: hidden;
  margin-bottom: clamp(15px, 2.5vw, 20px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.equipe-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.equipe-nom {
  font-size: clamp(1.1rem, 1.8vw, 1.2rem);
  color: #2c3e50;
  margin-bottom: 2px;
  font-weight: 600;
}

.equipe-poste {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: #777;
  font-style: italic;
}

.contact-container {
  min-height: 100vh;
  padding: clamp(20px, 4vw, 40px) clamp(15px, 3vw, 20px);
}

.contact-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(20px, 3vw, 40px);
}
@media (max-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.contact-form-section {
  background: #fff;
  padding: clamp(25px, 4vw, 40px);
  border-radius: clamp(8px, 1.2vw, 12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.contact-form-section h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 10px;
}
.contact-form-section .subtitle {
  color: #666;
  margin-bottom: clamp(20px, 3vw, 30px);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(15px, 2.5vw, 20px);
  margin-bottom: clamp(15px, 2.5vw, 20px);
}
@media (max-width: 768px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.contact-form .form-group {
  margin-bottom: clamp(15px, 2.5vw, 20px);
}
.contact-form .form-group label {
  display: block;
  margin-bottom: clamp(6px, 1vw, 8px);
  font-weight: 600;
  font-size: clamp(0.875rem, 1.2vw, 0.95rem);
}
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  width: 100%;
  padding: clamp(10px, 1.5vw, 12px) clamp(12px, 2vw, 15px);
  border: 2px solid #ddd;
  border-radius: clamp(6px, 1vw, 8px);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-family: inherit;
  transition: border-color 0.3s ease;
}
.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  outline: none;
}
.contact-form .form-group input::placeholder,
.contact-form .form-group select::placeholder,
.contact-form .form-group textarea::placeholder {
  color: #999;
}
.contact-form .form-group select {
  cursor: pointer;
  background-color: #fff;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: clamp(16px, 2vw, 20px);
  padding-right: clamp(35px, 5vw, 40px);
}
.contact-form .form-group textarea {
  resize: vertical;
  min-height: clamp(100px, 15vw, 120px);
}
.contact-form .submit-btn {
  background: #bf8821;
  color: #fff;
  padding: clamp(12px, 2vw, 15px) clamp(30px, 5vw, 40px);
  border: none;
  border-radius: clamp(6px, 1vw, 8px);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .contact-form .submit-btn {
    width: 100%;
  }
}
.contact-form .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.contact-form .submit-btn:active {
  transform: translateY(0);
}

.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 25px);
}
.contact-info-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 10px;
}
.contact-info-section .info-block {
  background: #fff;
  padding: clamp(20px, 3vw, 25px);
  border-radius: clamp(8px, 1.2vw, 12px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-info-section .info-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.contact-info-section .info-block h3 {
  font-size: clamp(1.1rem, 2vw, 1.2rem);
  margin-bottom: clamp(10px, 1.5vw, 12px);
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-info-section .info-block p {
  color: #666;
  line-height: 1.8;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
}
.contact-info-section .info-block p strong {
  color: #333;
}
.contact-info-section .info-block a {
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-info-section .info-block a:hover {
  text-decoration: underline;
}
.contact-info-section .map-container {
  background: #fff;
  padding: clamp(20px, 3vw, 25px);
  border-radius: clamp(8px, 1.2vw, 12px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}
.contact-info-section .map-container h3 {
  font-size: clamp(1.1rem, 2vw, 1.2rem);
  margin-bottom: clamp(12px, 2vw, 15px);
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-info-section .map-container iframe {
  border-radius: clamp(6px, 1vw, 8px);
  width: 100%;
  height: clamp(250px, 30vw, 350px);
}

.social-media-block {
  background: #fff;
  padding: clamp(20px, 3vw, 25px);
  border-radius: clamp(8px, 1.2vw, 12px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.social-media-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.social-media-block h3 {
  font-size: clamp(1.1rem, 2vw, 1.2rem);
  margin-bottom: clamp(15px, 2vw, 20px);
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-media-block .social-links {
  display: flex;
  gap: clamp(12px, 2vw, 15px);
  flex-wrap: wrap;
}
.social-media-block .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(45px, 6vw, 50px);
  height: clamp(45px, 6vw, 50px);
  border-radius: 50%;
  background: #f5f5f5;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
}
.social-media-block .social-links a:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.social-media-block .social-links a.facebook:hover {
  background: #1877f2;
  color: #fff;
}
.social-media-block .social-links a.twitter:hover {
  background: #1da1f2;
  color: #fff;
}
.social-media-block .social-links a.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
}
.social-media-block .social-links a.linkedin:hover {
  background: #0077b5;
  color: #fff;
}
.social-media-block .social-links a.youtube:hover {
  background: #ff0000;
  color: #fff;
}
.social-media-block .social-links a.tiktok:hover {
  background: #000;
  color: #fff;
}

.legal-page {
  padding: 60px 20px;
  background: #f9f9f9;
  min-height: 60vh;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.legal-container h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #222;
}
.legal-container h2 {
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #333;
}
.legal-container section {
  margin-bottom: 30px;
}
.legal-container p,
.legal-container li {
  line-height: 1.8;
  color: #555;
}
.legal-container a {
  color: #dfaf4f;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .legal-container {
    padding: 30px 20px;
  }
  .legal-container h1 {
    font-size: 2rem;
  }
  .legal-container h2 {
    font-size: 1.3rem;
  }
}

.elements-section {
  padding: 2rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .elements-section {
    padding: 1.5rem 1rem;
  }
}

.elements-title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 2rem;
  font-weight: 600;
}

.elements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 1024px) {
  .elements-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.element-card {
  background: var(--card-background, #f5f5f5);
  border: 2px solid #e8b43b;
  border-radius: 10px;
  padding: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.element-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .element-card {
    padding: 0.75rem;
  }
}

.element-title {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #e8b43b;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid #e8b43b;
  padding-bottom: 0.25rem;
  display: inline-block;
}

.element-content p {
  margin-bottom: 0.5rem;
  line-height: 1.4;
  font-size: 0.9rem;
  color: var(--text-color, #333);
}
.element-content p:last-child {
  margin-bottom: 0;
}

.element-collections {
  margin-top: 0.75rem;
  font-weight: 500;
  font-size: 0.85rem;
}
.element-collections a {
  color: #e8b43b;
  text-decoration: none;
  transition: color 0.3s ease;
}
.element-collections a:hover {
  color: rgb(191.9726027397, 141.0410958904, 22.5273972603);
  text-decoration: underline;
}

.catalogue-banner {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 3rem 2rem;
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .catalogue-banner {
    padding: 2rem 1rem;
    margin-top: 3rem;
  }
}

.catalogue-banner-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .catalogue-banner-container {
    grid-template-columns: 250px 1fr;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .catalogue-banner-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.catalogue-banner-visual {
  position: relative;
}
@media (max-width: 768px) {
  .catalogue-banner-visual {
    max-width: 250px;
    margin: 0 auto;
  }
}
.catalogue-banner-visual img {
  width: 80%;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.catalogue-banner-visual img:hover {
  transform: scale(1.02) rotate(-1deg);
}

.catalogue-banner-content h3 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  color: #333;
}
@media (max-width: 768px) {
  .catalogue-banner-content h3 {
    font-size: 1.5rem;
    text-align: center;
  }
}
.catalogue-banner-content > p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .catalogue-banner-content > p {
    text-align: center;
  }
}

.catalogue-form .form-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.8rem;
}
@media (max-width: 768px) {
  .catalogue-form .form-group {
    flex-direction: column;
    gap: 0.8rem;
  }
}
.catalogue-form .form-group input[type=email] {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 2px solid #ddd;
  border-radius: 50px;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.catalogue-form .form-group input[type=email]:focus {
  outline: none;
  border-color: var(--primary, #2c5f2d);
  box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
}
.catalogue-form .form-group input[type=email]::placeholder {
  color: #999;
}
.catalogue-form .form-group .btn-catalogue {
  padding: 1rem 2rem;
  background: rgba(223, 175, 79, 0.9);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .catalogue-form .form-group .btn-catalogue {
    width: 100%;
  }
}
.catalogue-form .form-group .btn-catalogue:hover {
  background: #bf8821;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 45, 0.3);
}
.catalogue-form .form-group .btn-catalogue:active {
  transform: translateY(0);
}
.catalogue-form .form-group .btn-catalogue:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}
.catalogue-form .form-notice {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #999;
  margin: 0;
}
@media (max-width: 768px) {
  .catalogue-form .form-notice {
    justify-content: center;
  }
}
.catalogue-form .form-notice svg {
  flex-shrink: 0;
}

.catalogue-success {
  text-align: center;
  padding: 2rem;
  background: #f0f9f4;
  border-radius: 12px;
  border: 2px solid #4caf50;
}
.catalogue-success svg {
  margin: 0 auto 1rem;
  display: block;
}
.catalogue-success h4 {
  font-size: 1.5rem;
  color: #4caf50;
  margin-bottom: 0.5rem;
}
.catalogue-success p {
  color: #666;
  margin: 0;
}

.wood-hero {
  position: relative;
  height: clamp(150px, 50vh, 300px);
  background: linear-gradient(135deg, rgba(139, 87, 42, 0.9), rgba(101, 67, 33, 0.8)), url("../images/wood-hero.jpg") center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.wood-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(212, 165, 116, 0.2), transparent 70%);
}
.wood-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 2rem;
}
.wood-hero .hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.wood-essences {
  padding: clamp(4rem, 8vw, 8rem) 2rem;
  background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
}
.wood-essences .section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}
.wood-essences .section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #2c2c2c;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
.wood-essences .section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #d4a574, #8b5728);
  border-radius: 2px;
}
.wood-essences .section-header .section-description {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #666;
  line-height: 1.6;
  margin-top: 2rem;
}
.wood-essences .section-header .note {
  font-size: 0.9rem;
  color: #999;
  font-style: italic;
  margin-top: 1rem;
}
.wood-essences .wood-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
  justify-items: center;
}
@media (max-width: 1024px) {
  .wood-essences .wood-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .wood-essences .wood-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.wood-essences .wood-card {
  width: 150px;
  background: white;
  border-radius: 12px; /* Réduit de 16px à 12px */
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08); /* Ombre réduite */
  transition: all 0.3s ease;
}
.wood-essences .wood-card:hover {
  transform: translateY(-4px); /* Réduit de -8px à -4px */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); /* Ombre réduite */
}
.wood-essences .wood-sample {
  height: 120px; /* Réduit de 200px à 120px */
  position: relative;
  overflow: hidden;
}
.wood-essences .wood-sample::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
}
.wood-essences .wood-sample img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wood-essences .wood-card h3 {
  padding: 12px; /* Ajustez selon vos besoins */
  font-size: 14px; /* Réduisez la taille du texte si nécessaire */
  margin: 0;
}
.wood-essences .wood-card h3 p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  padding: 0 1.5rem 1.5rem;
  margin: 0;
}

.wood-treatments {
  padding: clamp(4rem, 8vw, 8rem) 2rem;
  background: linear-gradient(135deg, #f5f1ed 0%, #faf8f5 100%);
}
.wood-treatments .treatments-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #2c2c2c;
  margin-bottom: 4rem;
  position: relative;
}
.wood-treatments .treatments-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #d4a574, #8b5728);
  border-radius: 2px;
}
.wood-treatments .treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .wood-treatments .treatments-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
@media (max-width: 768px) {
  .wood-treatments .treatments-grid {
    grid-template-columns: 1fr;
  }
}
.wood-treatments .treatment-card {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.wood-treatments .treatment-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #d4a574, #8b5728);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.wood-treatments .treatment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}
.wood-treatments .treatment-card:hover::before {
  transform: scaleX(1);
}
.wood-treatments .treatment-card .treatment-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f5f1ed, #faf8f5);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: #8b5728;
  transition: all 0.3s ease;
}
.wood-treatments .treatment-card .treatment-icon svg {
  stroke-width: 1.5px;
}
.wood-treatments .treatment-card:hover .treatment-icon {
  background: linear-gradient(135deg, #d4a574, #c89554);
  color: white;
  transform: scale(1.05);
}
.wood-treatments .treatment-card h3 {
  font-size: 1.8rem;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
}
.wood-treatments .treatment-card .treatment-subtitle {
  font-size: 1rem;
  color: #8b5728;
  font-weight: 500;
  margin-bottom: 2rem;
}
.wood-treatments .treatment-card .treatment-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.wood-treatments .treatment-card .treatment-features li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.8rem 0;
  color: #555;
  line-height: 1.6;
  border-bottom: 1px solid #f0f0f0;
}
.wood-treatments .treatment-card .treatment-features li:last-child {
  border-bottom: none;
}
.wood-treatments .treatment-card .treatment-features li svg {
  flex-shrink: 0;
  margin-top: 2px;
  stroke: #8b5728;
  stroke-width: 2.5px;
}
.wood-treatments .treatment-card .natural-visual {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px dashed #e0e0e0;
  text-align: center;
}
.wood-treatments .treatment-card .natural-visual svg {
  opacity: 0.6;
}

.steel-hero {
  position: relative;
  height: clamp(150px, 50vh, 300px);
  background: linear-gradient(135deg, rgba(70, 80, 90, 0.9), rgba(50, 60, 70, 0.85)), url("../images/steel-hero.jpg") center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.steel-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(184, 190, 196, 0.15), transparent 70%);
}
.steel-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 2rem;
}
.steel-hero .hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.zinc-process {
  padding: clamp(4rem, 8vw, 8rem) 2rem;
  background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
}
.zinc-process h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #2c2c2c;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  width: 100%;
}
.zinc-process h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #b8bec4, #6b7278);
  border-radius: 2px;
}
.zinc-process .intro {
  text-align: center;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #666;
  margin: 2rem auto 4rem;
  max-width: 700px;
}
.zinc-process .process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .zinc-process .process-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.zinc-process .process-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}
.zinc-process .process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.zinc-process .process-card .process-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f5f5f5, #fafafa);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: #6b7278;
  transition: all 0.3s ease;
}
.zinc-process .process-card .process-icon svg {
  stroke-width: 1.5px;
}
.zinc-process .process-card:hover .process-icon {
  background: linear-gradient(135deg, #b8bec4, #9ba1a7);
  color: white;
  transform: scale(1.05);
}
.zinc-process .process-card h3 {
  font-size: 1.5rem;
  color: #2c2c2c;
  margin-bottom: 1rem;
}
.zinc-process .process-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

.thermolaquage-process {
  padding: clamp(4rem, 8vw, 8rem) 2rem;
  background: white;
}
.thermolaquage-process h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #2c2c2c;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  width: 100%;
}
.thermolaquage-process h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #b8bec4, #6b7278);
  border-radius: 2px;
}
.thermolaquage-process .intro {
  text-align: center;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #666;
  margin: 2rem auto 4rem;
  max-width: 700px;
}
.thermolaquage-process .steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .thermolaquage-process .steps-container {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .thermolaquage-process .steps-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.thermolaquage-process .step {
  background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.thermolaquage-process .step:hover {
  border-color: #b8bec4;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.thermolaquage-process .step .step-number {
  font-size: 2rem;
  font-weight: 700;
  color: #6b7278;
  margin-bottom: 1rem;
  background: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 2px solid #b8bec4;
}
.thermolaquage-process .step h3 {
  font-size: 1.1rem;
  color: #2c2c2c;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.thermolaquage-process .step p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.ral-colors {
  padding: clamp(4rem, 8vw, 8rem) 2rem;
  background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
}
.ral-colors h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #2c2c2c;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
  width: 100%;
}
.ral-colors h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #b8bec4, #6b7278);
  border-radius: 2px;
}
.ral-colors .subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin: 2rem 0 4rem;
}
.ral-colors .example-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}
@media (max-width: 1024px) {
  .ral-colors .example-images {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .ral-colors .example-images {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.ral-colors .example-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.ral-colors .example-img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.ral-colors .example-img img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}
.ral-colors .example-img.img-1 .placeholder-img {
  background: linear-gradient(135deg, #d0d5db 0%, #b8bec4 100%);
}
.ral-colors .example-img.img-2 .placeholder-img {
  background: linear-gradient(135deg, #9ba1a7 0%, #6b7278 100%);
}
.ral-colors .example-img.img-3 .placeholder-img {
  background: linear-gradient(135deg, #c8cdd2 0%, #a8adb2 100%);
}
.ral-colors .example-img.img-4 .placeholder-img {
  background: linear-gradient(135deg, #6b7278 0%, #4a4f54 100%);
}
.ral-colors .note {
  text-align: center;
  font-size: 0.9rem;
  color: #999;
  font-style: italic;
  margin-top: 2rem;
}

.concrete-hero {
  position: relative;
  height: clamp(150px, 50vh, 300px);
  background: linear-gradient(135deg, rgba(90, 90, 90, 0.9), rgba(70, 70, 70, 0.85)), url("../images/concrete-hero.jpg") center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.concrete-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(168, 168, 160, 0.2), transparent 70%);
}
.concrete-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 2rem;
}
.concrete-hero .hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.concrete-colors {
  padding: clamp(2rem, 8vw, 4rem) 2rem;
  background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
}
.concrete-colors h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #2c2c2c;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
  width: 100%;
}
.concrete-colors h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #a8a8a0, #5a5a5a);
  border-radius: 2px;
}
.concrete-colors .subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin: 2rem 0 4rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

.colors-carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 5rem auto;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.colors-carousel__track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.colors-carousel__slide {
  min-width: 100%;
  flex-shrink: 0;
  margin: 0;
  position: relative;
}
.colors-carousel__slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 850px;
}
@media (max-width: 768px) {
  .colors-carousel__slide img {
    max-height: 300px;
  }
}

.colors-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.colors-carousel__btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}
.colors-carousel__btn svg {
  stroke: #5a5a5a;
  stroke-width: 2.5px;
}
.colors-carousel__btn--prev {
  left: 1rem;
}
.colors-carousel__btn--next {
  right: 1rem;
}
@media (max-width: 768px) {
  .colors-carousel__btn {
    width: 40px;
    height: 40px;
  }
  .colors-carousel__btn svg {
    width: 20px;
    height: 20px;
  }
}

.colors-carousel__indicators {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}
.colors-carousel__indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #5a5a5a;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.colors-carousel__indicators button.active {
  background: #5a5a5a;
  transform: scale(1.2);
}
.colors-carousel__indicators button:hover {
  background: #a8a8a0;
}

.concrete-textures {
  padding: clamp(2rem, 8vw, 4rem) 2rem;
  background: white;
}
.concrete-textures h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #2c2c2c;
  margin-bottom: 4rem;
  position: relative;
  display: inline-block;
  width: 100%;
}
.concrete-textures h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #a8a8a0, #5a5a5a);
  border-radius: 2px;
}
.concrete-textures .textures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .concrete-textures .textures-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .concrete-textures .textures-grid {
    grid-template-columns: 1fr;
  }
}
.concrete-textures .texture-card {
  background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.concrete-textures .texture-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.concrete-textures .texture-card h3 {
  font-size: 1.5rem;
  color: #2c2c2c;
  margin-bottom: 1rem;
}
.concrete-textures .texture-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.concrete-info {
  padding: clamp(4rem, 8vw, 8rem) 2rem;
  background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
}
.concrete-info h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #2c2c2c;
  margin-bottom: 4rem;
  position: relative;
  display: inline-block;
  width: 100%;
}
.concrete-info h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #a8a8a0, #5a5a5a);
  border-radius: 2px;
}
.concrete-info .info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .concrete-info .info-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.concrete-info .info-card {
  background: white;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}
.concrete-info .info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.concrete-info .info-card .info-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f5f5f5, #fafafa);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: #5a5a5a;
  transition: all 0.3s ease;
}
.concrete-info .info-card .info-icon svg {
  stroke-width: 1.5px;
}
.concrete-info .info-card:hover .info-icon {
  background: linear-gradient(135deg, #a8a8a0, #8c8c84);
  color: white;
  transform: scale(1.05);
}
.concrete-info .info-card h3 {
  font-size: 1.8rem;
  color: #2c2c2c;
  margin-bottom: 1.5rem;
}
.concrete-info .info-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}
.concrete-info .info-card .treatments-list {
  text-align: left;
}
.concrete-info .info-card .treatments-list .treatment-item {
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.6;
}
.concrete-info .info-card .treatments-list .treatment-item.standard {
  background: #e8f5e9;
  border-left: 4px solid #4caf50;
  color: #2e7d32;
}
.concrete-info .info-card .treatments-list .treatment-item.optional {
  background: #e3f2fd;
  border-left: 4px solid #2196f3;
  color: #1565c0;
}
.concrete-info .info-card .treatments-list .treatment-item:last-child {
  margin-bottom: 0;
}
.concrete-info .info-card .treatments-list .treatment-item strong {
  display: block;
  margin-bottom: 0.5rem;
}

.concrete-benefits {
  padding: clamp(4rem, 8vw, 8rem) 2rem;
  background: white;
}
.concrete-benefits h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #2c2c2c;
  margin-bottom: 4rem;
  position: relative;
  display: inline-block;
  width: 100%;
}
.concrete-benefits h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #a8a8a0, #5a5a5a);
  border-radius: 2px;
}
.concrete-benefits .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .concrete-benefits .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .concrete-benefits .benefits-grid {
    grid-template-columns: 1fr;
  }
}
.concrete-benefits .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.concrete-benefits .benefit-item:hover {
  background: linear-gradient(135deg, #a8a8a0 0%, #8c8c84 100%);
  transform: translateX(5px);
}
.concrete-benefits .benefit-item:hover svg {
  stroke: white;
}
.concrete-benefits .benefit-item:hover p {
  color: white;
}
.concrete-benefits .benefit-item svg {
  flex-shrink: 0;
  stroke: #5a5a5a;
  stroke-width: 2.5px;
  margin-top: 2px;
  transition: all 0.3s ease;
}
.concrete-benefits .benefit-item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
  transition: all 0.3s ease;
}

.corten-hero {
  position: relative;
  height: clamp(150px, 50vh, 300px);
  background: linear-gradient(135deg, rgba(139, 74, 60, 0.9), rgba(111, 58, 46, 0.85)), url("../images/corten-hero.jpg") center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.corten-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(212, 117, 60, 0.2), transparent 70%);
}
.corten-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 2rem;
}
.corten-hero .hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.corten-intro {
  padding: clamp(4rem, 8vw, 8rem) 2rem;
  background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
}
.corten-intro .intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.corten-intro .intro-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #2c2c2c;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}
.corten-intro .intro-content h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #d4753c, #8b4a3c);
  border-radius: 2px;
}
.corten-intro .intro-content .lead {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: #555;
  line-height: 1.8;
  margin-top: 3rem;
}

.corten-protection {
  padding: clamp(4rem, 8vw, 8rem) 2rem;
  background: linear-gradient(135deg, #f5f1ed 0%, #faf8f5 100%);
}
.corten-protection h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #2c2c2c;
  margin-bottom: 4rem;
  position: relative;
  display: inline-block;
  width: 100%;
}
.corten-protection h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #d4753c, #8b4a3c);
  border-radius: 2px;
}
.corten-protection .protection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .corten-protection .protection-grid {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .corten-protection .protection-grid {
    grid-template-columns: 1fr;
  }
}
.corten-protection .protection-card {
  background: white;
  border-radius: 16px;
  padding: 3rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}
.corten-protection .protection-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.corten-protection .protection-card .element-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  transition: all 0.3s ease;
}
.corten-protection .protection-card .element-icon.copper {
  background: linear-gradient(135deg, #d4753c, #b8613a);
}
.corten-protection .protection-card .element-icon.phosphore {
  background: linear-gradient(135deg, #a0643c, #84502e);
}
.corten-protection .protection-card .element-icon.chrome {
  background: linear-gradient(135deg, #8b4a3c, #6f3a2e);
}
.corten-protection .protection-card:hover .element-icon {
  transform: scale(1.1) rotate(5deg);
}
.corten-protection .protection-card h3 {
  font-size: 1.5rem;
  color: #2c2c2c;
  margin-bottom: 1rem;
}
.corten-protection .protection-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

.corten-process {
  padding: clamp(4rem, 8vw, 8rem) 2rem;
  background: white;
}
.corten-process h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #2c2c2c;
  margin-bottom: 4rem;
  position: relative;
  display: inline-block;
  width: 100%;
}
.corten-process h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #d4753c, #8b4a3c);
  border-radius: 2px;
}
.corten-process .process-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.corten-process .process-timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #d4753c, #8b4a3c);
}
@media (max-width: 768px) {
  .corten-process .process-timeline::before {
    left: 20px;
  }
}
.corten-process .timeline-item {
  position: relative;
  padding-left: 100px;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .corten-process .timeline-item {
    padding-left: 70px;
  }
}
.corten-process .timeline-item:last-child {
  margin-bottom: 0;
}
.corten-process .timeline-item .timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 2;
}
@media (max-width: 768px) {
  .corten-process .timeline-item .timeline-marker {
    width: 40px;
    height: 40px;
  }
}
.corten-process .timeline-item .timeline-marker.phase1 {
  background: linear-gradient(135deg, #e8914f, #d4753c);
}
.corten-process .timeline-item .timeline-marker.phase2 {
  background: linear-gradient(135deg, #c86940, #b8613a);
}
.corten-process .timeline-item .timeline-marker.phase3 {
  background: linear-gradient(135deg, #a0643c, #8b4a3c);
}
.corten-process .timeline-item .timeline-content {
  background: linear-gradient(135deg, #f5f1ed 0%, #faf8f5 100%);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.corten-process .timeline-item .timeline-content h3 {
  font-size: 1.5rem;
  color: #8b4a3c;
  margin-bottom: 1rem;
}
.corten-process .timeline-item .timeline-content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.corten-brut {
  padding: clamp(4rem, 8vw, 6rem) 2rem;
  background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
}
.corten-brut .brut-content {
  max-width: 900px;
  margin: 0 auto;
}
.corten-brut .brut-content h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #2c2c2c;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  width: 100%;
}
.corten-brut .brut-content h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #d4753c, #8b4a3c);
  border-radius: 2px;
}
.corten-brut .brut-content .info-box {
  background: white;
  border-left: 5px solid #d4753c;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.corten-brut .brut-content .info-box svg {
  flex-shrink: 0;
  stroke: #d4753c;
  stroke-width: 2px;
  margin-top: 2px;
}
.corten-brut .brut-content .info-box p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}
.corten-brut .brut-content > p {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  text-align: center;
}

.corten-evolution {
  padding: clamp(4rem, 8vw, 8rem) 2rem;
  background: white;
}
.corten-evolution h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #2c2c2c;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
  width: 100%;
}
.corten-evolution h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #d4753c, #8b4a3c);
  border-radius: 2px;
}
.corten-evolution .subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin: 2rem 0 4rem;
}
.corten-evolution .evolution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}
@media (max-width: 1024px) {
  .corten-evolution .evolution-grid {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .corten-evolution .evolution-grid {
    grid-template-columns: 1fr;
  }
}
.corten-evolution .evolution-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: 12px 12px 0 0;
  display: block;
}
.corten-evolution .evolution-card h3 {
  font-size: 1.5rem;
  color: #8b4a3c;
  padding: 1.5rem 1.5rem 0.5rem;
  margin: 0;
  font-weight: 600;
}
.corten-evolution .evolution-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  padding: 0 1.5rem 1.5rem;
  margin: 0;
}
.corten-evolution .evolution-info {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.corten-evolution .evolution-info p {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.corten-evolution .evolution-info .highlight {
  font-size: 1.1rem;
  font-weight: 600;
  color: #8b4a3c;
}

.corten-cicatrisation {
  padding: clamp(4rem, 8vw, 6rem) 2rem;
  background: linear-gradient(135deg, #8b4a3c 0%, #6f3a2e 100%);
  color: white;
}
.corten-cicatrisation .cicatrisation-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.corten-cicatrisation .cicatrisation-content .icon-wrapper {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  backdrop-filter: blur(10px);
}
.corten-cicatrisation .cicatrisation-content .icon-wrapper svg {
  stroke-width: 2px;
}
.corten-cicatrisation .cicatrisation-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1.5rem;
}
.corten-cicatrisation .cicatrisation-content p {
  color: #f9f9f9;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.8;
  opacity: 0.95;
}
.corten-cicatrisation .cicatrisation-content p strong {
  font-weight: 600;
}

.corten-precautions {
  padding: clamp(4rem, 8vw, 8rem) 2rem;
  background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
}
.corten-precautions h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #2c2c2c;
  margin-bottom: 4rem;
  position: relative;
  display: inline-block;
  width: 100%;
}
.corten-precautions h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #d4753c, #8b4a3c);
  border-radius: 2px;
}
.corten-precautions .precautions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .corten-precautions .precautions-grid {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .corten-precautions .precautions-grid {
    grid-template-columns: 1fr;
  }
}
.corten-precautions .precaution-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}
.corten-precautions .precaution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.corten-precautions .precaution-card.warning-card {
  border: 2px solid #ffa366;
}
.corten-precautions .precaution-card .card-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: all 0.3s ease;
}
.corten-precautions .precaution-card .card-icon svg {
  stroke-width: 1.5px;
}
.corten-precautions .precaution-card .card-icon.reception {
  background: linear-gradient(135deg, #f5f1ed, #faf8f5);
  color: #8b4a3c;
}
.corten-precautions .precaution-card .card-icon.maintenance {
  background: linear-gradient(135deg, #f5f1ed, #faf8f5);
  color: #8b4a3c;
}
.corten-precautions .precaution-card .card-icon.warning {
  background: linear-gradient(135deg, #ffa366, #ff8c42);
  color: white;
}
.corten-precautions .precaution-card:hover .card-icon.reception, .corten-precautions .precaution-card:hover .card-icon.maintenance {
  background: linear-gradient(135deg, #d4753c, #b8613a);
  color: white;
}
.corten-precautions .precaution-card:hover .card-icon {
  transform: scale(1.05);
}
.corten-precautions .precaution-card h3 {
  font-size: 1.5rem;
  color: #2c2c2c;
  margin-bottom: 1rem;
}
.corten-precautions .precaution-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

.corten-cta {
  padding: clamp(4rem, 8vw, 6rem) 2rem;
  background: linear-gradient(135deg, #8b4a3c 0%, #6f3a2e 100%);
  color: white;
  text-align: center;
}
.corten-cta .cta-content {
  max-width: 700px;
  margin: 0 auto;
}
.corten-cta .cta-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1.5rem;
}
.corten-cta .cta-content p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: 2.5rem;
}
.corten-cta .cta-content .cta-button {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: white;
  color: #8b4a3c;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.corten-cta .cta-content .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  background: #d4753c;
  color: white;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s ease;
  cursor: pointer;
}
.btn--primary {
  background: #dfaf4f;
  color: #fff;
}
.btn--primary:hover {
  background: rgb(255, 8, 210);
}

.box {
  display: grid;
  grid-template-columns: 64px 1fr;
  position: relative;
  background: #f6f6f6;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .box {
    grid-template-columns: 48px 1fr;
    border-radius: 16px;
  }
}
@media (max-width: 480px) {
  .box {
    grid-template-columns: 40px 1fr;
    border-radius: 12px;
  }
}

.box-icon {
  display: grid;
  place-items: center;
  color: #dfaf4f;
}
.box-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .box-icon img {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 480px) {
  .box-icon img {
    width: 20px;
    height: 20px;
  }
}

.box-label {
  white-space: nowrap;
  display: flex;
  align-items: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 16px;
  padding-top: 16px;
  font-weight: 500;
  color: #555;
}
@media (max-width: 768px) {
  .box-label {
    font-size: 14px;
    padding-top: 12px;
  }
}
@media (max-width: 480px) {
  .box-label {
    font-size: 12px;
    padding-top: 8px;
  }
}

.box-title {
  height: 64px;
  display: flex;
  align-items: center;
  padding-left: 16px;
  font-size: 14px;
  letter-spacing: 0.125em;
  color: #555;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .box-title {
    height: 48px;
    padding-left: 12px;
    font-size: 12px;
    letter-spacing: 0.1em;
  }
}
@media (max-width: 480px) {
  .box-title {
    height: 40px;
    padding-left: 8px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }
}

.box-image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 18px 0 18px 0;
  overflow: hidden;
}
.box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .box-image {
    border-radius: 14px 0 14px 0;
  }
}
@media (max-width: 480px) {
  .box-image {
    border-radius: 10px 0 10px 0;
  }
}

.studio-button {
  position: absolute;
  bottom: 12px; /* Réduit de 16px à 12px */
  right: 12px; /* Réduit de 34px à 12px */
  display: flex;
  align-items: center;
  background: #bf8821;
  color: white;
  padding: 6px 8px; /* Réduit de 8px 10px à 6px 8px */
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); /* Ombre réduite */
  transition: 0.35s ease all;
  overflow: hidden;
  max-width: 32px; /* Réduit de 40px à 32px */
  font-size: 12px; /* Ajout pour réduire le texte */
}
@media (max-width: 768px) {
  .studio-button {
    display: none;
  }
}

.studio-button-icon {
  position: relative;
  top: 1px;
  font-size: 14px; /* Ajout pour réduire l'icône */
}

.studio-button-label {
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 6px; /* Réduit de 8px à 6px */
  opacity: 0;
  transform: translateX(10px);
  transition: 0.25s ease all;
  font-size: 11px; /* Ajout pour réduire le texte du label */
}

@media (hover: hover) and (min-width: 769px) {
  .box:hover .studio-button {
    max-width: 100%;
  }
  .box:hover .studio-button-label {
    opacity: 1;
    transform: translateX(0);
    transition: 0.25s 0.1s ease-in opacity, 0.15s 0.1s cubic-bezier(0.175, 0.885, 0.32, 1.275) transform;
  }
}
@media (hover: hover) {
  .box:hover .studio-button {
    max-width: 100%;
  }
  .box:hover .studio-button-label {
    opacity: 1;
    transform: translateX(0);
    transition: 0.25s 0.1s ease-in opacity, 0.15s 0.1s cubic-bezier(0.175, 0.885, 0.32, 1.275) transform;
  }
}
@media (hover: none) {
  .studio-button {
    max-width: 100%;
  }
  .studio-button-label {
    opacity: 1;
    transform: translateX(0);
  }
}
.product-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.product-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.card-image {
  width: 100%;
  height: clamp(250px, 240px + 3.125vw, 300px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.card-content {
  padding: 20px;
}

.product-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.product-collection {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.commitment-card {
  text-align: center;
  padding: 1.2rem;
  border-radius: 10px;
  background-color: rgb(247, 247, 247);
  filter: drop-shadow(2px 1px 2px rgba(0, 0, 0, 0.4));
}
.commitment-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
}
.commitment-card__icon img {
  width: 70%;
  height: 100%;
  object-fit: contain;
}
.commitment-card__title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 100;
  text-align: left;
}
.commitment-card__description {
  color: #666;
  line-height: 1.2;
  text-align: left;
}

.featured-products {
  padding: 20px 20px;
  background: #f9f9f9;
}
@media (max-width: 768px) {
  .featured-products {
    padding: 5px 15px;
  }
}
.featured-products__inner {
  max-width: 1800px;
  margin: 0 auto;
}
.featured-products__title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 10px;
  color: #222;
}
@media (max-width: 1024px) {
  .featured-products__title {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .featured-products__title {
    font-size: 1.6rem;
  }
}
.featured-products__subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .featured-products__subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }
}

.products-carousel {
  position: relative;
  padding: 0;
}

.carousel-container {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
  padding-bottom: 30px;
  scrollbar-width: thin;
  scrollbar-color: #dfaf4f #e0e0e0;
}
.carousel-container::-webkit-scrollbar {
  height: 8px;
  display: block;
}
@media (max-width: 768px) {
  .carousel-container::-webkit-scrollbar {
    height: 6px;
  }
}
.carousel-container::-webkit-scrollbar-track {
  background: #e0e0e0;
  border-radius: 10px;
  margin: 0 20px;
}
@media (max-width: 768px) {
  .carousel-container::-webkit-scrollbar-track {
    margin: 0 15px;
  }
}
.carousel-container::-webkit-scrollbar-thumb {
  background: #dfaf4f;
  border-radius: 10px;
  transition: background 0.3s ease;
}
.carousel-container::-webkit-scrollbar-thumb:hover {
  background: rgb(212.3846153846, 154.4615384615, 38.6153846154);
}
.carousel-container:active {
  cursor: grabbing;
}
@media (max-width: 768px) {
  .carousel-container {
    padding-bottom: 20px;
  }
}

.carousel-track {
  display: flex;
  gap: 24px;
  padding: 0 20px 20px;
}
@media (max-width: 768px) {
  .carousel-track {
    gap: 20px;
    padding: 0 15px 15px;
  }
}

.product-carousel-card {
  min-width: 350px;
  max-width: 400px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  scroll-snap-align: start;
  flex-shrink: 0;
}
.product-carousel-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.product-carousel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}
@media (min-width: 1920px) {
  .product-carousel-card {
    min-width: 350px;
    max-width: 400px;
  }
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .product-carousel-card {
    min-width: 320px;
    max-width: 380px;
  }
}
@media (max-width: 1024px) {
  .product-carousel-card {
    min-width: 300px;
    max-width: 350px;
  }
}
@media (max-width: 768px) {
  .product-carousel-card {
    min-width: 280px;
    max-width: 320px;
  }
}
@media (max-width: 480px) {
  .product-carousel-card {
    min-width: 260px;
    max-width: 300px;
  }
}

.product-carousel-image {
  width: 100%;
  height: 450px;
  overflow: hidden;
}
.product-carousel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
@media (min-width: 1025px) and (max-width: 1600px) {
  .product-carousel-image {
    height: 400px;
  }
}
@media (max-width: 1024px) {
  .product-carousel-image {
    height: 380px;
  }
}
@media (max-width: 768px) {
  .product-carousel-image {
    height: 350px;
  }
}
@media (max-width: 480px) {
  .product-carousel-image {
    height: 200px;
  }
}

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

.product-carousel-content {
  padding: 28px;
}
.product-carousel-content h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: #333;
}
@media (max-width: 480px) {
  .product-carousel-content h3 {
    font-size: 1.15rem;
  }
}
.product-carousel-content .product-type {
  font-size: 1rem;
  color: #666;
  margin: 0;
}
@media (max-width: 480px) {
  .product-carousel-content .product-type {
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  .product-carousel-content {
    padding: 22px;
  }
}

.carousel-btn {
  display: none;
}

.nav_item_with_mega {
  position: static;
}

.mega_menu {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  background: #111;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  padding: 3rem 0;
  top: 80px;
}

.menucollections {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  background: #f9f9f9;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  padding: 3rem 0;
  top: 80px;
}

.nav_item_with_mega:hover .mega_menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega_menu_container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  row-gap: 1.5rem;
  column-gap: 4rem;
}

.collection_item {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.2rem;
  cursor: pointer;
  border-radius: 8px;
}

.collection_item:hover {
  background-color: #e1dddd;
}

.collection_item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.icon-product {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
  color: rgb(73, 72, 72);
}

.collection_item_content {
  display: flex;
  flex-direction: column;
}

.collection_item h3 {
  font-size: 1rem;
  color: #111;
  margin: 0 0 0.25rem 0;
  font-weight: 500;
}

.product-item {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding-right: 0.6rem;
  cursor: pointer;
  border-radius: 8px;
}

.product-item:hover {
  background-color: #dfaf4f;
}

.product-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.icon-product {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
  color: #f9f9f9;
  filter: drop-shadow(2px 1px 2px rgba(0, 0, 0, 0.4));
}

.collection_item_content {
  display: flex;
  flex-direction: column;
}

.product-item h3 {
  font-size: 1rem;
  color: #f9f9f9;
  margin: 0 0 0.25rem 0;
  font-weight: 500;
  filter: drop-shadow(2px 1px 2px rgba(0, 0, 0, 0.4));
}

@media (max-width: 768px) {
  .nav_links {
    display: none;
  }
  .nav_burger {
    display: flex;
  }
  .mega_menu_container {
    grid-template-columns: 1fr;
  }
}
.surmesure-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
  background-color: #e0e0e0;
}

/* 👇 Ajoutez cette règle pour les images */
.surmesure-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Remplit le conteneur en gardant les proportions */
  display: block; /* Évite les espaces blancs en dessous */
}

.image-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(227, 226, 226, 0.9);
  overflow: auto;
}
@media (max-width: 768px) {
  .image-modal {
    padding-top: 300px;
  }
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #111;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .close-modal {
    top: 250px;
    right: 30px;
  }
}

.close-modal:hover {
  color: #dfaf4f;
}

.project-images img {
  cursor: pointer; /* Indique que l'image est cliquable */
}

/* Bouton hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: #38404b;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger:hover span {
  background: #000;
}

/* Overlay du menu mobile */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Contenu du menu */
.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 400px;
  height: 100%;
  background: #111;
  padding: 80px 40px 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: translateX(0);
}

/* Bouton fermer */
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  color: #f9f9f9;
  transition: transform 0.3s ease, color 0.3s ease;
}

.mobile-menu-close:hover {
  transform: rotate(90deg);
  color: #dfaf4f;
}

/* Navigation mobile */
.mobile-nav {
  margin-top: 20px;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav li {
  margin-bottom: 8px;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active .mobile-nav li {
  opacity: 1;
  transform: translateX(0);
}

/* Délai d'animation pour chaque élément */
.mobile-nav li:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-nav li:nth-child(2) {
  transition-delay: 0.15s;
}

.mobile-nav li:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-nav li:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-nav li:nth-child(5) {
  transition-delay: 0.3s;
}

.mobile-nav li:nth-child(6) {
  transition-delay: 0.35s;
}

.mobile-nav a {
  display: block;
  padding: 15px 20px;
  color: #f9f9f9;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: #dfaf4f;
  color: #f9f9f9;
  transform: translateX(5px);
}

.mobile-submenu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 20px;
  background: transparent;
  border: none;
  color: #f9f9f9;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: left;
}

.mobile-submenu-toggle:hover {
  background: #dfaf4f;
}

.mobile-arrow {
  transition: transform 0.3s ease;
  font-size: 0.8rem;
}

.mobile-submenu.active .mobile-arrow {
  transform: rotate(180deg);
}

.mobile-submenu-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 20px;
}

.mobile-submenu.active .mobile-submenu-content {
  max-height: 1000px;
}

.mobile-submenu-content li {
  margin-bottom: 5px;
}

.mobile-submenu-content a {
  padding: 10px 15px;
  font-size: 0.95rem;
  font-weight: 400;
  color: #f9f9f9;
}

/* Responsive : afficher sur mobile */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}
@media (max-width: 1024px) {
  .hamburger {
    display: flex;
  }
  /* Cache la nav desktop sur mobile */
  header > nav {
    display: none;
  }
}
/* Empêcher le scroll quand le menu est ouvert */
body.menu-open {
  overflow: hidden;
}

/*# sourceMappingURL=styles.css.map */
