/*
Theme Name: MayFair Watches
Theme URI: https://mayfairwatches.com
Author: MayFair Watches
Author URI: https://mayfairwatches.com
Description: Thème WordPress luxueux pour MayFair Watches - Manufacture horlogère depuis 1875. Design élégant avec couleurs bleu marine et doré.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mayfair-watches
Tags: luxury, watches, e-commerce, elegant, blue, gold
*/

/* ===== COLOR SYSTEM ===== */
:root {
  /* Brand Colors from Logo */
  --navy-deep: #0A1628;
  --navy-rich: #0F1E33;
  --gold-luxury: #D4A574;
  --gold-light: #E8C9A0;
  --cream-white: #FFFEF9;
  
  /* Primary Backgrounds */
  --bg-primary: #FFFEF9;
  --bg-secondary: #F8F7F2;
  --bg-dark: #0A1628;
  
  /* Text Hierarchy */
  --text-primary: #1A1A1A;
  --text-secondary: #666666;
  --text-light: #999999;
  --text-white: #FFFFFF;
  --text-gold: #D4A574;
  
  /* Interactive States */
  --interactive-gold: #D4A574;
  --interactive-gold-hover: #C89A68;
  
  /* Borders */
  --border-gold: rgba(212, 165, 116, 0.3);
  --border-light: rgba(212, 165, 116, 0.15);
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* ===== TYPOGRAPHY ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

.hero-large {
  font-size: 52px;
  font-weight: 400;
  line-height: 1.2;
  font-family: 'Playfair Display', serif;
  color: var(--text-primary);
}

.hero-medium {
  font-size: 38px;
  font-weight: 400;
  line-height: 1.3;
  font-family: 'Playfair Display', serif;
  color: var(--text-primary);
}

.heading-1 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.3;
  font-family: 'Playfair Display', serif;
  color: var(--text-primary);
}

.body-large {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-primary);
}

/* ===== HEADER NAVIGATION ===== */
.luxury-top-bar {
  display: none;
}

.luxury-main-header {
  background: transparent;
  border-bottom: 1px solid rgba(212, 165, 116, 0.2);
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: none;
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.luxury-main-header.scrolled {
  background: rgba(10, 22, 40, 0.93);
  border-bottom: 1px solid rgba(212, 165, 116, 0.35);
  box-shadow: 0 4px 24px rgba(0,0,0,0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.luxury-nav-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.luxury-brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.luxury-brand-logo:hover {
  transform: scale(1.02);
}

.brand-logo-image {
  height: 55px;
  width: auto;
  filter: brightness(1.1);
  transition: filter 0.3s ease;
}

.luxury-main-menu {
  display: flex;
  align-items: center;
  gap: 56px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.luxury-menu-link {
  color: var(--text-white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 12px 0;
  position: relative;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.luxury-menu-link:after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-luxury);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.luxury-menu-link:hover,
.luxury-menu-link.current-menu-item {
  color: var(--gold-luxury);
}

.luxury-menu-link:hover:after,
.luxury-menu-link.current-menu-item:after {
  width: 100%;
}

.luxury-search-button {
  background: transparent;
  border: 1px solid var(--gold-luxury);
  color: var(--gold-luxury);
  padding: 10px 13px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 0;
}

.luxury-search-button:hover {
  background: var(--gold-luxury);
  color: var(--navy-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212, 165, 116, 0.28);
}

/* Watch icon smooth scale on hover */
.luxury-watch-icon:hover .mf-watch-svg {
  transform: scale(1.08);
  transition: transform 0.3s ease;
}
.mf-watch-svg {
  transition: transform 0.3s ease;
  display: block;
}

/* ===== HERO SECTION ===== */
.minimal-hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -100px;
  padding-top: 100px;
}

.minimal-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.85);
  transform: scale(1.08);
  transform-origin: center center;
}

.minimal-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(10, 22, 40, 0.75) 0%, 
    rgba(10, 22, 40, 0.60) 50%,
    rgba(10, 22, 40, 0.75) 100%
  );
  z-index: 1;
}

.minimal-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 20px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.minimal-hero-slogan {
  font-size: 68px;
  font-weight: 300;
  line-height: 1.25;
  color: var(--text-white);
  margin-bottom: 48px;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.minimal-cta-button {
  background: transparent;
  color: var(--text-white);
  border: 1.5px solid var(--gold-luxury);
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.minimal-cta-button:hover {
  background: var(--gold-luxury);
  color: var(--navy-deep);
  border-color: var(--gold-luxury);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 165, 116, 0.3);
}

/* ===== CONTAINER & GRID ===== */
.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 80px;
}

.section-padding {
  padding: 140px 0;
}

.section-padding-small {
  padding: 100px 0;
}

.section-header-center {
  text-align: center;
  margin-bottom: 80px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-luxury);
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
}

.grid-product-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
  margin: 60px 0;
}

/* ===== WATCH CARDS ===== */
.product-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 0px;
  padding: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.15);
  border-color: var(--gold-luxury);
}

.product-card-image {
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(.645,.045,.355,1);
}

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

.product-card-content {
  padding: 24px 20px;
}

.product-card-collection {
  font-size: 12px;
  color: var(--text-secondary);
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.product-card-title {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--text-primary);
  font-family: 'Playfair Display', serif;
}

.product-card-description {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: 12px;
  min-height: 36px;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.product-card-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  font-family: 'Montserrat', sans-serif;
}

/* ===== VALUES SECTION ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.value-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  padding: 48px 36px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 4px;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-luxury);
  box-shadow: 0 12px 48px rgba(10, 22, 40, 0.08);
}

.value-icon {
  color: var(--gold-luxury);
  margin-bottom: 28px;
  display: flex;
  justify-content: center;
  font-size: 36px;
}

.value-title {
  font-size: 24px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}

.value-description {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: transparent;
  color: var(--navy-deep);
  border: 2px solid var(--navy-deep);
  border-radius: 0px;
  padding: 18px 36px;
  min-width: 200px;
  height: 60px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  white-space: nowrap;
  height: auto;
  min-height: 60px;
  position: relative;
  z-index: 30;
  pointer-events: all;
}

.btn-primary:hover {
  background: var(--navy-deep);
  color: var(--cream-white);
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.25);
  transform: translateY(-2px);
  cursor: pointer;
}

.btn-primary:active {
  transform: translateY(1px) scale(0.97);
  box-shadow: 0 2px 8px rgba(10, 22, 40, 0.18);
  background: var(--navy-deep);
  color: var(--cream-white);
  transition: all 0.1s ease;
}

.btn-secondary {
  background: none;
  border: none;
  padding: 18px 24px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-luxury);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  pointer-events: all;
  z-index: 30;
}

.btn-secondary:after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-luxury);
  transition: width 0.4s ease;
}

.btn-secondary:hover:after {
  width: calc(100% - 30px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1400px) {
  .luxury-nav-container,
  .container {
    padding: 0 40px;
  }
  
  .luxury-main-menu {
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .luxury-main-menu {
    display: none;
  }
  
  .minimal-hero-slogan {
    font-size: 52px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .grid-product-showcase {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .minimal-hero-slogan {
    font-size: 40px;
    margin-bottom: 40px;
  }
  
  .minimal-cta-button {
    padding: 16px 36px;
    font-size: 11px;
  }
}

@media (max-width: 640px) {
  .luxury-nav-container,
  .container {
    padding: 0 20px;
  }
  
  .brand-logo-image {
    height: 40px;
  }
  
  .minimal-hero-slogan {
    font-size: 32px;
    margin-bottom: 36px;
  }
  
  .grid-product-showcase {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .section-padding {
    padding: 80px 0;
  }
  
  .btn-primary {
    width: 100%;
    min-width: auto;
  }
}

/* ===== CATALOGUE IMAGE OVERRIDES ===== */
.product-card-image {
  height: 420px;
  padding: 18px;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
  .grid-product-showcase {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 36px 0;
  }
  .product-card-image {
    height: 360px;
  }
  
}
.product-card-subtitle {
  font-size: 12px !important;
  font-weight: 400 !important;
  color: #888888 !important;
}

