/* ===================================
   FONTS
   =================================== */

@font-face {
    font-family: 'Akira';
    src: url('https://www.fontsaddict.com/fontface/akira-expanded-demo.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Migra';
    src: url('Migra - Free for Personal Use/Migra-Extrabold.woff2') format('woff2'),
         url('Migra - Free for Personal Use/Migra-Extrabold.woff') format('woff'),
         url('Migra - Free for Personal Use/Migra-Extrabold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Migra';
    src: url('Migra - Free for Personal Use/Migra-Extralight.woff2') format('woff2'),
         url('Migra - Free for Personal Use/Migra-Extralight.woff') format('woff'),
         url('Migra - Free for Personal Use/Migra-Extralight.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

/* ===================================
   RESET & VARIABLES
   =================================== */

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

/* ===================================
   ÉCRAN DE CHARGEMENT
   =================================== */

/* Écran d'entrée avec effet de porte */
.door-entrance {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 10001;
    overflow: hidden;
    background: #5b1f1e;
    opacity: 1;
    visibility: visible;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.door-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.door-intro {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 10%;
    z-index: 2;
}

.door-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin-bottom: 0;
    filter: blur(8px);
    transition: filter 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.door-logo.no-blur {
    filter: blur(0);
}

.store-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    visibility: visible;
    opacity: 1;
}

.enter-button {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    background: transparent;
    border: 2px solid #f4dfba;
    color: #f4dfba;
    padding: 20px 50px;
    font-size: 24px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
    background: rgba(91, 29, 30, 0.3);
}

.enter-button:hover {
    background: #f4dfba;
    color: #5b1f1e;
    transform: translate(-50%, -70%) scale(1.05);
    box-shadow: 0 0 30px rgba(244, 223, 186, 0.5);
}

.enter-button.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.skip-intro-button {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10002;
    background: transparent;
    border: none;
    color: rgba(244, 223, 186, 0.6);
    padding: 8px 20px;
    font-size: 12px;
    font-family: var(--font-sans);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.skip-intro-button:hover {
    color: rgba(244, 223, 186, 1);
    opacity: 1;
    letter-spacing: 3px;
}

.skip-intro-button:focus {
    outline: none;
    color: rgba(244, 223, 186, 1);
    opacity: 1;
}

.welcome-text {
    position: absolute;
    top: 240px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10002;
    color: #ffffff;
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
    margin: 0;
    padding: 0;
    transition: opacity 0.5s ease;
    line-height: 1.3;
    max-width: 90%;
}

.door-left,
.door-right {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: #5b1f1e;
    z-index: 2;
    transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.door-left {
    left: 0;
    transform-origin: left center;
}

.door-right {
    right: 0;
    transform-origin: right center;
}

.door-entrance.open .door-left {
    transform: translateX(-100%);
}

.door-entrance.open .door-right {
    transform: translateX(100%);
}

.door-entrance.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: none;
}

.door-entrance.hidden .store-video {
    opacity: 0;
    transform: scale(1.1);
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #5d1d1b;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loading-image {
    max-width: 250px;
    width: 100%;
    height: auto;
    object-fit: contain;
    animation: fadeInScale 1s ease-out;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

:root {
    --primary-color: #5d1d1b;
    --secondary-color: #8d2f2d;
    --gold-color: #5d1d1b;
    --light-gold: #8d2f2d;
    --dark-bg: #0a0a0a;
    --light-bg: linear-gradient(135deg, #2d0f0e 0%, #1a0807 50%, #3d1514 100%);
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #6b6b6b;
    
    --font-serif: 'Raleway', sans-serif;
    --font-elegant: 'Raleway', sans-serif;
    --font-sans: 'Raleway', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

* {
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--dark-bg);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 200vh;
}

body.loading {
    overflow: hidden;
}

html, body {
    overflow-x: hidden;
    overflow-y: auto;
}

.scroll-spacer {
    position: relative;
    z-index: -2;
    pointer-events: none;
}

.transition-spacer {
    position: relative;
    z-index: 2;
    pointer-events: none;
}

/* Particules dorées animées en arrière-plan */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(93, 29, 27, 0.15), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(93, 29, 27, 0.1), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(93, 29, 27, 0.2), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(93, 29, 27, 0.15), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(93, 29, 27, 0.1), transparent);
    background-size: 200% 200%;
    background-position: 0% 0%, 100% 0%, 50% 50%, 0% 100%, 100% 100%;
    animation: particleFloat 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes particleFloat {
    0%, 100% { background-position: 0% 0%, 100% 0%, 50% 50%, 0% 100%, 100% 100%; }
    25% { background-position: 20% 20%, 80% 20%, 60% 60%, 20% 80%, 80% 80%; }
    50% { background-position: 40% 40%, 60% 40%, 50% 50%, 40% 60%, 60% 60%; }
    75% { background-position: 20% 20%, 80% 20%, 60% 60%, 20% 80%, 80% 80%; }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* ===================================
   NAVIGATION MINIMALISTE
   =================================== */

.navbar-minimal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 30px 60px;
    pointer-events: none;
}

@media (max-width: 768px) {
    .navbar-minimal {
        padding: 20px 25px;
    }
}

@media (max-width: 480px) {
    .navbar-minimal {
        padding: 15px 20px;
    }
}

.nav-minimal-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    pointer-events: auto;
    position: relative;
}


.nav-minimal-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-family: 'Raleway', sans-serif !important;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-minimal-link:hover {
    color: rgba(255, 255, 255, 1);
}

.nav-minimal-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: var(--transition-smooth);
}

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

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-left: 20px;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Raleway', sans-serif !important;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.lang-btn:hover {
    color: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.lang-btn.active {
    color: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .language-switcher {
        margin-left: 10px;
        gap: 6px;
    }
    
    .lang-btn {
        font-size: 10px;
        padding: 5px 10px;
    }
}

/* Menu minimal déroulant */

.nav-minimal-menu {
    position: relative;
}

.nav-minimal-dropdown {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #5d1d1b;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    text-align: left;
    padding-left: 60px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
}

.nav-minimal-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-minimal-dropdown .nav-minimal-item {
    font-size: 18px;
    letter-spacing: 4px;
    color: #f5f5dc;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 15px 30px;
    position: relative;
    text-align: left;
}

.nav-minimal-dropdown .nav-minimal-item:hover {
    color: #fff;
    transform: translateX(10px);
}

.nav-minimal-dropdown .nav-minimal-item::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 30px;
    width: 0;
    height: 1px;
    background: #f5f5dc;
    transition: width 0.3s ease;
}

.nav-minimal-dropdown .nav-minimal-item:hover::after {
    width: calc(100% - 60px);
}

.nav-menu-item-with-submenu {
    position: relative;
}

.nav-submenu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 15px;
    padding-left: 30px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-10px);
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu-item-with-submenu:hover .nav-submenu,
.nav-menu-item-with-submenu.active .nav-submenu {
    max-height: 300px;
    opacity: 1;
    transform: translateY(0);
    padding-left: 30px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.nav-submenu-item {
    font-size: 16px !important;
    letter-spacing: 2px !important;
    color: #f5f5dc !important;
    opacity: 0.8;
}

.nav-submenu-item:hover {
    opacity: 1;
    transform: translateX(5px) !important;
}

.menu-close {
    position: absolute;
    top: 40px;
    right: 60px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 48px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.menu-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

/* ===================================
   BANDEAU DERNIERS AJOUTS
   =================================== */

.latest-additions-banner {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, #2d0f0e 0%, #1a0807 50%, #3d1514 100%);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(91, 31, 30, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(45, 15, 14, 0.4) 0%, transparent 50%),
        linear-gradient(135deg, #2d0f0e 0%, #1a0807 50%, #3d1514 100%);
    border-top: 1px solid rgba(244, 223, 186, 0.1);
    border-bottom: 1px solid rgba(244, 223, 186, 0.1);
    padding: 60px 0;
    margin: 30px 0;
    overflow: hidden;
}

.banner-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.banner-label {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(244, 223, 186, 0.6);
    white-space: nowrap;
    flex-shrink: 0;
}

.banner-watches {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    flex: 1;
    position: relative;
    min-height: 200px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(244, 223, 186, 0.3) transparent;
}

.banner-watches::-webkit-scrollbar {
    height: 6px;
}

.banner-watches::-webkit-scrollbar-track {
    background: transparent;
}

.banner-watches::-webkit-scrollbar-thumb {
    background: rgba(244, 223, 186, 0.3);
    border-radius: 3px;
}

.banner-watches::-webkit-scrollbar-thumb:hover {
    background: rgba(244, 223, 186, 0.5);
}

.banner-watches-wrapper {
    display: flex;
    gap: 25px;
    animation: scrollBanner 30s linear infinite;
    will-change: transform;
    align-items: center;
    width: max-content;
}

.banner-watches-wrapper img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-width: 100%;
    height: auto;
}

.banner-watches-wrapper:hover {
    animation-play-state: paused;
}

.banner-watches:active .banner-watches-wrapper,
.banner-watches:focus .banner-watches-wrapper {
    animation-play-state: paused;
}

@keyframes scrollBanner {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.banner-watches::-webkit-scrollbar {
    display: none;
}

.banner-watch-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    min-width: 180px;
    position: relative;
    z-index: 1;
}

.banner-watch-item img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.banner-watch-item:hover {
    transform: translateY(-3px);
}

.banner-watch-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    object-position: center;
    border-radius: 2px;
    border: 1px solid rgba(244, 223, 186, 0.2);
    transition: all 0.3s ease;
    display: block;
    visibility: visible;
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.1);
}

.banner-watch-item:hover .banner-watch-img {
    border-color: rgba(244, 223, 186, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.banner-watch-name {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    color: rgba(244, 223, 186, 0.8);
    text-align: center;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.banner-watch-item:hover .banner-watch-name {
    color: #f4dfba;
}

@media (max-width: 768px) {
    .latest-additions-banner {
        padding: 40px 0;
        margin: 20px 0;
    }
    
    .banner-content {
        padding: 0 25px;
        gap: 20px;
    }
    
    .banner-label {
        font-size: 11px;
    }
    
    .banner-watches {
        min-height: 150px;
    }
    
    .banner-watches-wrapper {
        gap: 20px;
    }
    
    .banner-watch-img {
        width: 130px;
        height: 130px;
    }
    
    .banner-watch-name {
        font-size: 12px;
        max-width: 130px;
    }
}

@media (max-width: 480px) {
    .latest-additions-banner {
        padding: 35px 0;
        margin: 15px 0;
    }
    
    .banner-content {
        padding: 0 15px;
        gap: 15px;
    }
    
    .banner-label {
        font-size: 10px;
        letter-spacing: 1.5px;
    }
    
    .banner-watches {
        min-height: 130px;
        gap: 15px;
    }
    
    .banner-watch-img {
        width: 100px;
        height: 100px;
    }
    
    .banner-watch-name {
        font-size: 11px;
        max-width: 100px;
    }
}

.nav-minimal-item {
    font-size: 10px;
    letter-spacing: 2px;
}

/* ===================================
   NAVIGATION (Ancienne - conservée pour référence)
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition-smooth);
    padding: 30px 0;
    display: none;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    height: 50px;
}

.logo-img {
    height: 100%;
    width: auto;
    max-width: 200px;
    min-width: 120px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: var(--transition-smooth);
}

.logo-img:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(93, 29, 27, 0.5));
}

@media (max-width: 768px) {
    .logo-img {
        max-width: 150px;
        min-width: 100px;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 50px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: var(--transition-smooth);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition-smooth);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: transparent;
    z-index: 1;
}

.hero-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

/* Gradient animé sur le hero */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(93, 29, 27, 0.05) 0%,
        transparent 30%,
        transparent 70%,
        rgba(93, 29, 27, 0.05) 100%
    );
    animation: gradientShift 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.hero::before {
    display: none;
}

@keyframes heroAnimation {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(93,29,27,0.03)"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
    z-index: 1;
    animation: overlayPulse 4s ease-in-out infinite;
}

@keyframes overlayPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 0.5vh;
}

.hero-title {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(72px, 12vw, 160px);
    font-weight: 800;
    color: var(--text-light);
    line-height: 0.9;
    margin-bottom: 10px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    position: relative;
}

.hero-title.single-line {
    letter-spacing: 0.02em;
}

.hero-subline {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(10px, 2vw, 14px);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 200;
    margin-top: 15px;
    margin-bottom: 40px;
}

.hero-catalogue-button {
    display: inline-block;
    padding: 16px 48px;
    background: #5d1d1b;
    color: var(--text-light);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #5d1d1b;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(93, 29, 27, 0.3);
}

.hero-catalogue-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.5s ease;
    z-index: 0;
}

.hero-catalogue-button:hover::before {
    left: 100%;
}

.hero-catalogue-button:hover {
    background: #6a211f;
    border-color: #6a211f;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(93, 29, 27, 0.4);
}

.hero-catalogue-button span {
    position: relative;
    z-index: 1;
}

.hero-title .line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out forwards;
}

.hero-title .line:nth-child(1) {
    animation-delay: 0.3s;
}

.hero-title .line:nth-child(2) {
    animation-delay: 0.6s;
}

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

.hero-subtitle {
    font-family: var(--font-elegant);
    font-size: clamp(18px, 2vw, 24px);
    color: var(--primary-color);
    letter-spacing: 3px;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeIn 1s ease-out 1s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: transparent;
    color: var(--text-light);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    opacity: 0;
    animation: fadeIn 1s ease-out 1.3s forwards;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: var(--transition-smooth);
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(93, 29, 27, 0.5);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

/* ===================================
   SECTION STYLES
   =================================== */

.section-label {
    font-family: var(--font-sans);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(93, 29, 27, 0.1);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    animation: titleUnderline 1.5s ease-out 0.5s forwards;
    box-shadow: 0 0 10px rgba(93, 29, 27, 0.5);
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    animation: titleUnderline 1.5s ease-out 0.5s forwards;
    box-shadow: 0 0 10px rgba(93, 29, 27, 0.5);
}

@keyframes titleUnderline {
    to { width: 100px; }
}

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

/* ===================================
   PHILOSOPHY SECTION
   =================================== */

.philosophy {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px) saturate(150%);
    -webkit-backdrop-filter: blur(15px) saturate(150%);
    position: relative;
    z-index: 2;
    overflow: hidden;
    min-height: 100vh;
    padding: 150px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: none;
    opacity: 1;
}

.philosophy::before {
    display: none;
}

.philosophy .container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
    animation: none !important;
}

