@font-face {
    font-family: 'Didot';
    src: url('fonts/Didot.woff2') format('woff2'),
         url('fonts/Didot.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --white: #FFFFFF;
    --off-white: #F8F8F8;
    --cream: #FCF9F2;
    --black: #000000;
    --rich-black: #111111;
    --dark-gray: #222222;
    --mid-gray: #666666;
    --light-gray: #999999;
    --gold: #D4AF37;
    --light-gold: #E5C365;
    --dark-gold: #B8860B;
    --gold-gradient: linear-gradient(45deg, #B8860B 0%, #D4AF37 25%, #F4E6AA 50%, #D4AF37 75%, #B8860B 100%);
    --platinum: #E5E4E2;
    --silver: #C0C0C0;
    --luxury-gradient: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(30,30,30,0.7));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--white);
    color: var(--rich-black);
    font-weight: 300;
    overflow-x: hidden;
}

/* Navigation élégante */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2.5rem;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent);
    backdrop-filter: blur(8px);
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.85);
    padding: 0.8rem 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo {
    width: 60px;
    height: 60px;
}

.logo img {
    width: 120%;
    height: 120%;
    object-fit: contain;
    display: block;
}

.menu-btn, .search-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.75em;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    border-radius: 30px;
    padding: 0.8rem 1.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-weight: 400;
}

.menu-btn:hover, .search-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.menu-btn i, .search-btn i {
    font-size: 1.1em;
    opacity: 0.9;
}

/* Hero Section avec vidéo en continu */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.1) saturate(1.05);
    transform: scale(1.01);
}

.video-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.4) 40%,
        rgba(0,0,0,0.6) 100%
    );
    box-shadow: inset 0 0 150px rgba(0,0,0,0.6);
    pointer-events: none;
}

/* Hero Content */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    text-align: center;
    color: var(--white);
    z-index: 10;
    width: 75%;
    max-width: 850px;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 1.8rem;
    position: relative;
    opacity: 0;
    transform: translateY(-30px);
    animation: titleEntry 1.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    background: var(--gold-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleEntry 1.8s cubic-bezier(0.19, 1, 0.22, 1) forwards,
             shimmer 8s linear infinite;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.tagline {
    font-size: clamp(1rem, 1.6vw, 1.3rem);
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: taglineEntry 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s forwards;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-button {
    padding: 1.1rem 2.5rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--white);
    font-size: 0.9rem;
    letter-spacing: 3px;
    font-weight: 400;
    transform: translateY(20px);
    opacity: 0;
    animation: buttonEntry 1s ease 0.4s forwards;
    transition: all 0.4s ease;
    border-radius: 2px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(212, 175, 55, 0.2);
}

/* Logo des marques prestigieuses */
.brands-showcase {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.5rem;
    z-index: 10;
    padding: 0 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 1s forwards;
}

.brand {
    opacity: 0.8;
    transition: all 0.3s ease;
}

.brand:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.brand img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* Indicateur de défilement */
.scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
}

.mouse {
    width: 24px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    position: relative;
    margin-bottom: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

.arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.arrows span {
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(255, 255, 255, 0.4);
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    transform: rotate(45deg);
    animation: arrowDown 2s infinite;
}

.arrows span:nth-child(2) {
    animation-delay: 0.2s;
}

/* Side Menu */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.side-menu {
    position: fixed;
    top: 0;
    left: -400px;
    width: 360px;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-right: 1px solid rgba(212, 175, 55, 0.1);
    z-index: 999;
    transition: all 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    padding: 3rem 2rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.side-menu.active {
    left: 0;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.menu-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 3rem;
}

.close-menu {
    position: relative;
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.close-menu::before,
.close-menu::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.7);
    top: 50%;
    left: 0;
    transition: all 0.4s ease-in-out;
}

.close-menu::before {
    transform: rotate(45deg);
}

.close-menu::after {
    transform: rotate(-45deg);
}

.close-menu:hover::before,
.close-menu:hover::after {
    background-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.close-menu:hover {
    transform: rotate(180deg);
    scale: 1.1;
}

.menu-links {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: calc(100% - 12rem);
    gap: 2rem;
}

.menu-item {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 3px;
    padding: 0.8rem 0;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 0;
    font-weight: 300;
}

.menu-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: width 0.4s ease;
}

.menu-item:hover::after {
    width: 100%;
}

.side-menu.active .menu-item {
    opacity: 1;
    transform: translateX(0);
}

.menu-item:hover {
    color: var(--gold);
    transform: translateX(10px);
}

/* Menu Footer */
.menu-footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    transition-delay: 0.8s;
}