.footer-contact-link {
  font-size: 14px;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-contact-link:hover {
  color: #c0a47c;
  transform: translateX(2px);
}

/* ===== FOOTER CLEAN ===== */

.site-footer {
  padding: 24px 0 30px;
  border-top: none;
}

.site-footer .container {
  display: block;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.footer-section {
  min-width: 0;
}

.footer-title {
  margin: 20px 0 20px !important;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-description {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 320px;
}

.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu li {
  margin: 0 0 12px;
}

.footer-menu li:last-child {
  margin-bottom: 0;
}

.footer-menu a {
  font-size: 12px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-menu a:hover {
  color: #c0a47c;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list li {
  margin: 0;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-contact-link:hover {
  color: #c0a47c;
}

.footer-contact-icon {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--gold-luxury);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 239, 224, 0.98) 58%, rgba(235, 216, 184, 0.96) 100%);
  border: 1px solid rgba(212, 165, 116, 0.36);
  box-shadow: 0 10px 24px rgba(10, 22, 40, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.footer-contact-link:hover .footer-contact-icon {
  transform: translateY(-1px);
  border-color: rgba(212, 165, 116, 0.58);
  box-shadow: 0 14px 28px rgba(10, 22, 40, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.footer-contact-link--instagram .footer-contact-icon {
  color: var(--navy-deep);
  background: linear-gradient(135deg, rgba(255, 250, 241, 0.98) 0%, rgba(244, 228, 202, 0.98) 100%);
}

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

.footer-contact-link span {
  line-height: 1.5;
}

.footer-copyright {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  text-align: center;
}

.footer-copyright p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-description {
    max-width: none;
  }

  .footer-copyright {
    text-align: left;
  }

}

/* ===== SINGLE WATCH HERO OVERRIDE ===== */
.watch-standard-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
}



/* ===== SINGLE WATCH HERO LIKE HOME ===== */
.watch-single-hero {
  min-height: 112vh;
  margin-top: -100px;
  padding-top: 100px;
}

.watch-single-hero .watch-single-hero-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: brightness(0.88);
  transform: scale(1.02);
}

.watch-single-hero .watch-single-hero-overlay {
  background: linear-gradient(180deg,
    rgba(10, 22, 40, 0.35) 0%,
    rgba(10, 22, 40, 0.18) 45%,
    rgba(10, 22, 40, 0.45) 100%
  );
}

.watch-single-overlap-section {
  margin-top: -120px !important;
  position: relative;
  z-index: 10;
}

.watch-single-overlap-card {
  background: rgba(255, 254, 249, 0.97);
  box-shadow: 0 24px 80px rgba(10, 22, 40, 0.12);
  padding: 72px 80px;
  backdrop-filter: blur(4px);
  position: relative;
}

.watch-single-overlap-card::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, transparent 0%, rgba(255, 254, 249, 0.3) 60%, rgba(255, 254, 249, 0.97) 100%);
  pointer-events: none;
}

.watch-single-overlap-card .watch-detail-content-column {
  max-width: 920px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .watch-single-hero {
    min-height: 80vh;
    margin-top: 0;
    padding-top: 0;
  }

  .watch-single-hero .watch-single-hero-background {
    position: absolute;
    height: 100%;
  }

  .watch-single-overlap-section {
  margin-top: -120px !important;
  position: relative;
  z-index: 3;
}

  .watch-single-overlap-card {
    padding: 40px 28px;
  }
}

@media (max-width: 640px) {
  .watch-single-hero {
    min-height: 58vh;
  }

  .watch-single-overlap-section {
  margin-top: -120px !important;
  position: relative;
  z-index: 3;
}

  .watch-single-overlap-card {
    padding: 28px 20px;
  }
}


/* ===== GMT MOCKUP OVERRIDES ===== */
.footer-description { font-size: 14px; }

.gmt-mockup-hero {
  min-height: 80vh;
}

.gmt-mockup-overlap {
  margin-top: -26vh;
}

.gmt-mockup-card {
  max-width: 1320px;
  margin: 0 auto;
  padding: 60px 86px 60px;
  min-height: unset;
}

.gmt-mockup-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 560px;
  align-items: center;
  gap: 40px;
  margin-bottom: 34px;
}

.gmt-mockup-copy {
  max-width: 540px;
}

.gmt-mockup-favoris {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
  color: #2d6a4f;
  text-decoration: none;
  letter-spacing: 0.3px;
  margin-bottom: 22px;
}

.gmt-mockup-favoris:hover {
  opacity: 0.75;
}

.gmt-mockup-collection {
  font-size: 12px;
  color: var(--text-secondary);
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 18px;
}

.gmt-mockup-title {
  font-size: clamp(48px, 5.4vw, 84px);
  line-height: 1.02;
  font-weight: 400;
  font-family: 'Playfair Display', serif;
  color: var(--text-primary);
  margin: 0 0 12px;
}

.gmt-mockup-ref {
  font-size: 20px;
  color: var(--text-secondary);
  line-height: 1.45;
  margin: 0 0 12px;
}

.gmt-mockup-price {
  font-size: 34px;
  line-height: 1.2;
  font-family: 'Playfair Display', serif;
  color: var(--text-primary);
  margin: 0 0 34px;
}

.gmt-mockup-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: nowrap;
  overflow: visible;
  position: relative;
  z-index: 30;
  pointer-events: all;
}

.gmt-mockup-link {
  padding: 18px 0 !important;
}

.gmt-mockup-packshot {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gmt-mockup-packshot img {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 35px rgba(10,22,40,0.18));
}

.gmt-mockup-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 34px;
}

.gmt-mockup-bottom .watch-detail-content-column {
  max-width: 100%;
  margin: 0;
}

@media (max-width: 1200px) {
  .gmt-mockup-card {
    padding: 68px 56px 56px;
  }

  .gmt-mockup-top {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 44px;
  }

  .gmt-mockup-packshot img {
    max-width: 300px;
  }
}

@media (max-width: 900px) {
  .gmt-mockup-hero {
    min-height: 90vh;
    margin-top: 0;
    padding-top: 0;
  }

  .gmt-mockup-overlap {
    margin-top: -64px;
  }

  .gmt-mockup-card {
    padding: 40px 24px 36px;
  }

  .gmt-mockup-top {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .gmt-mockup-copy {
    max-width: none;
  }

  .gmt-mockup-actions {
    justify-content: center;
  }

  .gmt-mockup-packshot {
    order: -1;
  }

  .gmt-mockup-packshot img {
    max-width: 230px;
  }
}


/* ===== GMT FINAL PERFECT ===== */
.gmt-mockup-card{position:relative;padding:60px 86px 60px;max-width:1320px;margin:0 auto;}
.gmt-mockup-packshot{position:relative;top:auto;left:auto;transform:none;z-index:3;}
.gmt-mockup-packshot img{width:100%;max-width:380px;filter:drop-shadow(0 20px 40px rgba(0,0,0,0.2));}
.gmt-mockup-copy{max-width:540px;padding-top:0;padding-left:0;}
.gmt-mockup-title{font-size:clamp(48px,5.4vw,84px);font-family:'Playfair Display',serif;margin-bottom:10px;}
.gmt-mockup-ref{color:var(--text-secondary);margin-bottom:30px;}
.gmt-mockup-divider{height:1px;background:var(--border-light);margin:30px 0;}

@media (max-width:900px){
.gmt-mockup-packshot{position:relative;top:0;transform:none;margin-bottom:20px;}
.gmt-mockup-copy{padding-top:0;text-align:center;}
.gmt-mockup-title{font-size:42px;}
}
/* FIX DUPLICATION TITRE GMT */
.watch-detail > .section-padding-small {
  display: none;
}
/* FORCE AGRANDISSEMENT MONTRE - FIXED: watch stays inside card */
.gmt-mockup-packshot {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.gmt-mockup-packshot img {
  width: 100% !important;
  max-width: 540px !important;
}
.watch-3d-section {
  padding: 110px 0 120px;
  background: var(--bg-secondary);
}

.watch-3d-card {
  background: linear-gradient(
    180deg,
    rgba(255, 254, 249, 0.96) 0%,
    rgba(248, 247, 242, 0.92) 100%
  );
  border: 1px solid rgba(212, 165, 116, 0.14);
  box-shadow:
    0 24px 70px rgba(10, 22, 40, 0.10),
    0 8px 24px rgba(10, 22, 40, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.72);
  padding: 56px 56px 48px;
}

.watch-3d-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}

.watch-3d-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-luxury);
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}