@keyframes liquidShine {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg);
    }
}

.philosophy-text {
    font-family: var(--font-elegant);
    font-size: 22px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
    animation: none !important;
}

/* Titre "Notre Vision" en blanc pour la section philosophie transparente */
.philosophy .section-label {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
    animation: none !important;
}

.philosophy .section-title {
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
    animation: none !important;
}

/* ===================================
   ABOUT / QUI JE SUIS SECTION
   =================================== */

.about {
    background: linear-gradient(135deg, #2d0f0e 0%, #1a0807 50%, #3d1514 100%);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(91, 31, 30, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(45, 15, 14, 0.4) 0%, transparent 50%),
        linear-gradient(135deg, #2d0f0e 0%, #1a0807 50%, #3d1514 100%);
    padding: 140px 0;
    color: #f4dfba;
    position: relative;
}

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

.about-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    background: rgba(0, 0, 0, 0.2);
    max-height: 600px;
    aspect-ratio: 3 / 4;
}

.about-image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.about-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(0.3) contrast(1.1) brightness(0.95);
    transform: scale(1);
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1),
                filter 0.8s ease-out;
    position: relative;
    z-index: 0;
}

.about-image-frame:hover .about-image {
    transform: scale(1.02);
    filter: grayscale(0.2) contrast(1.15) brightness(1);
}