.side-menu.active .menu-footer {
    opacity: 1;
    transform: translateY(0);
}

.menu-contact {
    margin-bottom: 1.5rem;
}

.menu-contact p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-contact i {
    color: var(--gold);
}

.menu-footer .social-icons {
    display: flex;
    gap: 15px;
}

.menu-footer .social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.menu-footer .social-icons a:hover {
    background: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Menu Items Animation Delays */
.menu-item:nth-child(1) { transition-delay: 0.2s; }
.menu-item:nth-child(2) { transition-delay: 0.3s; }
.menu-item:nth-child(3) { transition-delay: 0.4s; }
.menu-item:nth-child(4) { transition-delay: 0.5s; }

/* Sections générales */
section {
    padding: 7rem 0;
    position: relative;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
    color: var(--rich-black);
    font-weight: 500;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--gold);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--mid-gray);
    max-width: 600px;
    margin: 1.5rem auto 0;
    font-weight: 300;
    line-height: 1.6;
}

/* Section Marques de luxe */
.luxury-brands-section {
    background-color: var(--white);
    padding: 7rem 0 5rem;
}

.brands-container {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.second-row {
    justify-content: center;
    max-width: 1000px;
}

.brand-card {
    flex: 1 1 350px;
    max-width: 350px;
    background-color: var(--white);
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.brand-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 55, 0.2);
}

.brand-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.brand-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.brand-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7));
    opacity: 0.7;
    transition: opacity 0.5s ease;
}

.brand-card:hover .brand-overlay {
    opacity: 0.5;
}

.brand-card:hover .brand-image img {
    transform: scale(1.1);
}

.brand-logo {
    position: absolute;
    top: 190px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
    padding: 12px;
}

.brand-logo img {
    width: 80%;
    height: auto;
    object-fit: contain;
}

.brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--rich-black);
    margin: 3.5rem 1.5rem 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.brand-card:hover .brand-title {
    color: var(--gold);
}

.brand-description {
    font-size: 0.95rem;
    color: var(--mid-gray);
    margin: 0 1.5rem 1.8rem;
    line-height: 1.6;
    text-align: center;
    min-height: 80px;
}

.brand-link {
    display: block;
    text-decoration: none;
    color: var(--gold);
    text-align: center;
    margin: 0 1.5rem 2rem;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.brand-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.brand-link:hover {
    color: var(--dark-gold);
}

.brand-link:hover i {
    transform: translateX(8px);
}

/* Délais d'animation pour les cartes de marque */
.brand-card:nth-child(1) { transition-delay: 0.1s; }
.brand-card:nth-child(2) { transition-delay: 0.2s; }
.brand-card:nth-child(3) { transition-delay: 0.3s; }
.brand-card:nth-child(4) { transition-delay: 0.4s; }
.brand-card:nth-child(5) { transition-delay: 0.5s; }

/* Section Nouveautés */
.new-watches-section {
    background-color: var(--off-white);
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
}

.new-watches-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/subtle-pattern.png') repeat;
    opacity: 0.04;
    pointer-events: none;
}

.watches-slider {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.slider-controls {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 10;
}

.slider-prev, .slider-next {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--rich-black);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slider-prev:hover, .slider-next:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.slider-prev.disabled, .slider-next.disabled {
    opacity: 0.4;
    pointer-events: none;
}

.watches-slider-container {
    display: flex;
    gap: 2.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 1.5rem 0;
}

.watches-slider-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera*/
}

.watch-card {
    flex: 0 0 300px;
    background: var(--white);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.watch-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 175, 55, 0.2);
}

.watch-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(212, 175, 55, 0.9);
    color: var(--white);
    padding: 0.3rem 0.9rem;
    font-size: 0.7rem;
    border-radius: 2px;
    letter-spacing: 1px;
    z-index: 2;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.watch-image {
    height: 350px;
    overflow: hidden;
    position: relative;
    background-color: var(--cream);
}