.watch-3d-title {
  font-size: 42px;
  line-height: 1.15;
  font-weight: 400;
  font-family: 'Playfair Display', serif;
  margin: 0 0 12px;
  background: linear-gradient(
    135deg,
    #c8a97e 0%,
    #e8d5a3 30%,
    #d4a574 55%,
    #b8955a 75%,
    #d4a574 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleShine 5s linear infinite;
}

.watch-3d-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.watch-3d-viewer-wrap {
  height: 640px;
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(212, 165, 116, 0.12);
}

.watch-3d-viewer {
  width: 100%;
  height: 100%;
  display: block;
}

.watch-3d-viewer::part(default-progress-bar) {
  display: none;
}

@media (max-width: 900px) {
  .watch-3d-section {
    padding: 80px 0 90px;
  }

  .watch-3d-card {
    padding: 32px 22px 28px;
  }

  .watch-3d-title {
    font-size: 32px;
  }

  .watch-3d-viewer-wrap {
    height: 420px;
  }
}

/* 3D CLOUD */
.watch-3d-cloud-section {
    margin-top: 60px;
}

.watch-3d-cloud {
    background:#f8f6f3;
    border-radius:20px;
    padding:40px;
    box-shadow: none;
}



/* ===== GMT VIDEO DISPLAY ONLY FIX ===== */
.watch-single-hero {
  position: relative;
  overflow: hidden;
}

.watch-single-hero .watch-single-hero-background,
.watch-single-video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none !important;
}

.watch-single-overlap-section,
.watch-3d-cloud-section,
.gmt-detail-section,
.site-footer {
  position: relative;
  z-index: 2;
}



/* ===== GMT PREMIUM PINNED VIDEO EFFECT ===== */
.watch-single-hero {
  min-height: 112vh;
  position: relative;
  overflow: hidden;
}

.watch-single-hero .watch-single-hero-background,
.watch-single-video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center 20%;
  z-index: 0;
  will-change: opacity, transform;
  transform: scale(1.02);
  pointer-events: none;
}

.watch-single-hero .watch-single-hero-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
  will-change: opacity;
}

.watch-single-overlap-section,
.watch-3d-cloud-section,
.gmt-detail-section,
.site-footer,
.watch-detail > .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .watch-single-hero .watch-single-hero-background,
  .watch-single-video-background,
  .watch-single-hero .watch-single-hero-overlay {
    position: absolute;
    height: 100%;
  }
}



/* ===== KEEP MENU FULLY OPAQUE ===== */
.luxury-main-header {
  background: transparent !important;
  z-index: 1000 !important;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent !important;
}



/* ===== FINAL OPAQUE WHITE FIX ===== */
.watch-single-overlap-card {
  background: #ffffff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.watch-3d-cloud {
  background: #ffffff !important;
  opacity: 1 !important;
}

.watch-3d-viewer-wrap {
  background: #ffffff !important;
}

.gmt-detail-section,
.gmt-detail-card {
  background: #ffffff !important;
}



/* ===== REMOVE REMAINING TRANSPARENCY ===== */
.watch-single-overlap-section,
.watch-3d-cloud-section,
.gmt-detail-section,
.site-footer,
.site-footer .container,
.footer-grid,
.footer-section {
  background: #ffffff !important;
  opacity: 1 !important;
}

.watch-single-hero .watch-single-hero-overlay {
  opacity: 1 !important;
}

.site-footer {
  border-top: none !important;
}

.footer-description,
.footer-menu a,
.footer-contact-link,
.footer-copyright p,
.footer-contact-link span {
  opacity: 1 !important;
}



/* ===== FINAL MICRO TRANSPARENCY CLEANUP ===== */
html,
body {
  background: #ffffff !important;
}

.watch-single-overlap-section::before,
.watch-single-overlap-section::after,
.watch-3d-cloud-section::before,
.watch-3d-cloud-section::after,
.gmt-detail-section::before,
.gmt-detail-section::after,
.site-footer::before,
.site-footer::after {
  content: none !important;
  display: none !important;
  background: transparent !important;
}

.watch-single-overlap-section,
.watch-3d-cloud-section,
.gmt-detail-section,
.full-width-watch-image,
.site-footer {
  isolation: isolate;
}

.watch-single-overlap-section .container,
.watch-3d-cloud-section .container,
.gmt-detail-section .container,
.site-footer .container {
  background: #ffffff !important;
}

.gmt-detail-section {
  box-shadow: none !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
}

.site-footer {
  margin-top: 0 !important;
  box-shadow: none !important;
}



/* ===== FINAL GAP / SEMI-TRANSPARENT STRIP FIX ===== */
.watch-single-overlap-section,
.watch-3d-cloud-section,
.gmt-detail-section,
.full-width-watch-image,
.site-footer {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  background: #ffffff !important;
}

.watch-3d-cloud-section {
  margin-top: -40px !important;
  padding-top: 40px !important;
}

.gmt-detail-section {
  margin-top: -32px !important;
  padding-top: 32px !important;
}

.site-footer {
  margin-top: 0 !important;
  padding-top: 36px !important;
}

section,
section .container,
.watch-detail,
.site-main {
  background: #ffffff !important;
}
/* ===== GMT LUXE CLEAN — VERSION PREMIUM SOFT ===== */

/* ── MONTRE : ombre douce ── */
body.single-watch .gmt-mockup-packshot img {
  width: 100% !important;
  max-width: 540px !important;
  filter:
    drop-shadow(0 24px 60px rgba(0, 0, 0, 0.18))
    drop-shadow(0 10px 24px rgba(10, 22, 40, 0.12))
    drop-shadow(0 0 30px rgba(212, 165, 116, 0.04));
  transition: filter 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  animation: watchFloat 2.5s ease-in-out infinite;
}

body.single-watch .gmt-mockup-packshot img:hover {
  filter:
    drop-shadow(0 30px 70px rgba(0, 0, 0, 0.22))
    drop-shadow(0 12px 28px rgba(10, 22, 40, 0.14))
    drop-shadow(0 0 36px rgba(212, 165, 116, 0.06));
  transform: scale(1.01) translateY(-4px);
}

/* ── POSITION MONTRE ── */
body.single-watch .gmt-mockup-packshot {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  pointer-events: none;
}

body.single-watch .gmt-mockup-packshot img {
  pointer-events: none;
}

/* ── TITRE : discret ── */
body.single-watch .gmt-mockup-title {
  font-size: 30px !important;
  letter-spacing: -0.3px;
  background: linear-gradient(
    135deg,
    #1f1f1f 0%,
    #2a2a2a 50%,
    rgba(212, 165, 116, 0.6) 60%,
    rgba(212, 165, 116, 0.5) 70%,
    #1f1f1f 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleShine 5s linear infinite;
}

/* ── CARTE : CLEAN + CHEVAUCHEMENT ── */
body.single-watch .gmt-mockup-card {
  position: relative;
  transform: translateY(-120px); /* chevauchement */
  z-index: 15;

  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.99) 0%,
    rgba(253, 253, 251, 0.985) 50%,
    rgba(250, 250, 248, 0.98) 100%
  ) !important;

  border: 1px solid rgba(0, 0, 0, 0.04);
  border-left: 3px solid rgba(212, 165, 116, 0.55);

  box-shadow:
    0 18px 50px rgba(10, 22, 40, 0.06),
    0 6px 18px rgba(10, 22, 40, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);

  overflow: visible;

  transition: box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  animation: cardEntranceSoft 1s cubic-bezier(0.4, 0, 0.2, 1) both;
}