.about-content {
    max-width: 650px;
}

.about-content .section-label {
    color: rgba(244, 223, 186, 0.6);
    font-size: 11px;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.about-content .section-title {
    color: #f4dfba;
    font-size: 42px;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
}

.about-tagline {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(244, 223, 186, 0.7);
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.about-tagline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background: rgba(244, 223, 186, 0.3);
}

.about-text {
    font-size: 15px;
    line-height: 1.85;
    color: rgba(244, 223, 186, 0.9);
    margin-bottom: 22px;
    font-weight: 300;
    letter-spacing: 0.01em;
    white-space: pre-line; /* Preserve line breaks */
}

.about-text:last-of-type {
    margin-bottom: 0;
}

/* ===================================
   COLLECTION SECTION
   =================================== */

.collection {
    background: linear-gradient(135deg, #2d0f0e 0%, #1a0807 50%, #3d1514 100%);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(91, 31, 30, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(45, 15, 14, 0.4) 0%, transparent 50%),
        linear-gradient(135deg, #2d0f0e 0%, #1a0807 50%, #3d1514 100%);
    padding: 0 !important;
    color: #f4dfba;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    overflow-y: auto;
    transform: translateX(0);
    will-change: transform;
    transition: none;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

.collection-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 15, 14, 0.4);
    z-index: 1;
}


/* Styles très compacts pour la section collection */
.collection .container {
    min-height: auto !important;
    height: auto !important;
    padding: 80px 60px 80px 60px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 1400px !important;
    position: relative;
    z-index: 2;
}


.collection .section-label {
    color: rgba(244, 223, 186, 0.7) !important;
    margin: 0 0 0 0 !important;
    padding: 0 !important;
    font-size: 10px !important;
    letter-spacing: 2px !important;
}

.collection .section-header {
    margin: 0 0 0 0 !important;
    padding: 0 !important;
    text-align: left !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.collection .section-header .section-label {
    margin-bottom: 2px !important;
    text-align: left;
}

.collection .section-title {
    font-size: clamp(18px, 2.5vw, 28px) !important;
    margin: 0 0 0 0 !important;
    padding: 0 !important;
    line-height: 1.1 !important;
    font-weight: 600 !important;
    color: #f4dfba !important;
    opacity: 0;
    transform: translateX(100px);
    animation: fadeInFromRight 1s ease-out forwards;
}

.collection .section-header .section-title {
    margin-bottom: 80px !important;
    text-align: left;
}

.collection-intro {
    text-align: left;
    max-width: 800px;
    margin: 0 0 120px 0;
    padding: 0 20px;
}

.collection-text {
    font-family: var(--font-serif);
    font-size: 16px;
    line-height: 1.8;
    color: rgba(244, 223, 186, 0.9);
    font-weight: 300;
    letter-spacing: 0.02em;
    margin: 0;
    opacity: 0;
    transform: translateX(100px);
    white-space: pre-line; /* Preserve line breaks */
    animation: fadeInFromRight 1s ease-out 0.2s forwards;
}

@keyframes fadeInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.collection .catalogue-button-wrapper {
    text-align: left;
    margin-top: 0;
    margin-bottom: 0;
}

.catalogue-button {
    display: inline-block;
    padding: 16px 48px;
    background: #5d1d1b;
    color: var(--text-light);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #5d1d1b;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(93, 29, 27, 0.3);
}

.catalogue-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.5s ease;
    z-index: 0;
}

.catalogue-button:hover::before {
    left: 100%;
}

.catalogue-button:hover {
    background: #6a211f;
    border-color: #6a211f;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(93, 29, 27, 0.4);
}

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

/* Page catalogue complète */
.catalogue-page {
    background: linear-gradient(135deg, #2d0f0e 0%, #1a0807 50%, #3d1514 100%);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(91, 31, 30, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(45, 15, 14, 0.4) 0%, transparent 50%),
        linear-gradient(135deg, #2d0f0e 0%, #1a0807 50%, #3d1514 100%);
    padding: 150px 0;
    color: #f4dfba;
    position: relative;
    min-height: 100vh;
    overflow-y: visible;
    overflow-x: hidden;
}

/* Page de détail d'une montre */
.watch-detail-page {
    background: 
        linear-gradient(135deg, #1a0a0a 0%, #0d0505 25%, #1a0a0a 50%, #0d0505 75%, #1a0a0a 100%),
        radial-gradient(circle at 30% 40%, rgba(139, 26, 26, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(107, 20, 20, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #2d0f0e 0%, #1a0807 50%, #3d1514 100%);
    background-size: 100% 100%, 200% 200%, 200% 200%, 100% 100%;
    background-position: center, 0% 0%, 100% 100%, center;
    padding: 120px 0 80px;
    color: var(--text-dark);
    position: relative;
    min-height: 100vh;
    box-shadow: 
        inset 0 0 200px rgba(139, 26, 26, 0.2),
        inset 0 0 400px rgba(107, 20, 20, 0.1);
}

.watch-detail-page .collection,
body:not(.watch-detail-page) section.collection {
    position: relative !important;
    transform: none !important;
    overflow: visible !important;
    padding: 100px 0 !important;
    background: linear-gradient(135deg, #2d0f0e 0%, #1a0807 50%, #3d1514 100%);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(91, 31, 30, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(45, 15, 14, 0.4) 0%, transparent 50%),
        linear-gradient(135deg, #2d0f0e 0%, #1a0807 50%, #3d1514 100%);
}

.watch-detail-page .container {
    min-height: auto;
}

.watch-detail-page .section-label {
    font-family: var(--font-sans) !important;
    color: rgba(26, 26, 26, 0.6);
}

.watch-detail-page .section-title {
    font-family: var(--font-sans) !important;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.watch-detail-page .watch-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.watch-detail-page-2 {
    padding-top: 0 !important;
    padding-bottom: 40px !important;
    margin-top: 0 !important;
    background: 
        linear-gradient(135deg, #1a0a0a 0%, #0d0505 25%, #1a0a0a 50%, #0d0505 75%, #1a0a0a 100%),
        radial-gradient(circle at 30% 40%, rgba(139, 26, 26, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(107, 20, 20, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #2d0f0e 0%, #1a0807 50%, #3d1514 100%) !important;
    background-size: 100% 100%, 200% 200%, 200% 200%, 100% 100% !important;
    background-position: center, 0% 0%, 100% 100%, center !important;
    box-shadow: 
        inset 0 0 200px rgba(139, 26, 26, 0.2),
        inset 0 0 400px rgba(107, 20, 20, 0.1) !important;
}

.watch-detail-page-2 .section-label,
.watch-detail-page-2 .section-title,
.watch-detail-page .section-label,
.watch-detail-page .section-title,
.watch-detail-page-2 .section-label {
    font-family: var(--font-sans) !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

.watch-detail-page-2 .container {
    padding-top: 60px !important;
}

.watch-detail-page-2 .section-label {
    font-family: var(--font-sans) !important;
    margin-top: 0 !important;
    margin-bottom: 5px !important;
}

.watch-detail-page-2 .section-title {
    font-family: var(--font-sans) !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
    font-size: clamp(24px, 3.5vw, 36px) !important;
}

.watch-detail-page-2 .collection-grid {
    margin-top: 0 !important;
}

.watch-detail-page-2 .watch-img,
.watch-detail-page .watch-img {
    border-radius: 12px;
    box-shadow: none;
    max-width: 900px;
    width: 100%;
    height: auto;
    animation: slideInFromLeft 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.watch-detail-page-2 .watch-info,
.watch-detail-page .watch-info {
    animation: slideInFromRight 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 1;
    transition: opacity 0.4s ease;
    background: none;
    padding: 0;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    position: relative;
    color: #f4dfba;
}

.watch-detail-page-2 .watch-info p,
.watch-detail-page .watch-info p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif !important;
    font-weight: 100 !important;
    color: #f4dfba !important;
    font-size: 14px !important;
}

.watch-detail-page-2 .watch-info .watch-price,
.watch-detail-page .watch-info .watch-price {
    color: #f4dfba !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif !important;
    font-weight: 100 !important;
    font-size: 32px !important;
}

.watch-detail-page-2 .watch-details {
    background: none;
    padding: 0;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    position: relative;
    transition: opacity 0.4s ease;
    color: #f4dfba;
}

.watch-detail-page-2 .watch-details h3,
.watch-detail-page-2 .watch-details h4,
.watch-detail-page-2 .watch-details p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif !important;
    font-weight: 100 !important;
    color: #f4dfba !important;
    font-size: 13px !important;
}

.watch-detail-page-2 .watch-details .details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 30px;
    max-width: 500px;
}

.watch-detail-page-2 .watch-details .details-section {
    position: relative;
    padding-left: 15px;
}

.watch-detail-page-2 .watch-details .details-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        rgba(244, 223, 186, 0.5) 0%,
        rgba(244, 223, 186, 0.2) 50%,
        rgba(244, 223, 186, 0.5) 100%);
}

.watch-detail-page-2 .watch-details h4 {
    position: relative;
    padding-bottom: 6px;
    margin-bottom: 8px;
    font-size: 11px !important;
}

.watch-detail-page-2 .watch-details h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background: rgba(244, 223, 186, 0.3);
}

.more-info-button {
    background: var(--primary-color);
    color: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--primary-color);
    padding: 10px 24px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 15px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.more-info-button:hover {
    background: #6a211f;
    border-color: #6a211f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(93, 29, 27, 0.4);
}

.watch-detail-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Nouvelle structure organisée */
.watch-header {
    width: 100%;
    margin-bottom: 20px;
    order: 1;
    padding-bottom: 0;
}

.watch-brand {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif !important;
    font-size: 12px;
    font-weight: 300;
    color: rgba(244, 223, 186, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.watch-title-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
}

.watch-price-in-header {
    padding: 10px 0;
    border-bottom: 1px solid rgba(244, 223, 186, 0.1);
    text-align: left;
    margin-bottom: 0;
}

.watch-title {
    font-family: var(--font-serif) !important;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 400;
    color: #f4dfba;
    margin: 0;
    line-height: 1.2;
}

.watch-material {
    font-family: var(--font-serif) !important;
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 300;
    color: rgba(244, 223, 186, 0.8);
    text-align: right;
}

.watch-description {
    margin: 15px 0;
    padding: 10px 0;
    border-bottom: 1px solid rgba(244, 223, 186, 0.1);
    order: 4;
}

.watch-description p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif !important;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(244, 223, 186, 0.9);
    margin-bottom: 16px;
}

.watch-description p:last-child {
    margin-bottom: 0;
}

.watch-specs-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px 30px;
    margin: 15px 0;
    padding: 10px 0;
    border-bottom: 1px solid rgba(244, 223, 186, 0.1);
    order: 3;
    width: 100%;
}

.watch-spec-label {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif !important;
    font-size: 11px;
    font-weight: 300;
    color: rgba(244, 223, 186, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.watch-spec-value {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif !important;
    font-size: 13px;
    font-weight: 300;
    color: #f4dfba;
    line-height: 1.6;
}

.watch-price-in-header .watch-price-large {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif !important;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 100;
    color: #f4dfba;
    margin: 0;
}

.watch-price-large {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif !important;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 100;
    color: #f4dfba;
    margin: 0;
}

.watch-action-button {
    width: 100%;
    max-width: 400px;
    margin: 40px auto 0;
    padding: 16px 32px;
    background: transparent;
    border: 1px solid #f4dfba;
    color: #f4dfba;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
    border-radius: 2px;
    order: 6;
}

.watch-back-button {
    margin-top: 20px;
    opacity: 0.8;
}

.watch-action-button:hover {
    background: rgba(244, 223, 186, 0.1);
    border-color: rgba(244, 223, 186, 0.8);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .watch-header {
        order: 2;
    }
    
    .watch-image-container {
        order: 1;
    }
    
    .watch-title-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .watch-material {
        text-align: left;
    }
    
    .watch-specs-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.watch-image-container {
    order: 2;
    width: 100%;
}

.watch-text-container {
    order: 2;
    width: 100%;
    transition: opacity 0.4s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}


.watch-detail-page-2 .watch-info,
.watch-detail-page-2 .watch-details {
    transition: opacity 0.5s ease;
}

.watch-detail-page-2 .watch-details {
    opacity: 0;
    display: none;
}

.watch-detail-content.swapped .watch-details {
    opacity: 1;
    display: block;
    animation: fadeIn 0.5s ease 0.2s forwards;
}

.watch-detail-content:not(.swapped) .watch-info {
    opacity: 1;
    display: block;
    animation: fadeIn 0.5s ease 0.2s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.more-info-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.watch-detail-page-2 .watch-info::before,
.watch-detail-page-2 .watch-info::after {
    display: none;
}

@keyframes shimmer {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translate(10px, 10px) rotate(5deg);
        opacity: 0.5;
    }
}

.watch-detail-page .watch-info {
    border: none;
    padding: 0;
    margin: 0;
    text-align: left;
    pointer-events: auto;
}

.watch-detail-page .watch-info * {
    pointer-events: auto;
}

.watch-detail-page .watch-price {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif !important;
    color: var(--text-dark);
    font-size: 32px;
    font-weight: 100;
    margin-bottom: 24px;
    text-shadow: none;
}

.watch-detail-page .interest-button {
    margin-top: 32px;
    padding: 10px 24px;
    background: var(--primary-color);
    color: var(--text-light);
    border: 1px solid var(--primary-color);
    font-size: 10px;
    pointer-events: auto !important;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.watch-detail-page .interest-button:hover {
    background: #6a211f;
    border-color: #6a211f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(93, 29, 27, 0.4);
}

.watch-detail-page .watch-buttons .interest-button,
.watch-detail-page .watch-buttons .catalogue-button,
.watch-detail-page .watch-buttons .more-info-button {
    padding: 10px 24px !important;
    font-size: 10px !important;
}

.catalogue-page .section-label {
    color: rgba(26, 26, 26, 0.6);
}

/* Styles pour la barre de recherche et le filtre */
.catalogue-filters {
    margin-bottom: 50px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.catalogue-filters #searchInput {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid rgba(26, 26, 26, 0.2);
    background: rgba(255, 255, 255, 0.9);
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--text-dark);
    border-radius: 0;
    transition: all 0.3s ease;
    outline: none;
}

.catalogue-filters #searchInput:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 3px rgba(93, 29, 27, 0.1);
}

.catalogue-filters #searchInput::placeholder {
    color: rgba(26, 26, 26, 0.4);
}

.catalogue-filters #brandFilter {
    padding: 12px 20px;
    border: 1px solid rgba(26, 26, 26, 0.2);
    background: rgba(255, 255, 255, 0.9);
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--text-dark);
    border-radius: 0;
    cursor: pointer;
    min-width: 200px;
    transition: all 0.3s ease;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231a1a1a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.catalogue-filters #brandFilter:focus {
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 3px rgba(93, 29, 27, 0.1);
}

.catalogue-filters #brandFilter:hover {
    border-color: rgba(26, 26, 26, 0.4);
}

#resultsCount {
    margin-bottom: 30px;
    font-family: var(--font-sans);
    font-size: 13px;
    color: rgba(26, 26, 26, 0.6);
    font-weight: 300;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .catalogue-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .catalogue-filters #searchInput,
    .catalogue-filters #brandFilter {
        width: 100%;
        min-width: auto;
    }
}

.collection-section {
    position: relative;
    z-index: 1;
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px) saturate(150%);
    -webkit-backdrop-filter: blur(15px) saturate(150%);
    overflow: hidden;
}

.collection-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 70%
    );
    animation: liquidShine 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 60px 40px;
    padding: 40px 0;
    position: relative;
    z-index: 1;
    pointer-events: auto;
}

.watch-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2d0f0e 0%, #1a0807 50%, #3d1514 100%);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(91, 31, 30, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(45, 15, 14, 0.4) 0%, transparent 50%),
        linear-gradient(135deg, #2d0f0e 0%, #1a0807 50%, #3d1514 100%);
    border: 1px solid rgba(244, 223, 186, 0.1);
    border-radius: 0;
    padding: 20px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                backdrop-filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    will-change: transform;
    text-decoration: none;
    pointer-events: auto !important;
    z-index: 10;
    display: block;
}


.watch-card img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.watch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
}

.watch-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 0;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.watch-card:hover::after {
    opacity: 1;
}

.watch-card:hover::before {
    opacity: 1;
    animation: watchShimmer 2s ease-in-out infinite;
}

@keyframes watchShimmer {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(-100%);
    }
    50% {
        opacity: 1;
        transform: translateX(100%);
    }
}


.watch-card:hover {
    transform: translateY(-15px) scale(1.03) !important;
    opacity: 1 !important;
    border-color: rgba(244, 223, 186, 0.5) !important;
    box-shadow: 
        0 30px 100px rgba(0, 0, 0, 0.6),
        0 15px 40px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(244, 223, 186, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.5),
        inset 0 -2px 0 rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(35px) saturate(220%) !important;
    -webkit-backdrop-filter: blur(35px) saturate(220%) !important;
    background: linear-gradient(135deg, #3d1f1e 0%, #2a1817 50%, #4d2524 100%) !important;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(91, 31, 30, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(45, 15, 14, 0.5) 0%, transparent 50%),
        linear-gradient(135deg, #3d1f1e 0%, #2a1817 50%, #4d2524 100%) !important;
}

.watch-img {
    width: 100%;
    height: auto;
    min-height: 200px;
    max-height: 400px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.98) contrast(1.08) saturate(1.1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    border-radius: 0 !important;
    transform-origin: center;
    pointer-events: none;
    background-color: transparent;
}

.watch-info {
    text-align: center;
    margin-top: 24px;
    position: relative;
    z-index: 3;
    padding-top: 20px;
    pointer-events: none;
}

.watch-name {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif !important;
    font-size: 16px;
    font-weight: 100;
    margin-bottom: 8px;
    color: var(--text-light);
    letter-spacing: 0.03em;
    line-height: 1.4;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    transform: translateY(0);
}

.watch-price {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif !important;
    font-size: 16px;
    font-weight: 100;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: var(--font-sans);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.interest-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 28px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.interest-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(93, 29, 27, 0.3), transparent);
    transition: left 0.6s ease;
}

.interest-button:hover::before {
    left: 100%;
}

.interest-button:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(93, 29, 27, 0.6);
    color: var(--primary-color);
    box-shadow: 
        0 6px 25px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(93, 29, 27, 0.3);
    transform: translateY(-2px);
}


.watch-card:hover .watch-img {
    transform: scale(1.1) translateY(-8px) !important;
    filter: brightness(1.15) contrast(1.15) saturate(1.2) !important;
    opacity: 1 !important;
}

.watch-card-2:hover .watch-img {
    transform: scale(1.15) rotate(-8deg);
    filter: brightness(1.05) contrast(1.15) saturate(1.2);
}

.watch-card:hover .watch-name {
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5), 0 0 25px rgba(244, 223, 186, 0.3);
    transform: translateY(-2px);
}

