*{
    margin:0px;
    padding: 0px;
    box-sizing: border-box;
}

/* Navbar --------------------------- */

@font-face {
    font-family: 'Raleway';
    src: url('../fonts/raleway/Raleway-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 999;
  padding: 1.5rem 4rem;
  border-bottom: 1px solid #e5e5e5;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
}

.search-overlay.open {
  transform: translateY(0);
}

.search-container {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  gap: 1rem;
}

.search-input {
  flex: 1;
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  border: none;
  border-bottom: 1px solid #1a1a1a;
  padding: 8px 0;
  outline: none;
  color: #1a1a1a;
  background: transparent;
}

.search-input::placeholder {
  color: #999;
  font-size: 14px;
}

.search-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.search-close svg {
  width: 22px;
  height: 22px;
  stroke: #1a1a1a;
  fill: none;
  stroke-width: 1.5;
}

.search-close:hover svg {
  stroke: #c9a96e;
}

.promo-bar {
  background: #1a1a1a;
  color: #fff;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0;
  height: 34px;
  overflow: hidden;
  font-family: 'Raleway', sans-serif;
}

.promo-track {
  display: flex;
  flex-direction: column;
  animation: slideUp 7s infinite;
}

.promo-track span {
  height: 34px;
  line-height: 34px;
  display: block;
}

@keyframes slideUp {
  0%   { transform: translateY(0); }
  35%  { transform: translateY(0); }
  45%  { transform: translateY(-34px); }
  80%  { transform: translateY(-34px); }
  90%  { transform: translateY(-68px); }
  100% { transform: translateY(-68px); }
}


nav { 
  border-bottom: 1px solid #e5e5e5;
  top: 0;
  z-index: 100;
  background: #fff;
 }

.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 4rem 20px 4rem;
}

.nav-links { 
    display: flex; 
    justify-content: center;
    gap: 2rem; 
    list-style: none; 
    padding: 5px 0 11.5px 0;
}
.nav-links a:hover {
  color: #c9a96e;
}
.nav-links a {
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1a1a;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  padding: 10px 2rem;
}

.logo img { height: 130px; object-fit: contain; }

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex:1;
  padding-left: 10%;
}

.logo img { 
  height: 140px; 
  object-fit: contain; 
}