body.single-watch .gmt-mockup-card:hover {
  box-shadow:
    0 26px 68px rgba(10, 22, 40, 0.10),
    0 10px 26px rgba(10, 22, 40, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);

  transform: translateY(-123px);
}

/* ── REFLET : très léger ── */
body.single-watch .gmt-mockup-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    130deg,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.06) 25%,
    rgba(0, 0, 0, 0.015) 50%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}

/* ── SWEEP : quasi invisible ── */
body.single-watch .gmt-mockup-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.03) 40%,
    rgba(212, 165, 116, 0.025) 50%,
    rgba(255, 255, 255, 0.02) 60%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 2;
  animation: goldSweep 6s ease-in-out 2s infinite;
}

/* ── LIGNE HAUT ── */
body.single-watch .gmt-mockup-card .gmt-mockup-overlap::before {
  content: '';
  display: block;
  width: 48px;
  height: 1.5px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 165, 116, 0.35),
    transparent
  );
  margin: 0 0 28px 0;
  animation: lineGrow 1s cubic-bezier(0.4,0,0.2,1) 0.6s both;
}

/* ── ANIMATIONS ── */
@keyframes watchFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%      { transform: translateY(-6px) rotate(0.2deg); }
  66%      { transform: translateY(-3px) rotate(-0.15deg); }
}

@keyframes titleShine {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@keyframes goldSweep {
  0%        { left: -120%; opacity: 0; }
  8%        { opacity: 1; }
  50%, 100% { left: 180%; opacity: 0; }
}

@keyframes cardEntranceSoft {
  from {
    opacity: 0;
    transform: translateY(-96px);
  }
  to {
    opacity: 1;
    transform: translateY(-120px);
  }
}

@keyframes lineGrow {
  from { width: 0; opacity: 0; }
  to   { width: 48px; opacity: 1; }
}

/* ===== GMT 3D VIEWER FIX ===== */
.gmt-watch-viewer {
  display: block;
  width: 100%;
  height: 520px;
  --progress-bar-color: #c0a47c;
  --poster-color: transparent;
}

.gmt-watch-viewer::part(default-progress-bar) {
  background-color: rgba(192, 164, 124, 0.18);
}

.watch-3d-cloud {
  overflow: hidden;
}

@media (max-width: 768px) {
  .gmt-watch-viewer {
    height: 420px;
  }
}
/* FORCE IMAGE 100% OPAQUE - sans aucune transparence */
.full-width-watch-image {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #ffffff;
}

.opaque-watch-detail-img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    opacity: 1 !important;
    filter: none !important;
    -webkit-filter: none !important;
    mix-blend-mode: normal !important;
    box-shadow: none !important;
    position: relative !important;
    z-index: 10 !important;
    isolation: isolate !important;
    background: #ffffff !important;
}
.custom-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
}
/* ====================== HEADER - FIXE EN HAUT (ne suit plus le scroll) ====================== */
.luxury-main-header {
    background: transparent;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
    padding: 22px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: none;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

/* Container du header */
.luxury-nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo centré et plus grand */
.luxury-brand-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.brand-logo-image {
    height: 78px;
    width: auto;
    filter: brightness(1.08);
    transition: all 0.3s ease;
}

.luxury-brand-logo:hover .brand-logo-image {
    filter: brightness(1.15);
    transform: scale(1.03);
}

/* Menus */
.luxury-main-menu-left .luxury-main-menu {
    display: flex;
    justify-content: flex-start;
    gap: 48px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.luxury-main-menu-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

/* Liens du menu */
.luxury-menu-link {
    color: var(--text-white);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 12px 0;
    position: relative;
    transition: all 0.3s ease;
}

.luxury-menu-link:after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-luxury);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.luxury-menu-link:hover,
.luxury-menu-link.current-menu-item {
    color: var(--gold-luxury);
}

.luxury-menu-link:hover:after,
.luxury-menu-link.current-menu-item:after {
    width: 100%;
}

/* ==================== ESPACE POUR COMPENSER LE HEADER FIXE ==================== */
.site-main {
    margin-top: 120px;   /* Important : évite que le contenu soit caché sous le header */
}

/* Responsive */
@media (max-width: 1024px) {
    .luxury-main-menu-left .luxury-main-menu {
        display: none;
    }
    
    .luxury-brand-logo {
        position: static;
        transform: none;
    }
    
    .brand-logo-image {
        height: 65px;
    }
}

@media (max-width: 640px) {
    .luxury-nav-container {
        padding: 0 20px;
    }
    
    .site-main {
        margin-top: 100px;   /* un peu moins sur mobile */
    }
}
/* ====================== LUXURY TEXT INTRO - GMT MASTER II ====================== */
.luxury-text-intro {
    padding: 120px 0 100px;
    background: var(--bg-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.luxury-text-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 20px;
}

.luxury-main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 7vw, 82px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: var(--navy-deep);
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(40px);
    animation: luxuryTitleEnter 1.2s ease forwards 0.3s;
}

.luxury-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(17px, 2.2vw, 21px);
    line-height: 1.55;
    color: #555;
    font-weight: 300;
    max-width: 680px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: luxurySubtitleEnter 1.1s ease forwards 0.8s;
}