.watch-card:hover .watch-price {
    color: rgba(244, 223, 186, 1);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4), 0 0 15px rgba(244, 223, 186, 0.2);
    transform: translateY(-2px);
}

/* ===================================
   HERITAGE SECTION
   =================================== */

.heritage {
    background: linear-gradient(135deg, #2d0f0e 0%, #1a0807 50%, #3d1514 100%);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(91, 31, 30, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(45, 15, 14, 0.4) 0%, transparent 50%),
        linear-gradient(135deg, #2d0f0e 0%, #1a0807 50%, #3d1514 100%);
    padding: 150px 0;
    color: #f4dfba;
}

.heritage-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.heritage-image {
    position: relative;
}

.heritage-photo {
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.heritage-photo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    border: 2px solid rgba(93, 29, 27, 0.3);
    border-radius: 50%;
}

.heritage-photo::after {
    content: 'MACHIAVELLI';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-serif);
    font-size: 48px;
    color: rgba(93, 29, 27, 0.2);
    letter-spacing: 8px;
    font-weight: 800;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 30px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 30px;
    bottom: -30px;
    width: 1px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-year {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -18px;
    top: 12px;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

.timeline-content h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.timeline-content p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===================================
   CRAFTSMANSHIP SECTION
   =================================== */

.craftsmanship {
    background: #5d1d1b;
    padding: 150px 0;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.craftsmanship-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}


.craftsmanship .section-label {
    color: rgba(255, 255, 255, 0.6);
}

.craftsmanship .container {
    position: relative;
    z-index: 2;
}

.craftsmanship-grid {
    display: flex;
    flex-direction: row;
    gap: 40px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.craftsmanship-grid::-webkit-scrollbar {
    display: none;
}

.craft-card {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #3d1514 0%, #2d0f0e 100%);
    border: 1px solid rgba(244, 223, 186, 0.2);
    border-radius: 6px;
    transition: var(--transition-smooth);
    min-width: 320px;
    max-width: 360px;
    flex: 0 0 auto;
    scroll-snap-align: center;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.2);
    color: #f4dfba;
}

.craft-card:hover {
    border-color: rgba(244, 223, 186, 0.4);
    transform: translateY(-8px);
    box-shadow: 
        0 16px 40px rgba(0, 0, 0, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.15);
}

.craft-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    color: #5d1d1b;
}

.craft-icon svg {
    width: 100%;
    height: 100%;
}

.craft-card h3 {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #f4dfba;
    letter-spacing: 0.02em;
}

.craft-card p {
    color: rgba(244, 223, 186, 0.85);
    line-height: 1.75;
    font-size: 15px;
    font-weight: 300;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials {
    background: linear-gradient(135deg, #2d0f0e 0%, #1a0807 50%, #3d1514 100%);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(91, 31, 30, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(45, 15, 14, 0.4) 0%, transparent 50%),
        linear-gradient(135deg, #2d0f0e 0%, #1a0807 50%, #3d1514 100%);
    padding: 150px 0;
    color: #f4dfba;
}

.testimonials-slider {
    max-width: 900px;
    margin: 0 auto 50px;
    position: relative;
    height: 350px;
    z-index: 1;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: var(--transition-smooth);
    pointer-events: none;
    background: linear-gradient(135deg, #3d1514 0%, #2d0f0e 100%);
    border: 1px solid rgba(244, 223, 186, 0.2);
    padding: 60px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.4);
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.stars {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 30px;
    letter-spacing: 5px;
}

.testimonial-text {
    font-family: var(--font-elegant);
    font-size: 22px;
    line-height: 1.8;
    color: #f4dfba;
    margin-bottom: 40px;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid rgba(244, 223, 186, 0.3);
    padding-top: 25px;
}

.author-name {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 5px;
    color: #f4dfba;
}

.author-title {
    color: rgba(244, 223, 186, 0.7);
    font-size: 14px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
    pointer-events: auto !important;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--primary-color);
    color: white;
}

.slider-dots {
    display: flex;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(93, 29, 27, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
    pointer-events: auto !important;
    position: relative;
    z-index: 10;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact {
    background: linear-gradient(135deg, #2d0f0e 0%, #1a0807 50%, #3d1514 100%);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(91, 31, 30, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(45, 15, 14, 0.4) 0%, transparent 50%),
        linear-gradient(135deg, #2d0f0e 0%, #1a0807 50%, #3d1514 100%);
    padding: 150px 0;
    color: #f4dfba;
    position: relative;
}

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

.contact .section-label {
    color: rgba(26, 26, 26, 0.6);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
}

.contact-text {
    font-size: 15px;
    line-height: 1.85;
    color: rgba(26, 26, 26, 0.8);
    margin-bottom: 60px;
    font-weight: 300;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-item h4 {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: rgba(26, 26, 26, 0.7);
}

.contact-item p {
    color: rgba(26, 26, 26, 0.8);
    line-height: 1.8;
    font-size: 15px;
    font-weight: 300;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(26, 26, 26, 0.2);
    color: var(--text-dark);
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 300;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: rgba(26, 26, 26, 0.6);
}

.form-group label {
    position: absolute;
    left: 0;
    top: 15px;
    color: rgba(26, 26, 26, 0.6);
    font-size: 15px;
    font-weight: 300;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -20px;
    font-size: 11px;
    letter-spacing: 1px;
    color: rgba(26, 26, 26, 0.7);
}

.form-group textarea {
    resize: none;
}

.submit-button {
    padding: 14px 40px;
    background: transparent;
    color: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(26, 26, 26, 0.3);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    align-self: flex-start;
    font-family: var(--font-sans);
}

.submit-button:hover {
    color: var(--text-light);
    border-color: var(--primary-color);
    background: var(--primary-color);
}

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

.footer {
    background: linear-gradient(135deg, #2d0f0e 0%, #1a0807 50%, #3d1514 100%);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(91, 31, 30, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(45, 15, 14, 0.4) 0%, transparent 50%),
        linear-gradient(135deg, #2d0f0e 0%, #1a0807 50%, #3d1514 100%);
    color: #f4dfba;
    padding: 100px 0 40px;
    border-top: 1px solid rgba(244, 223, 186, 0.2);
    position: relative;
    z-index: 100;
    pointer-events: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 30px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    opacity: 0.9;
    transition: var(--transition-smooth);
    display: block;
}

.footer-logo-img:hover {
    opacity: 1;
}

.footer-tagline {
    font-family: var(--font-sans);
    color: rgba(244, 223, 186, 0.7);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.social-links {
    display: flex;
    gap: 30px;
}

.social-link {
    color: rgba(244, 223, 186, 0.7);
    text-decoration: none;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    pointer-events: auto;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.social-link:hover {
    color: rgba(244, 223, 186, 1);
}

.footer-section h4 {
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-sans);
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: rgba(26, 26, 26, 0.6);
    text-decoration: none;
    font-size: 13px;
    font-weight: 300;
    transition: var(--transition-smooth);
}

.footer-section ul li a:hover {
    color: rgba(26, 26, 26, 0.9);
}

.footer-bottom {
    border-top: 1px solid rgba(244, 223, 186, 0.2);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 1px;
    color: rgba(244, 223, 186, 0.7);
    text-transform: uppercase;
    position: relative;
    z-index: 101;
    pointer-events: auto;
}

.footer-links {
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 102;
    pointer-events: auto;
}

.footer-links a {
    color: rgba(244, 223, 186, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 1px;
    pointer-events: auto !important;
    cursor: pointer;
    position: relative;
    z-index: 103;
    display: inline-block;
}

.footer-links a:hover {
    color: rgba(244, 223, 186, 1);
}

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

@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
    
    .nav-container {
        padding: 0 40px;
    }
    
    .heritage-container {
        padding: 0 40px;
        gap: 60px;
    }
}

@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: var(--transition-smooth);
        padding: 50px 0;
        gap: 30px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .heritage-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .timeline-item {
        grid-template-columns: 100px 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }
    
    .navbar-minimal {
        padding: 20px 25px;
    }
    
    .nav-minimal-link {
        font-size: 10px;
        letter-spacing: 1.5px;
    }
    
    .hero-content {
        padding-top: 3vh;
    }
    
    .hero-title {
        font-size: clamp(48px, 12vw, 72px);
        letter-spacing: 0.02em;
    }
    
    .hero-subline {
        font-size: 10px;
        letter-spacing: 2px;
    }
    
    .philosophy {
        padding: 100px 0;
    }
    
    .philosophy-text {
        font-size: 18px;
    }
    
    .about {
        padding: 100px 0;
    }
    
    .about-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image-frame {
        max-width: 100%;
    }
    
    .about-content .section-title {
        font-size: 32px;
    }
    
    .about-text {
        font-size: 14px;
    }
    
    .collection {
        padding: 0 !important;
    }
    
    .collection-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px;
    }
    
    .watch-detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
        display: flex;
        flex-direction: column;
    }
    
    .watch-image-container {
        order: 1;
    }
    
    .watch-text-container {
        order: 2;
    }
    
    .watch-detail-page-2 .watch-info,
    .watch-detail-page .watch-info {
        text-align: left !important;
    }
    
    .watch-detail-page-2 .watch-details {
        text-align: left !important;
    }
    
    .watch-detail-page-2 .watch-img,
    .watch-detail-page .watch-img {
        max-width: 100%;
        width: 100%;
    }
    
    .watch-detail-page-2 .watch-info .watch-price,
    .watch-detail-page .watch-info .watch-price,
    .watch-detail-page .watch-price {
        font-size: 32px !important;
        text-align: left !important;
    }
    
    .watch-image {
        height: 280px;
    }
    
    .watch-name {
        font-size: 18px;
    }
    
    .craftsmanship {
        padding: 100px 0;
    }
    
    .craftsmanship-grid {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
    }
    
    .craft-card {
        min-width: 85vw;
        max-width: 85vw;
        scroll-snap-align: start;
        padding: 40px 25px;
    }
    
    .testimonials {
        padding: 100px 0;
    }
    
    .testimonial-card {
        padding: 40px 25px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .contact {
        padding: 100px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-text {
        font-size: 14px;
    }
    
    .contact-details {
        gap: 30px;
    }
    
    .contact-item h4 {
        font-size: 11px;
    }
    
    .contact-item p {
        font-size: 14px;
    }
    
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .social-links {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .navbar-minimal {
        padding: 15px 20px;
    }
    
    .nav-minimal-link {
        font-size: 9px;
        letter-spacing: 1px;
    }
    
    .hero-content {
        padding-top: 2vh;
    }
    
    .hero-title {
        font-size: clamp(36px, 10vw, 56px);
        letter-spacing: 0.01em;
    }
    
    .hero-subline {
        font-size: 9px;
        letter-spacing: 1.5px;
        margin-top: 10px;
    }
    
    .section-label {
        font-size: 10px;
        letter-spacing: 2px;
    }
    
    .section-title {
        font-size: clamp(28px, 8vw, 40px);
    }
    
    .philosophy {
        padding: 80px 0;
    }
    
    .philosophy-text {
        font-size: 16px;
        line-height: 1.7;
    }
    
    .about {
        padding: 80px 0;
    }
    
    .about-content .section-title {
        font-size: 28px;
    }
    
    .about-tagline {
        font-size: 10px;
        margin-bottom: 30px;
    }
    
    .about-text {
        font-size: 13px;
        line-height: 1.75;
    }
    
    .collection {
        padding: 0 !important;
    }
    
    .collection-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
    
    .watch-card {
        padding: 30px 20px;
    }
    
    .watch-image {
        height: 250px;
        margin-bottom: 25px;
    }
    
    .watch-name {
        font-size: 16px;
    }
    
    .watch-description {
        font-size: 13px;
    }
    
    .watch-price {
        font-size: 20px;
    }
    
    .watch-detail-page-2 .watch-info .watch-price,
    .watch-detail-page .watch-info .watch-price,
    .watch-detail-page .watch-price {
        font-size: 32px !important;
        text-align: left !important;
    }
    
    .watch-detail-page-2 .watch-info,
    .watch-detail-page .watch-info {
        text-align: left !important;
    }
    
    .watch-detail-page-2 .watch-details {
        text-align: left !important;
    }
    
    .watch-detail-content {
        gap: 30px;
        display: flex;
        flex-direction: column;
    }
    
    .watch-image-container {
        order: 1;
    }
    
    .watch-text-container {
        order: 2;
    }
    
    .watch-detail-page-2 .watch-info,
    .watch-detail-page .watch-info {
        text-align: left !important;
    }
    
    .watch-detail-page-2 .watch-details {
        text-align: left !important;
    }
    
    .watch-detail-page-2 .watch-img,
    .watch-detail-page .watch-img {
        max-width: 100%;
        width: 100%;
    }
    
    .watch-button {
        padding: 10px 25px;
        font-size: 11px;
    }
    
    .craftsmanship {
        padding: 80px 0;
    }
    
    .craft-card {
        min-width: 90vw;
        padding: 35px 20px;
    }
    
    .craft-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 25px;
    }
    
    .craft-card h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .craft-card p {
        font-size: 13px;
        line-height: 1.7;
    }
    
    .testimonials {
        padding: 80px 0;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-text {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .stars {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .author-name {
        font-size: 16px;
    }
    
    .author-title {
        font-size: 12px;
    }
    
    .slider-controls {
        gap: 20px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .contact {
        padding: 80px 0;
    }
    
    .contact-text {
        font-size: 13px;
        margin-bottom: 40px;
    }
    
    .contact-details {
        gap: 25px;
    }
    
    .contact-item h4 {
        font-size: 10px;
        margin-bottom: 12px;
    }
    
    .contact-item p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 14px;
        padding: 12px 0;
    }
    
    .form-group label {
        font-size: 14px;
    }
    
    .submit-button {
        padding: 12px 30px;
        font-size: 10px;
        width: 100%;
    }
    
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-logo-img {
        height: 35px;
    }
    
    .footer-tagline {
        font-size: 10px;
        margin-bottom: 30px;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-link {
        font-size: 10px;
    }
    
    .footer-bottom {
        font-size: 10px;
    }
    
    .footer-links {
        gap: 20px;
        font-size: 10px;
    }
}

/* ===================================
   ANIMATIONS & UTILITIES
   =================================== */

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out forwards;
}

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

/* Smooth scroll padding for fixed navbar */
section {
    scroll-margin-top: 100px;
}

/* ===================================
   WIDGETS ANIMÉS DE LUXE
   =================================== */

/* Particules dorées flottantes */
.luxury-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: radial-gradient(circle, rgba(93, 29, 27, 0.8), transparent);
    border-radius: 50%;
    animation: floatParticle 15s infinite ease-in-out;
    box-shadow: 0 0 10px rgba(93, 29, 27, 0.6);
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px) scale(1);
        opacity: 0;
    }
}


/* Animation au scroll depuis la droite pour les textes */
.slide-in-right {
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
                transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

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

/* Optimisation mobile pour éviter le double flash */
@media (max-width: 768px) {
    .slide-in-right {
        transform: translateX(40px);
        transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .slide-in-right-img {
        transform: translateX(50px);
        transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

/* Réduction des animations pour les utilisateurs qui préfèrent moins de mouvement */
@media (prefers-reduced-motion: reduce) {
    .slide-in-right,
    .slide-in-right-img {
        transform: none !important;
        transition: opacity 0.3s ease !important;
    }
    
    .slide-in-right.visible,
    .slide-in-right-img.visible {
        transform: none !important;
    }
}

/* Animation fade simple pour le texte Notre Vision */
.fade-in-simple {
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-simple.visible {
    opacity: 1;
}

/* Animation au scroll depuis la droite pour les images */
.slide-in-right-img {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1),
                transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.slide-in-right-img.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Animation au scroll pour les sections (ancienne - gardée pour compatibilité) */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Effet de relief sur les titres */
.section-title {
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(93, 29, 27, 0.1);
}

/* Animation de pulsation subtile */
@keyframes subtlePulse {
    0%, 100% { 
        box-shadow: 
            0 4px 20px rgba(0, 0, 0, 0.3),
            inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    }
    50% { 
        box-shadow: 
            0 6px 30px rgba(0, 0, 0, 0.4),
            0 0 20px rgba(93, 29, 27, 0.1),
            inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    }
}

/* Styles pour la page Contact */
.social-contact-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border: 1px solid rgba(244, 223, 186, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: #f4dfba;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-contact-link:hover {
    background: rgba(244, 223, 186, 0.1);
    border-color: rgba(244, 223, 186, 0.6);
    transform: translateX(5px);
}

#contactForm input:focus,
#contactForm textarea:focus {
    outline: none;
    border-color: rgba(244, 223, 186, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

#contactForm button:hover {
    background: rgba(244, 223, 186, 0.1);
    transform: translateY(-2px);
}

/* Styles pour les spécifications des montres */
.watch-specs,
.spec-item,
.spec-item span {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif !important;
    font-weight: 100 !important;
}

.watch-detail-page .section-title {
    font-family: var(--font-sans) !important;
}

/* Responsive pour la page Contact */
@media (max-width: 768px) {
    .contact-content-wrapper {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}

@media (max-width: 480px) {
    .contact-content-wrapper {
        gap: 30px !important;
    }
    
    .social-contact-link {
        padding: 15px;
    }
}

/* ===================================
   PERFORMANCE OPTIMIZATIONS
   =================================== */

/* Optimisations ciblées uniquement pour les problèmes de scroll */
/* Ne pas toucher aux menus et transitions normales */

/* Réduire uniquement les animations lourdes de scroll sur mobile */
@media (max-width: 768px) {
    /* Désactiver uniquement les animations de parallax et scroll complexes */
    .hero-content,
    .hero-overlay {
        transform: none !important;
        will-change: auto !important;
    }
    
    /* Garder les transitions du menu et autres éléments */
    /* Les transitions normales restent actives */
}

/* Classe pour réduire les animations (uniquement pour très anciens appareils) */
.reduce-motion .hero-content,
.reduce-motion .hero-overlay,
.reduce-motion .philosophy-content {
    transform: none !important;
    will-change: auto !important;
}

/* Optimiser will-change - seulement pour les éléments qui scrollent beaucoup */
@media (max-width: 768px) {
    .hero-video,
    .hero-overlay,
    .hero-content {
        will-change: auto !important;
    }
}