.nav-icons { display: flex; align-items: center; gap: 2.03rem; }
.nav-icons svg {
  width: 20px; height: 20px;
  stroke: #1a1a1a; fill: none; stroke-width: 1.5;
  cursor: pointer;
}
.nav-icons svg:hover {
  stroke: #c9a96e;
}
.nav-icons a { display: flex; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: #1a1a1a; }

.mobile-menu { display: none; flex-direction: column; padding: 1rem 2rem; gap: 1rem; border-top: 1px solid #e5e5e5; }
.mobile-menu a { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: #1a1a1a; text-decoration: none; }
.mobile-menu.open { display: flex; }

@media (max-width: 700px) {
    
  .search-overlay {
    padding: 1rem 1.5rem;
  }

  .nav-links { display: none; }
  .hamburger { display: flex; }
  .logo img { height: 70px; }
  .logo { padding-left: 0; }
  .nav-top { padding: 10px 1rem; }
  .mobile-menu,
  .mobile-menu a,
  .mobile-menu-dropdown-trigger,
  .mobile-menu-submenu a {
  font-family: 'Raleway', sans-serif;
}

}

.nav-links li a {
  position: relative;
  padding-bottom: 4px;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -12.5px;
  left: 50%;
  transform: translateX(-50%) scaleY(0);
  transform-origin: bottom;
  width: calc(100% - 3.7rem);
  height: 4px;
  background: #c9a96e;
  transition: transform 0.3s ease;
}

.nav-links li a:hover::after {
  transform: translateX(-50%) scaleY(1);
}

.nav-icons a:hover svg {
  stroke: #c9a96e;
}




.nav-links {
  display: flex;
  align-items: center; /* 🔥 FIX GLOBAL */
}

.nav-links li {
  display: flex;
  align-items: center;
}

.nav-item-dropdown {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  display: flex;
  flex-direction: row;
  top: 139%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  min-width: 480px;
  padding: 1.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 0;
  z-index: 100;
}


.nav-item-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-titre {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c9a96e;
    padding: 0 1.5rem 0.8rem;
    margin-bottom: 0.5rem;
    display: block;
    text-decoration: underline;
    text-decoration-color: #c9a96e;
    text-underline-offset: 8px;
    text-decoration-thickness: 1.5px;
}

.nav-dropdown-item {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 13px !important;
    color: #555;
    text-decoration: none;
    padding: 0.65rem 1.5rem !important;
    transition: color 0.2s ease, padding-left 0.2s ease;
    text-transform: none;
    letter-spacing: 0;
}

.nav-dropdown-item:hover {
    color: #c9a96e;
    text-decoration: underline;
    text-decoration-color: #c9a96e;
    text-underline-offset: 8px;
    text-decoration-thickness: 1.5px;
}

.nav-dropdown-item::after,
.nav-dropdown-footer::after {
    display: none;
}

.nav-dropdown-image {
    width: 180px;
    flex-shrink: 0;
    position: relative;
    background: #f9f5f0;
}

.nav-dropdown-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-dropdown-image p {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    color: #1a1a1a;
    letter-spacing: 0.1em;
}

.nav-dropdown-links {
    flex: 1;
    padding: 1.5rem 0;
}




/* footer --------------------------- */

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 0 0rem;
  margin-bottom: 0;
}

.footer-social-link {
  color: #1a1a1a;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-social-link svg {
  width: 22px;
  height: 22px;
}

.footer-social-link:hover {
  color: #c9a96e;
}

.newsletter-section {
  padding: 0rem 2rem;
  text-align: center;
}

.newsletter-content {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.newsletter-section h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2.3px;
  background: #c9a96e;
  animation: lineGrow 2s ease-in-out infinite;
}

.newsletter-section p {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  color: #555;
  line-height: 1.9;
  margin: 1rem 0 2rem;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  padding: 12px 16px;
  border: 1px solid #e5e5e5;
  border-right: none;
  background: #fff;
  color: #1a1a1a;
  outline: none;
  transition: border 0.3s ease;
}

.newsletter-form input:focus { border-color: #c9a96e; }
.newsletter-form input::placeholder { color: #aaa; }

.newsletter-form button {
  background: #1a1a1a;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 12px 1.5rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.newsletter-form button:hover { background: #c9a96e; }

.newsletter-msg.succes { color: #27ae60; }
.newsletter-msg.info { color: #c9a96e; }

.newsletter-section span {
  font-weight: 300;
  font-style: normal;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
}

@keyframes lineGrow {
  0%   { width: 60px; height: 2.3px; }
  50%  { width: 80px; height: 2.3px; }
  100% { width: 60px; height: 2.3px; }
}

.newsletter-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  display: inline-block;
  position: relative;
}


.footer-features {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;    
  gap: 2rem;
  padding: 3rem 4rem 5rem 4rem;
  border-bottom: 1px solid #e5e5e5;
  text-align: center;
}

.footer-feature {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-feature svg {
  width: 40px;
  height: 40px;
  fill: #1a1a1a;
  margin-bottom: 1rem;
}

.footer-feature h4 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
  font-family: 'Raleway', sans-serif;
}

.footer-feature p {
  font-size: 12px;
  color: #555;
  line-height: 1.6;
  font-family: 'Raleway', sans-serif;
}



footer {
  background: #fff;
  border-top: 1px solid #e5e5e5;
  padding: 2rem 4rem 1.5rem;
  font-family: 'Raleway', sans-serif;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e5e5e5;
  padding-top : 3rem;
}

.footer-brand img {
  height: 100px;
  object-fit: contain;
  margin-bottom: 1rem;
  padding-left: 7%;
}

.footer-brand p {
  font-size: 13px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.3rem;
}

.footer-payments {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: nowrap;
  width: fit-content;
  padding-top: 2%;
}

.footer-payments img {
  height: 22px;
  width: auto;
}

.footer-menu h4,
.footer-infos h4 {
  font-size: 12px;
  letter-spacing: 0.15em;
  font-weight: 500;
  margin-bottom: 1.2rem;
  color: #1a1a1a;
}

.footer-menu ul,
.footer-infos ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-menu a,
.footer-infos a {
  font-size: 13px;
  color: #555;
  text-decoration: none;
}

.footer-menu a:hover,
.footer-infos a:hover {
  color: #c9a96e;
}

.footer-bottom {
  padding-top: 1.5rem;
  text-align: center;
  font-size: 12px;
  color: #999;
}

.left-footer-menu{
  padding-left: 5rem;
}


.footer-brand > div {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 2rem;
}



@media (max-width: 700px) {
    
  .promo-bar {
  font-size: 10px;
  letter-spacing: 0.08em;
  }
  
  .newsletter-form input {
  border-right: 1px solid #e5e5e5;
  }

  .newsletter-section { padding: 3rem 1.5rem; }
  
  .newsletter-form { 
   flex-direction: column;
   gap: 0.6rem;
   }

  .nav-links { display: none; }

  .footer-brand > div {
    flex-direction: column;
    gap: 0rem;
    align-items: center;
  }

  .footer-brand img {
    margin-bottom: 0;
    display: block;
    margin: 0 auto 1rem;
    padding-left: 0; 
  }

  .newsletter-content p {
    margin: 0.5rem 0 1rem;
  }

  .footer-features {
    flex-wrap: wrap;
    padding: 2rem 1.5rem;
  }
  .footer-feature {
    flex: 0 0 calc(50% - 1rem);
  }

  footer { padding: 2rem 1.5rem 1rem; }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-brand { text-align: center; }
  .footer-menu { text-align: center; }
  .footer-infos { text-align: center; }


    .newsletter-section { 
    padding: 1.5rem 1.5rem; /* au lieu de 3rem 1.5rem */
  }

    .footer-payments {
    flex-direction: row !important;
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
  }

  nav {
  position: sticky;
  top: 0;
}

  .left-footer-menu {
    padding-left: 0;
  }

  .mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 999;
  border-top: 1px solid #e5e5e5;
  /*box-shadow: 0 8px 24px rgba(0,0,0,0.08);*/
}

.nav,
.nav-top,
.mobile-menu {
  background-color: #fff !important;
}

.mobile-menu a,
.mobile-menu-dropdown-trigger a {
  font-size: 14px;
}

.mobile-menu-submenu a {
  font-size: 13px !important;
}

.mobile-menu-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.mobile-menu-dropdown-trigger a {
    pointer-events: none;
}

.mobile-menu-submenu {
    display: none;
    flex-direction: column;
    gap: 0.8rem;
    padding-left: 1rem;
    margin-top: 0.5rem;
    border-left: 2px solid #c9a96e;
    margin-left: 0.5rem;
}

.mobile-menu-submenu.open {
    display: flex;
}

.mobile-menu-submenu a {
    font-size: 12px !important;
    color: #555 !important;
}
}



/* ===== QHD 2560px ===== */
@media (min-width: 2560px) {
   nav {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav-top,
  .nav-links {
    width: 100%;
    max-width: 1900px;
  }

  .nav-links {
    justify-content: center;
  }    

  .search-overlay {
    padding: 2rem 6rem;
  }

  .search-container {
    max-width: 1100px;
  }

  .search-input {
    font-size: 24px;
    padding: 12px 0;
  }

  .search-input::placeholder {
    font-size: 22px;
  }

  .search-close svg {
    width: 34px;
    height: 34px;
  }

  .promo-bar {
    font-size: 16px;
    height: 48px;
  }
  .promo-track span {
    height: 48px;
    line-height: 48px;
  }

  .nav-top {
    padding: 15px 6rem 25px 6rem;
  }
  .logo img {
    height: 200px;
  }
  .nav-links a {
    font-size: 20px;
  }
  .nav-icons svg {
    width: 28px;
    height: 28px;
  }

  .footer-features {
    padding: 4rem 6rem 6rem 6rem;
  }
  .footer-feature svg {
    width: 56px;
    height: 56px;
  }
  .footer-feature h4 {
    font-size: 20px;
  }
  .footer-feature p {
    font-size: 16px;
  }

  footer {
    padding: 3rem 6rem 2rem;
  }
  .footer-brand p,
  .footer-menu a,
  .footer-infos a {
    font-size: 16px;
  }
  .footer-menu h4,
  .footer-infos h4 {
    font-size: 16px;
  }
  .footer-brand img {
    height: 140px;
  }
  .footer-payments img {
    height: 32px;
  }
  .newsletter-section h2 {
    font-size: 2.2rem;
  }
  .newsletter-section p {
    font-size: 16px;
  }
  .newsletter-form input,
  .newsletter-form button {
    font-size: 15px;
    padding: 16px 20px;
  }
  .footer-bottom {
    font-size: 15px;
  }
  
}

/* ===== 4K 3840px ===== */
@media (min-width: 3840px) {
   nav {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav-top,
  .nav-links {
    width: 100%;
    max-width: 3000px;
  }

  .nav-links {
    justify-content: center;
  }    
    
  .promo-bar {
    font-size: 22px;
    height: 64px;
  }
  .promo-track span {
    height: 64px;
    line-height: 64px;
  }

  .nav-top {
    padding: 20px 10rem 35px 10rem;
  }
  .logo img {
    height: 280px;
  }
  .nav-links a {
    font-size: 28px;
    padding: 10px 2.5rem;
  }
  .nav-links {
    padding: 10px 0 18px 0;
  }
  .nav-icons svg {
    width: 42px;
    height: 42px;
  }
  .nav-icons {
    gap: 3rem;
  }


  .nav-icons span[style*="bottom:9px"] {
    width: 26px !important;
    height: 26px !important;
    right: -20px !important;
    bottom: 16px !important;
  }



  .footer-features {
    padding: 6rem 10rem 8rem 10rem;
    gap: 4rem;
  }
  .footer-feature svg {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
  }
  .footer-feature h4 {
    font-size: 28px;
    margin-bottom: 1rem;
  }
  .footer-feature p {
    font-size: 22px;
  }

  footer {
    padding: 4rem 10rem 3rem;
  }
  .footer-top {
    gap: 6rem;
    padding-top: 4rem;
  }
  .footer-brand p,
  .footer-menu a,
  .footer-infos a {
    font-size: 22px;
    line-height: 2;
  }
  .footer-menu h4,
  .footer-infos h4 {
    font-size: 22px;
    letter-spacing: 0.15em;
  }
  .footer-menu ul,
  .footer-infos ul {
    gap: 1.4rem;
  }
  .footer-brand img {
    height: 200px;
  }
  .footer-payments img {
    height: 46px;
  }
  .newsletter-section h2 {
    font-size: 3.5rem;
  }
  .newsletter-section p {
    font-size: 22px;
  }
  .newsletter-content {
    max-width: 800px;
  }
  .newsletter-form input,
  .newsletter-form button {
    font-size: 20px;
    padding: 20px 28px;
  }
  .newsletter-form {
    max-width: 700px;
  }
  .footer-bottom {
    font-size: 20px;
    padding-top: 2.5rem;
  }
  .footer-social-link svg {
    width: 40px;
    height: 40px;
  }
  .footer-social {
    gap: 3rem;
    padding: 3rem 0 0;
  }
  
}


.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/*.footer-feature h3 {*/
 /* font-size: 0.83em;    taille par défaut du h4 navigateur 
/*  font-weight: bold;*/
/*}*/