/* Animations d'entrée luxueuses */
@keyframes luxuryTitleEnter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Effet subtil de brillance sur le titre */
.luxury-main-title {
    background: linear-gradient(90deg, #0A1628 0%, #1C2A44 50%, #0A1628 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    animation: titleShine 8s linear infinite;
}

@media (max-width: 768px) {
    .luxury-text-intro {
        padding: 90px 0 80px;
    }
}



/* ====================== WATCH SPECS ACCORDION ====================== */

.watch-specs-section {
    position: relative !important;
    z-index: 100 !important;
    background: #ffffff !important;
    padding: 60px 0 80px !important;
    isolation: isolate !important;
}

.watch-specs-container {
    max-width: 1100px !important;
    margin: 0 auto !important;
    padding: 0 40px !important;
    background: #ffffff !important;
}

/* Each accordion row */
.watch-spec-item {
    background: #ffffff !important;
    border-bottom: 1px solid #d8d8d8 !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    box-shadow: none !important;
    transform: none !important;
}

.watch-spec-item:first-child {
    border-top: 1px solid #d8d8d8 !important;
}

/* Trigger button */
.watch-spec-trigger {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: #ffffff !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 26px 0 !important;
    margin: 0 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    -webkit-text-fill-color: #1a1a1a !important;
    cursor: pointer !important;
    text-align: left !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

.watch-spec-trigger > span:first-child {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    -webkit-text-fill-color: #1a1a1a !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    animation: none !important;
}

/* +/- icon */
.watch-spec-icon {
    font-size: 20px !important;
    font-weight: 300 !important;
    color: #1a1a1a !important;
    -webkit-text-fill-color: #1a1a1a !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    animation: none !important;
    display: inline-block !important;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    line-height: 1 !important;
}

.watch-spec-trigger[aria-expanded="true"] .watch-spec-icon {
    transform: rotate(45deg) !important;
}

/* Collapsible panel — CLOSED by default */
.watch-spec-panel {
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    background: #ffffff !important;
    transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s ease !important;
    padding: 0 !important;
}

/* Open state toggled by JS */
.watch-spec-panel.is-open {
    max-height: 900px !important;
    opacity: 1 !important;
    padding-bottom: 40px !important;
}

/* THE 3-COLUMN GRID — applied to spec-grid, columns are spec-col */
.spec-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    column-gap: 48px !important;
    row-gap: 0 !important;
    padding-top: 28px !important;
    background: #ffffff !important;
}

/* Each column */
.spec-col {
    display: block !important;
    background: #ffffff !important;
}

/* Each label+value pair */
.spec-entry {
    margin-bottom: 24px !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.spec-entry-label {
    display: block !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    -webkit-text-fill-color: #1a1a1a !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    animation: none !important;
    margin: 0 0 4px 0 !important;
    padding: 0 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    line-height: 1.4 !important;
}

.spec-entry-value {
    display: block !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    color: #666666 !important;
    -webkit-text-fill-color: #666666 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    animation: none !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.6 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

/* Mobile: single column */
@media (max-width: 768px) {
    .spec-grid {
        grid-template-columns: 1fr !important;
    }
    .watch-specs-container {
        padding: 0 20px !important;
    }
}


/* =========================================================
   FINAL DEFINITIVE FIXES — DO NOT ADD MORE BLOCKS AFTER THIS
   ========================================================= */

/* 1. Remove white bar — body & html have no white background on top */
html, body {
  margin: 0 !important;
  padding: 0 !important;
}

/* 2. site-header wrapper: fully transparent, no background, no height */
.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 1000 !important;
  background: transparent !important;
  box-shadow: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* 3. nav bar: transparent, smooth hide on scroll */
.luxury-main-header {
  background: transparent !important;
  border-bottom: 1px solid rgba(212, 165, 116, 0.15) !important;
  box-shadow: none !important;
  padding: 35px 0 10px !important;
  width: 100% !important;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.45s ease,
              background 0.3s ease !important;
  transform: translateY(0) !important;
  opacity: 1 !important;
}

/* 4. When scrolled: header slides UP and disappears */
.luxury-main-header.hidden {
  transform: translateY(-100%) !important;
  opacity: 0 !important;
}

/* 5. Logo */
.brand-logo-image {
  height: 60px !important;
  width: auto !important;
  filter: none !important;
  display: block !important;
}

/* 6. Nav links white on transparent bg */
.luxury-main-menu a,
.luxury-main-menu li a,
.luxury-search-button {
  color: rgba(255,255,255,0.92) !important;
}
.luxury-main-menu a:hover,
.luxury-main-menu li a:hover,
.luxury-search-button:hover {
  color: var(--gold-luxury) !important;
}

/* 7. Page content starts at top — hero goes under transparent header */
.site-main {
  padding-top: 0 !important;
  margin-top: 0 !important;
}



/* ===== HAND-DRAWN FOOTER DIVIDER ===== */
.footer-handdrawn-divider {
  width: 100%;
  line-height: 0;
  display: block;
  background: #ffffff;
  padding: 0;
  margin: 0 0 50px 0;
}

.footer-handdrawn-divider svg {
  display: block;
  width: 100%;
  height: 12px;
}


/* ===== CTA SECTION BOTTOM SPACING ===== */
.minimal-final-cta {
  padding: 80px 0 40px !important;
}

/* ===== HEADER FIXES FOR CENTERED LOGO + RIGHT SEARCH ===== */
.site-header,
.luxury-main-header {
  overflow: visible !important;
}

.luxury-main-header {
  padding: 45px 0 15px !important;
  min-height: 110px !important;
}

.luxury-nav-container {
  position: relative !important;
  min-height: 72px !important;
  justify-content: center !important;
  padding: 0 80px !important;
}

.luxury-brand-logo {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 30 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.luxury-brand-logo:hover {
  transform: translate(-50%, -50%) !important;
}

.brand-logo-image {
  height: 72px !important;
  width: auto !important;
  max-width: none !important;
  display: block !important;
}

.luxury-brand-logo:hover .brand-logo-image {
  transform: none !important;
  filter: none !important;
}

.luxury-header-actions {
  position: absolute !important;
  right: 80px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 31 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.luxury-search-button {
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  color: var(--gold-luxury) !important;
  box-shadow: none !important;
}

.luxury-search-button:hover {
  background: transparent !important;
  color: var(--gold-light) !important;
  transform: none !important;
}

.luxury-search-button svg {
  width: 35px !important;
  height: 35px !important;
  stroke-width: 1.8 !important;
}

@media (max-width: 1024px) {
  .luxury-main-header {
    min-height: 96px !important;
    padding: 20px 0 !important;
  }

  .luxury-nav-container {
    min-height: 56px !important;
    padding: 0 24px !important;
  }

  .brand-logo-image {
    height: 58px !important;
  }

  .luxury-header-actions {
    right: 24px !important;
  }
}

/* =========================================
   WORLD CLOCKS SECTION
   ========================================= */
.mf-world-clocks {
  background: #0A1628 !important;
  padding: 100px 0 110px;
  text-align: center;
  overflow: hidden;
}

.mf-world-clocks__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.mf-world-clocks__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 300;
  color: #FFFEF9 !important;
  line-height: 1.2;
  margin: 14px 0 20px;
}

.mf-world-clocks__title em {
  font-style: italic;
  color: #D4A574 !important;
}

.mf-world-clocks__sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: rgba(255, 254, 249, 0.5) !important;
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 64px;
  letter-spacing: 0.02em;
}

.mf-clocks-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 50px;
}

.mf-clock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.mf-clock__face {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #0F1E33;
  border: 1.5px solid rgba(212, 165, 116, 0.25);
  position: relative;
  box-shadow: 0 0 0 6px rgba(212, 165, 116, 0.06), inset 0 0 20px rgba(0,0,0,0.4);
}

.mf-clock__ring {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 0.5px solid rgba(212, 165, 116, 0.12);
  pointer-events: none;
}

.mf-clock__hand {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom center;
  border-radius: 2px;
}

.mf-clock__hand--hour {
  width: 2px;
  height: 30px;
  background: #FFFEF9;
  margin-left: -1px;
  opacity: 0.9;
}

.mf-clock__hand--minute {
  width: 1.5px;
  height: 40px;
  background: #D4A574;
  margin-left: -0.75px;
}

.mf-clock__hand--second {
  width: 1px;
  height: 44px;
  background: #C0392B;
  margin-left: -0.5px;
  margin-bottom: -4px;
}

.mf-clock__center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  background: #D4A574;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.mf-clock__city {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 254, 249, 0.7) !important;
}

.mf-clock__time {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 2px;
  color: #D4A574 !important;
}

@media (max-width: 768px) {
  .mf-world-clocks { padding: 70px 0 80px; }
  .mf-clocks-grid { gap: 32px 36px; }
  .mf-clock__face { width: 96px; height: 96px; }
  .mf-clock__hand--hour { height: 24px; }
  .mf-clock__hand--minute { height: 32px; }
  .mf-clock__hand--second { height: 36px; }
}
/* ====================== MODE NUIT - PHOTO MOCKUP DAYTONA ====================== */
.mode-toggle-btn {
    background: #ffffff;
    color: #1a1a1a;
    border: 1px solid #d4a574;
    padding: 15px 26px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.mode-toggle-btn:hover {
    background: #111;
    color: #fff;
    border-color: #d4a574;
}

.mode-toggle-btn .icon {
    font-size: 19px;
}

/* Transition fluide sur la photo à droite */
#daytona-packshot {
    transition: opacity 0.55s ease;
}

/* Bloc blanc devient noir */
body.dark-mode .gmt-mockup-card {
    background: #0a0a0a !important;
    color: #eeeeee !important;
}

body.dark-mode .gmt-mockup-title,
body.dark-mode .gmt-mockup-ref {
    color: #ffffff !important;
}
/* =============================================
   MODE NUIT - BLOC DAYTONA (le gros bloc blanc)
   ============================================= */
body.dark-mode .gmt-mockup-card,
.gmt-mockup-card.dark-mode {
    background: #0a0a0a !important;
    color: #eeeeee !important;
    border-color: #222 !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6) !important;
}

body.dark-mode .gmt-mockup-title,
body.dark-mode .gmt-mockup-ref,
.gmt-mockup-card.dark-mode .gmt-mockup-title,
.gmt-mockup-card.dark-mode .gmt-mockup-ref {
    color: #ffffff !important;
}

body.dark-mode .mode-toggle-btn {
    background: #1a1a1a !important;
    color: #fff !important;
    border-color: #444 !important;
}

body.dark-mode .mode-toggle-btn:hover {
    background: #333 !important;
}

/* Fix: btn-primary visible in dark mode with gold border */
body.dark-mode .btn-primary,
.gmt-mockup-card.dark-mode .btn-primary {
    border: 2px solid var(--gold-luxury) !important;
    color: var(--gold-luxury) !important;
    background: transparent !important;
}

body.dark-mode .btn-primary:hover,
.gmt-mockup-card.dark-mode .btn-primary:hover {
    background: var(--gold-luxury) !important;
    color: #0a0a0a !important;
}

/* =============================================
   MODE NUIT — FULL PAGE / SECTION BACKGROUND
   Override ALL hardcoded white !important rules
   ============================================= */

/* Transition on key elements BEFORE dark mode kicks in */
.watch-single-overlap-section,
.watch-single-overlap-section .container,
.watch-3d-cloud-section,
.watch-3d-cloud-section .container,
.watch-3d-cloud,
.watch-3d-viewer-wrap,
.gmt-detail-section,
.gmt-detail-card,
.gmt-mockup-card,
.watch-single-overlap-card,
.site-main,
body {
    transition:
        background 0.65s cubic-bezier(0.16, 1, 0.3, 1),
        color 0.55s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.55s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.7s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* ---- THE NUCLEAR BLACK OVERRIDE ---- */
html body.dark-mode,
html body.dark-mode .site-main,
html body.dark-mode .watch-single-overlap-section,
html body.dark-mode .watch-single-overlap-section .container,
html body.dark-mode .watch-3d-cloud-section,
html body.dark-mode .watch-3d-cloud-section .container,
html body.dark-mode .watch-3d-cloud,
html body.dark-mode .watch-3d-viewer-wrap,
html body.dark-mode .gmt-detail-section,
html body.dark-mode .gmt-detail-card,
html body.dark-mode .watch-single-overlap-card,
html body.dark-mode .watch-single-overlap-section::before,
html body.dark-mode .watch-single-overlap-section::after {
    background: #0a0a0a !important;
    opacity: 1 !important;
}

/* Card itself */
html body.single-watch.dark-mode .gmt-mockup-card,
html body.dark-mode .gmt-mockup-card {
    background: #0a0a0a !important;
    border-left-color: rgba(212, 165, 116, 0.4) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9) !important;
}

/* Hide card pseudo-element glows/reflections */
html body.dark-mode .gmt-mockup-card::before,
html body.dark-mode .gmt-mockup-card::after {
    opacity: 0 !important;
    background: transparent !important;
}

/* Darken the hero overlay */
html body.dark-mode .watch-single-hero .watch-single-hero-overlay {
    background: rgba(0, 0, 0, 0.88) !important;
    opacity: 1 !important;
}

/* ===== ROBUST HORIZONTAL OVERFLOW FIX ===== */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

body {
  position: relative;
}

img, svg, video, canvas, iframe {
  max-width: 100%;
}

/* Common Elementor / full-width overflow cases */
.elementor,
.elementor-section-wrap,
.elementor-section,
.elementor-container,
.elementor-column,
.elementor-widget-wrap,
.e-con,
.e-parent,
.e-child,
[data-elementor-type],
[data-elementor-id] {
  max-width: 100%;
  box-sizing: border-box;
}

.elementor-section,
.elementor-container,
.elementor-column,
.elementor-widget-wrap,
.e-con,
.e-parent,
.e-child {
  overflow-x: clip !important;
}

/* Fix common 100vw overflow caused by scrollbar width */
[style*="100vw"],
[style*="100dvw"],
.elementor-section.elementor-section-stretched,
.e-con.e-flex.e-con-boxed,
.e-con-full,
.e-con-wide {
  width: 100% !important;
  max-width: 100% !important;
}


/* ============================================================
   MAYFAIR — ALL FIXES (header, 360 title, dark mode btn, retour)
   ============================================================ */

/* ── FIX 1: Header hides on scroll down ── */
html body .site-header .luxury-main-header,
html body .luxury-main-header {
  transition: transform 0.45s ease, opacity 0.45s ease !important;
  transform: translateY(0) !important;
  opacity: 1 !important;
}
html body .site-header .luxury-main-header.hidden,
html body .luxury-main-header.hidden {
  transform: translateY(-110%) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

/* ── FIX 2: Vue à 360° luxury gold shimmer title ── */
@keyframes goldShine {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
h2.watch-3d-title,
.watch-3d-title,
.watch-3d-header h2,
.watch-3d-card h2 {
  background: linear-gradient(
    120deg,
    #b8955a 0%,
    #e8d5a3 35%,
    #d4a574 50%,
    #e8d5a3 65%,
    #b8955a 100%
  ) !important;
  background-size: 200% auto !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  animation: goldShine 4s linear infinite !important;
  display: inline-block !important;
  color: #d4a574 !important;
}

/* ── FIX 3: "Prenez Rendez-vous" button visible in Mode Nuit ── */
body.dark-mode .btn-primary,
.gmt-mockup-card.dark-mode .btn-primary,
body.dark-mode .gmt-mockup-actions .btn-primary {
  border: 2px solid #d4a574 !important;
  color: #d4a574 !important;
  background: transparent !important;
}
body.dark-mode .btn-primary:hover,
.gmt-mockup-card.dark-mode .btn-primary:hover,
body.dark-mode .gmt-mockup-actions .btn-primary:hover {
  background: #d4a574 !important;
  color: #0a0a0a !important;
}

/* ── FIX 4: Retour au catalogue button ── */
.watch-back-link-wrap {
  padding: 20px 0 0 clamp(116px, calc(4vw + 80px), 152px);
  margin-top: 130px;
  position: relative;
  z-index: 20;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .watch-back-link-wrap {
    padding-left: 104px;
  }
}
.watch-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold-luxury, #d4a574) !important;
  border: none;
  padding: 6px 0;
  border-radius: 0;
  background: transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
}
.watch-back-link::before {
  display: none;
}
.watch-back-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-luxury, #d4a574);
  transition: width 0.35s ease;
}
.watch-back-link:hover::before {
  display: none;
}
.watch-back-link:hover::after {
  width: 100%;
}
.watch-back-link:hover {
  color: var(--gold-luxury, #d4a574) !important;
}
.watch-back-link-arrow,
.watch-back-link-text {
  position: relative;
  z-index: 1;
}
.watch-back-link-arrow {
  font-size: 16px;
  line-height: 1;
  transition: transform 0.3s ease;
}
.watch-back-link:hover .watch-back-link-arrow {
  transform: translateX(-4px);
}

/* dark mode: retour button */
body.dark-mode .watch-back-link {
  color: #d4a574 !important;
  border-color: rgba(212, 165, 116, 0.45);
}
body.dark-mode .watch-back-link:hover {
  color: #0a0a0a !important;
}

body.single-watch .gmt-mockup-card,
body.single-watch .gmt-mockup-title,
body.single-watch .gmt-mockup-ref,
body.single-watch .mode-toggle-btn,
body.single-watch .gmt-mockup-actions .btn-primary,
body.single-watch #daytona-packshot {
    transition:
        background 0.65s cubic-bezier(0.16, 1, 0.3, 1),
        color 0.55s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.55s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.45s ease !important;
}

body.single-watch .mode-toggle-btn:disabled {
    opacity: 0.75;
    cursor: default;
}

body.single-watch.dark-mode .gmt-mockup-card {
    transform: translateY(-1px);
}

body.single-watch.dark-mode #daytona-packshot {
    transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
    body.single-watch .gmt-mockup-card,
    body.single-watch .gmt-mockup-title,
    body.single-watch .gmt-mockup-ref,
    body.single-watch .mode-toggle-btn,
    body.single-watch .gmt-mockup-actions .btn-primary,
    body.single-watch #daytona-packshot {
        transition: none !important;
        animation: none !important;
    }
}
/* Premium fullscreen menu text */
.fullscreen-menu a {
    font-size: 18px !important;
    letter-spacing: 4px !important;
    text-transform: uppercase;
}