.watch-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 80%, rgba(255, 255, 255, 0.5));
    pointer-events: none;
}

.watch-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.8s ease;
}

.watch-card:hover .watch-image img {
    transform: scale(1.05);
}

.watch-info {
    padding: 1.8rem;
    background: var(--white);
    text-align: center;
}

.watch-brand {
    font-size: 0.8rem;
    color: var(--mid-gray);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.watch-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
    color: var(--rich-black);
    font-weight: 500;
    transition: all 0.3s ease;
}

.watch-card:hover .watch-title {
    color: var(--gold);
}

.watch-subtitle {
    font-size: 0.85rem;
    color: var(--mid-gray);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.watch-price {
    margin-bottom: 1.8rem;
}

.price-amount {
    font-size: 1.5rem;
    color: var(--rich-black);
    font-weight: 500;
}

.watch-btn {
    width: 100%;
    padding: 0.9rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 2px;
    font-weight: 500;
}

.watch-btn:hover {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Section Services */
.services-section {
    background-color: var(--rich-black);
    padding: 5rem 0;
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    flex-wrap: wrap;
}

.service-item {
    flex: 1 1 300px;
    max-width: 350px;
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    transition: all 0.4s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    font-weight: 500;
}

.service-description {
    font-size: 0.95rem;
    color: var(--light-gray);
    line-height: 1.6;
}

/* Footer */
.site-footer {
    background-color: var(--rich-black);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 3rem;
}

.footer-logo {
    flex: 1 1 200px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.footer-logo img {
    width: 90px;
    height: auto;
}

.footer-links {
    flex: 3 1 600px;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-column {
    flex: 1 1 200px;
}

.footer-column h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.7rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 300;
}

.footer-column a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-column address {
    font-style: normal;
    font-weight: 300;
}

.footer-column address p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-column address i {
    color: var(--gold);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.8rem;
}

.social-icons a {
    background: rgba(255, 255, 255, 0.08);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
}

.social-icons a:hover {
    background: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.social-icons a i {
    color: var(--white);
    font-size: 1.1rem;
}

.footer-bottom {
    margin-top: 4rem;
    padding: 1.5rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.footer-bottom p {
    font-size: 0.9rem;
    font-weight: 300;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 300;
}

.footer-legal a:hover {
    color: var(--gold);
}

/* Animations */
@keyframes titleEntry {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes taglineEntry {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes buttonEntry {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes scrollWheel {
    0% { opacity: 1; top: 6px; }
    50% { opacity: 1; top: 20px; }
    100% { opacity: 0; top: 20px; }
}

@keyframes arrowDown {
    0% { opacity: 0; transform: rotate(45deg) translate(-5px, -5px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(5px, 5px); }
}

/* Media Queries */
@media screen and (max-width: 992px) {
    .brands-container {
        flex-wrap: wrap;
    }
    
    .brand-card {
        flex: 1 1 300px;
    }
    
    .services-container {
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }
    
    .navbar.scrolled {
        padding: 0.8rem 1.5rem;
    }
    
    .logo {
        width: 60px;
        height: 60px;
    }
    
    .hero-content {
        width: 90%;
    }

    .side-menu {
        width: 100%;
    }

    .menu-btn span, .search-btn span {
        display: none;
    }

    .menu-btn, .search-btn {
        padding: 0.6rem;
    }

    .main-title {
        font-size: clamp(1.8rem, 3vw, 2.5rem);
        letter-spacing: 4px;
    }

    .tagline {
        font-size: clamp(0.9rem, 2vw, 1.1rem);
        letter-spacing: 2px;
    }
    
    .brands-showcase {
        flex-wrap: wrap;
        gap: 2rem;
        bottom: 50px;
        justify-content: center;
    }
    
    .watch-card {
        flex: 0 0 250px;
    }
    
    .cta-button {
        width: 100%;
    }
    
    .slider-controls {
        padding: 0;
    }
    
    .slider-prev, .slider-next {
        width: 35px;
        height: 35px;
    }
    
    .scroll-indicator {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .brand-card {
        flex: 1 1 100%;
    }
    
    .watches-slider {
        padding: 0 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Animation des sections au défilement */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Effet de navigation fixe lors du défilement */
.navbar.scrolled .menu-btn, 
.navbar.scrolled .search-btn {
    padding: 0.6rem 1.2rem;
}

/* Effet de surbrillance sur les boutons */
.watch-btn:focus, .cta-button:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.5);
}

/* Styles pour le dark mode */
@media (prefers-color-scheme: dark) {
    :root {
        --white: #141414;
        --off-white: #1a1a1a;
        --cream: #1a1a1a;
        --rich-black: #f5f5f5;
        --mid-gray: #cccccc;
        --light-gray: #aaaaaa;
    }
}

/* Styles pour la popup de commande */
.order-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.order-popup.active {
    display: flex;
    opacity: 1;
}

.popup-content {
    background-color: var(--white);
    border-radius: 4px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    animation: popupEntry 0.4s ease forwards;
}

@keyframes popupEntry {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1;
    font-size: 1.2rem;
    color: var(--rich-black);
    transition: all 0.3s ease;
}

.close-popup:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.popup-product-details {
    display: flex;
    flex-wrap: wrap;
    padding: 2rem;
}

.popup-product-image {
    flex: 1 1 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.popup-product-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
}

.popup-product-info {
    flex: 1 1 60%;
    padding: 1rem 2rem;
}

.popup-product-brand {
    color: var(--mid-gray);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.popup-product-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--rich-black);
    margin-bottom: 1rem;
    font-weight: 600;
}

.popup-product-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--mid-gray);
    margin-bottom: 2rem;
}

.popup-product-price {
    margin-bottom: 2rem;
}

.popup-price-amount {
    font-size: 1.6rem;
    color: var(--rich-black);
    font-weight: 500;
}

.popup-product-quantity {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.popup-product-quantity span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--rich-black);
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 2px;
}

.quantity-decrease,
.quantity-increase {
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 0.8rem;
    color: var(--mid-gray);
    transition: all 0.3s ease;
}

.quantity-decrease:hover,
.quantity-increase:hover {
    background-color: rgba(0,0,0,0.05);
    color: var(--gold);
}

.quantity-input {
    width: 50px;
    height: 36px;
    border: none;
    border-left: 1px solid rgba(0,0,0,0.1);
    border-right: 1px solid rgba(0,0,0,0.1);
    text-align: center;
    font-size: 0.9rem;
    color: var(--rich-black);
    appearance: none;
    -moz-appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.popup-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    margin-bottom: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.popup-total span:first-child {
    font-size: 1rem;
    font-weight: 500;
    color: var(--rich-black);
}

.popup-total-price {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold);
}

.validate-order-btn {
    width: 100%;
    padding: 1rem;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 2px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 500;
}

.validate-order-btn:hover {
    background: var(--dark-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

@media screen and (max-width: 768px) {
    .popup-product-details {
        flex-direction: column;
    }
    
    .popup-product-image {
        padding-bottom: 0;
    }
    
    .popup-product-info {
        padding: 1rem 0;
    }
}

.social-icons svg {
    width: 24px;
    height: 24px;
    fill: #000; /* couleur normale */
    transition: fill 0.3s;
  }
  
  .social-icons a:hover svg {
    fill: #E1306C; /* couleur officielle Instagram au hover */
  }

  .social-icons svg {
    width: 24px;
    height: 24px;
    fill: #000; /* Couleur normale */
    transition: fill 0.3s;
  }
  
  .social-icons a:hover svg {
    fill: #1877F2; /* Bleu officiel Facebook au survol */
  }
  

  .social-icons svg {
    width: 24px;
    height: 24px;
    fill: #000; /* Couleur normale */
    transition: fill 0.3s;
  }
  
  .social-icons a:hover svg {
    fill: #E60023; /* Couleur officielle Pinterest au hover */
  }
  
  .social-icons svg {
    width: 24px;
    height: 24px;
    fill: #000; /* ou blanc #fff selon ton design */
    transition: fill 0.3s;
  }
  
  .social-icons a:hover svg {
    fill: #69C9D0; /* couleur officielle TikTok ou autre couleur au survol */
  }
  