/* VIDEO HERO PARALLAXE — vidéo reste dans le hero, effet parallaxe au scroll */
body.home {
  background: var(--bg-primary);
}
body.home .mf-hero {
  overflow: hidden !important;
}
body.home #mf-hero-bg {
  position: absolute !important;
  top: -20%;
  left: 0;
  width: 100% !important;
  height: 150% !important;
  object-fit: cover;
  z-index: 0;
  will-change: transform;
}
body.home .mf-hero__overlay {
  position: absolute !important;
  z-index: 1;
}
body.home .mf-hero__content {
  position: relative;
  z-index: 3;
}
body.home .mf-ticker {
  position: relative;
  z-index: 10;
}
body.home .mf-statement,
body.home .mf-showcase,
body.home section {
  position: relative;
  z-index: 10;
}

/* ===== FINAL SINGLE WATCH CARD SIZE TUNING ===== */
@media (min-width: 901px) {
  body.single-watch .watch-single-overlap-section.gmt-mockup-overlap {
    margin-top: -14vh !important;
  }

  body.single-watch .watch-single-overlap-section.gmt-mockup-overlap .container {
    max-width: 1280px !important;
    padding-left: 34px !important;
    padding-right: 34px !important;
  }

  body.single-watch .watch-single-overlap-card.gmt-mockup-card,
  body.single-watch .gmt-mockup-card {
    width: min(100%, 1180px) !important;
    max-width: 1180px !important;
    margin: 0 auto !important;
    padding: 44px 56px !important;
    min-height: 0 !important;
    transform: translateY(-58px) !important;
  }

  body.single-watch .gmt-mockup-card:hover {
    transform: translateY(-61px) !important;
  }

  body.single-watch .gmt-mockup-top {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px) !important;
    gap: 40px !important;
    align-items: center !important;
    margin-bottom: 0 !important;
  }

  body.single-watch .gmt-mockup-copy {
    max-width: 470px !important;
    padding-top: 0 !important;
  }

  body.single-watch .gmt-mockup-title {
    font-size: clamp(28px, 2.1vw, 34px) !important;
    line-height: 1.08 !important;
    margin-bottom: 10px !important;
  }

  body.single-watch .gmt-mockup-ref {
    font-size: 15px !important;
    line-height: 1.6 !important;
    margin-bottom: 0 !important;
    max-width: 430px !important;
  }

  body.single-watch .gmt-mockup-actions {
    gap: 16px !important;
    margin-top: 26px !important;
    flex-wrap: wrap !important;
  }

  body.single-watch .gmt-mockup-actions .btn-primary,
  body.single-watch .gmt-mockup-actions .mode-toggle-btn {
    min-height: 56px !important;
    padding: 0 28px !important;
  }

  body.single-watch .gmt-mockup-packshot {
    min-height: 360px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  body.single-watch .gmt-mockup-packshot img,
  body.single-watch #daytona-packshot {
    width: auto !important;
    max-width: 310px !important;
    max-height: 430px !important;
    height: auto !important;
    object-fit: contain !important;
    animation-duration: 3.2s !important;
  }

  /* Agrandir l'image de la Patek */
  body.single-watch .gmt-mockup-packshot img[src*="nautilus"],
  body.single-watch #daytona-packshot[src*="nautilus"] {
    max-width: 480px !important;
    max-height: 600px !important;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  body.single-watch .watch-single-overlap-card.gmt-mockup-card,
  body.single-watch .gmt-mockup-card {
    width: min(100%, 1040px) !important;
    max-width: 1040px !important;
    padding: 36px 40px !important;
  }

  body.single-watch .gmt-mockup-top {
    grid-template-columns: minmax(0, 1fr) 290px !important;
    gap: 28px !important;
  }

  body.single-watch .gmt-mockup-packshot {
    min-height: 320px !important;
  }

  body.single-watch .gmt-mockup-packshot img,
  body.single-watch #daytona-packshot {
    max-width: 270px !important;
    max-height: 380px !important;
  }

  /* Agrandir l'image de la Patek sur tablette */
  body.single-watch .gmt-mockup-packshot img[src*="nautilus"],
  body.single-watch #daytona-packshot[src*="nautilus"] {
    max-width: 380px !important;
    max-height: 480px !important;
  }
}

@media (max-width: 900px) {
  body.single-watch .watch-single-overlap-card.gmt-mockup-card,
  body.single-watch .gmt-mockup-card {
    transform: translateY(-32px) !important;
  }

  body.single-watch .gmt-mockup-packshot {
    min-height: 0 !important;
  }
}


/* ===== DARK MODE — FOOTER (beats all !important whites above) ===== */
html body.dark-mode .site-footer,
html body.dark-mode .site-footer .container,
html body.dark-mode .footer-grid,
html body.dark-mode .footer-section {
  background: #0c0c0c !important;
}
html body.dark-mode .footer-copyright {
  background: #0c0c0c !important;
  border-color: #1e1e1e !important;
}
html body.dark-mode .footer-title {
  color: #e8d8be !important;
  -webkit-text-fill-color: #e8d8be !important;
}
html body.dark-mode .footer-description {
  color: #7a7060 !important;
  -webkit-text-fill-color: #7a7060 !important;
}
html body.dark-mode .footer-menu a {
  color: #7a7060 !important;
  -webkit-text-fill-color: #7a7060 !important;
}
html body.dark-mode .footer-menu a:hover {
  color: #c8a96a !important;
  -webkit-text-fill-color: #c8a96a !important;
}
html body.dark-mode .footer-contact-link {
  color: #7a7060 !important;
}
html body.dark-mode .footer-contact-link span {
  color: #7a7060 !important;
  -webkit-text-fill-color: #7a7060 !important;
}
html body.dark-mode .footer-contact-link:hover,
html body.dark-mode .footer-contact-link:hover span {
  color: #c8a96a !important;
  -webkit-text-fill-color: #c8a96a !important;
}
html body.dark-mode .footer-contact-icon {
  background: #161616 !important;
  border-color: #2e2e2e !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5) !important;
}
html body.dark-mode .footer-contact-icon svg {
  stroke: #8a7a60 !important;
}
html body.dark-mode .footer-contact-icon svg path,
html body.dark-mode .footer-contact-icon svg circle,
html body.dark-mode .footer-contact-icon svg rect,
html body.dark-mode .footer-contact-icon svg line,
html body.dark-mode .footer-contact-icon svg polyline {
  stroke: #8a7a60 !important;
}
html body.dark-mode .footer-copyright p {
  color: #3a3530 !important;
  -webkit-text-fill-color: #3a3530 !important;
}
html body.dark-mode .mf-lang-btn {
  color: #7a7060 !important;
  border-color: #2e2e2e !important;
}
html body.dark-mode .mf-lang-btn.active {
  background: #1e1a12 !important;
  color: #c8a96a !important;
  -webkit-text-fill-color: #c8a96a !important;
  border-color: #c8a96a !important;
}
html body.dark-mode .mf-lang-sep {
    color: #2a2a2a !important;
}

/* ===== DARK MODE — GALLERY SECTION (La Collection) ===== */
html body.dark-mode .mf-gallery {
    background: #0a0a0a !important;
}

html body.dark-mode .mf-gallery__header {
    color: #ffffff !important;
}

html body.dark-mode .mf-gallery__header .section-label {
    color: var(--gold-luxury) !important;
}

html body.dark-mode .mf-gallery__header .hero-medium {
    color: #ffffff !important;
}

/* Keep gallery cards with light background */
html body.dark-mode .mf-gallery__img-wrap {
    background: var(--bg-secondary) !important;
    border-color: var(--border-light) !important;
}

html body.dark-mode .mf-gallery__label {
    color: var(--text-secondary) !important;
}

/* Gallery navigation buttons in dark mode */
html body.dark-mode .mf-gallery__nav {
    background: linear-gradient(180deg, #fffdf9 0%, #f4ede2 100%) !important;
    border-color: rgba(205, 170, 125, 0.38) !important;
    color: #bc8e5d !important;
}

html body.dark-mode .mf-gallery__nav:hover {
    background: linear-gradient(180deg, #fffaf2 0%, #efe2cf 100%) !important;
    border-color: rgba(196, 154, 108, 0.72) !important;
    color: #a9773d !important;
}

html body.dark-mode .mf-gallery__cta .btn-secondary {
    color: var(--gold-luxury) !important;
}


/* =====================================================================
   OPTIMISATIONS TÉLÉPHONE — max-width: 480px
   NE PAS MODIFIER : ne touche pas aux breakpoints 768px / 1024px+
   ===================================================================== */

@media (max-width: 480px) {

  /* ── HEADER ── */
  .luxury-main-header {
    padding: 12px 0 8px !important;
    min-height: 64px !important;
  }

  .luxury-nav-container {
    padding: 0 16px !important;
    min-height: 48px !important;
  }

  .brand-logo-image {
    height: 44px !important;
  }

  .luxury-header-actions {
    right: 16px !important;
  }

  .luxury-search-button svg,
  .mf-watch-svg {
    width: 28px !important;
    height: 28px !important;
  }

  .mf-burger-btn {
    left: 8px !important;
    width: 36px !important;
    height: 36px !important;
  }

  /* ── HERO PRINCIPAL ── */
  .minimal-hero-section {
    min-height: 100svh;
  }

  .minimal-hero-content {
    padding: 80px 16px 60px !important;
  }

  .minimal-hero-slogan {
    font-size: 28px !important;
    line-height: 1.3 !important;
    margin-bottom: 28px !important;
  }

  .minimal-cta-button {
    padding: 14px 24px !important;
    font-size: 10px !important;
    letter-spacing: 1.5px !important;
    width: 100% !important;
    max-width: 280px !important;
    text-align: center !important;
  }

  /* ── CONTENEUR GLOBAL ── */
  .container {
    padding: 0 16px !important;
  }

  .section-padding {
    padding: 56px 0 !important;
  }

  .section-padding-small {
    padding: 40px 0 !important;
  }

  .section-header-center {
    margin-bottom: 40px !important;
  }

  /* ── TYPOGRAPHIE HERO ── */
  .hero-large {
    font-size: 32px !important;
    line-height: 1.2 !important;
  }

  .hero-medium {
    font-size: 26px !important;
  }

  .heading-1 {
    font-size: 22px !important;
  }

  /* ── GRILLE PRODUITS ── */
  .grid-product-showcase {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin: 24px 0 !important;
  }

  .product-card-image {
    height: 280px !important;
    padding: 12px !important;
  }

  .product-card-content {
    padding: 16px 14px !important;
  }

  .product-card-title {
    font-size: 16px !important;
  }

  /* ── VALEURS ── */
  .values-grid {
    gap: 16px !important;
  }

  .value-card {
    padding: 32px 20px !important;
  }

  .value-title {
    font-size: 20px !important;
  }

  /* ── BOUTONS ── */
  .btn-primary {
    width: 100% !important;
    min-width: auto !important;
    padding: 14px 20px !important;
    font-size: 12px !important;
    min-height: 52px !important;
  }

  .btn-secondary {
    font-size: 12px !important;
    padding: 14px 0 !important;
  }

  /* ── SINGLE WATCH HERO ── */
  .watch-single-hero {
    min-height: 55vh !important;
  }

  .watch-single-overlap-card {
    padding: 24px 16px !important;
  }

  .watch-single-overlap-section {
    margin-top: -80px !important;
  }

  /* ── GMT MOCKUP CARD ── */
  .gmt-mockup-card,
  body.single-watch .gmt-mockup-card,
  body.single-watch .watch-single-overlap-card.gmt-mockup-card {
    padding: 24px 16px !important;
    transform: translateY(-24px) !important;
  }

  .gmt-mockup-title,
  body.single-watch .gmt-mockup-title {
    font-size: 28px !important;
    line-height: 1.15 !important;
  }

  .gmt-mockup-ref {
    font-size: 14px !important;
  }

  .gmt-mockup-price {
    font-size: 24px !important;
  }

  .gmt-mockup-actions {
    flex-direction: column !important;
    gap: 12px !important;
    align-items: stretch !important;
  }

  .gmt-mockup-actions .btn-primary,
  .gmt-mockup-actions .mode-toggle-btn {
    width: 100% !important;
    justify-content: center !important;
    min-height: 52px !important;
    padding: 0 16px !important;
  }

  .gmt-mockup-packshot img,
  body.single-watch .gmt-mockup-packshot img,
  body.single-watch #daytona-packshot {
    max-width: 220px !important;
    max-height: 280px !important;
  }

  /* ── 3D VIEWER ── */
  .watch-3d-card {
    padding: 28px 16px !important;
  }

  .watch-3d-title {
    font-size: 26px !important;
  }

  .watch-3d-viewer-wrap,
  .gmt-watch-viewer {
    height: 300px !important;
  }

  /* ── SECTION SPECS ACCORDION ── */
  .watch-specs-section {
    padding: 40px 0 56px !important;
  }

  .watch-specs-container {
    padding: 0 16px !important;
  }

  .watch-spec-trigger {
    padding: 20px 0 !important;
    font-size: 14px !important;
  }

  .spec-grid {
    grid-template-columns: 1fr !important;
    column-gap: 0 !important;
  }

  /* ── SECTION LUXURY TEXT INTRO ── */
  .luxury-text-intro {
    padding: 60px 0 48px !important;
  }

  .luxury-main-title {
    font-size: clamp(28px, 8vw, 40px) !important;
    letter-spacing: -0.5px !important;
  }

  .luxury-subtitle {
    font-size: 15px !important;
  }

  /* ── WORLD CLOCKS ── */
  .mf-world-clocks {
    padding: 56px 0 64px !important;
  }

  .mf-world-clocks__inner {
    padding: 0 16px !important;
  }

  .mf-world-clocks__sub {
    margin-bottom: 40px !important;
  }

  .mf-clocks-grid {
    gap: 24px 20px !important;
  }

  .mf-clock__face {
    width: 80px !important;
    height: 80px !important;
  }

  .mf-clock__hand--hour   { height: 20px !important; }
  .mf-clock__hand--minute { height: 26px !important; }
  .mf-clock__hand--second { height: 30px !important; }

  /* ── FOOTER ── */
  .footer-grid {
    gap: 28px !important;
  }

  .footer-title {
    font-size: 13px !important;
    margin: 14px 0 14px !important;
  }

  .footer-copyright {
    margin-top: 28px !important;
    text-align: center !important;
  }

  /* ── RETOUR CATALOGUE ── */
  .watch-back-link-wrap {
    padding-left: 16px !important;
    margin-top: 80px !important;
  }

  /* ── OVERFLOW HORIZONTAL ── */
  .filter-category-submenu {
    min-width: 0 !important;
    width: calc(100vw - 32px) !important;
    left: 0 !important;
    right: 0 !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  .filter-category-submenu .filter-preview-wrap {
    min-width: 0 !important;
  }

  /* ── CATALOGUE HERO ── */
  .mayfair-catalogue-hero {
    padding: 100px 0 36px !important;
  }

  .mayfair-catalog-search {
    flex-direction: column !important;
    gap: 10px !important;
  }

  .mayfair-catalog-search input[type="search"] {
    flex: none !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .mayfair-catalog-search button {
    width: 100% !important;
  }

  /* ── BARRE DE FILTRES ── */
  [style*="display:flex"][style*="gap:12px"][style*="flex-wrap:wrap"],
  div[style*="display:flex"][style*="flex-wrap:wrap"][style*="padding-bottom"] {
    gap: 8px !important;
  }

  .filter-button {
    padding: 10px 14px !important;
    font-size: 12px !important;
  }

  /* ── BOUTONS FLOTTANTS ── */
  #mf-floating-actions {
    right: 12px !important;
    bottom: 14px !important;
    gap: 8px !important;
  }

  #mf-whatsapp-btn {
    width: 46px !important;
    padding: 7px !important;
  }

  #mf-scroll-top-btn {
    width: 46px !important;
    height: 46px !important;
  }

  .mf-action-icon {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
  }

  .mf-action-icon--top {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
  }

  /* ── MENU FULLSCREEN MOBILE ── */
  .mf-rr-left {
    padding: 80px 20px 48px !important;
  }

  .mf-rr-links a {
    font-size: clamp(18px, 6vw, 26px) !important;
    padding: 12px 0 !important;
  }

  .mf-rr-brand-tag {
    bottom: 24px !important;
  }

}
/* ── FIN OPTIMISATIONS TÉLÉPHONE ── */
