
:root {
    --primary-color: #5D5CDE;
    --secondary-color: #ff0000; /* Rouge plus vif */
    --accent-color: #0062ff;
    --gold-color: #f0c14b;
    --blue-accent: #0062ff;
    --text-light: #ffffff;
    --text-dark: #0a0a15;
    --bg-light: #ffffff;
    --bg-dark: #181818;
    --bg-card-light: #f8f9fa;
    --bg-card-dark: #2a2a3a;
    --border-light: rgba(0, 0, 0, 0.1);
    --border-dark: rgba(255, 255, 255, 0.1);
    --shadow-light: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-dark: 0 8px 30px rgba(0, 0, 0, 0.5);
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --red-glow: 0 0 10px rgba(255, 0, 0, 0.7), 0 0 20px rgba(255, 0, 0, 0.4);
    --blue-glow: 0 0 10px rgba(0, 98, 255, 0.7), 0 0 20px rgba(0, 98, 255, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
    transition: var(--transition-normal);
}

/* Mode sombre */
.dark body {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: var(--bg-dark);
        color: var(--text-light);
    }
    html {
        color-scheme: dark;
    }
}

/* Styles de la barre de navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition-normal);
    border-bottom: 1px solid var(--secondary-color);
}

.dark .navbar {
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.brand {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--gold-color), var(--blue-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 1px;
    transition: var(--transition-normal);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.brand span.gold {
    color: var(--gold-color);
}

.brand span.blue {
    color: var(--blue-accent);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-normal);
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to right, var(--secondary-color), var(--blue-accent));
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.theme-toggle {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

/* Logo flottant */
.floating-logo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    transform: scale(0);
    opacity: 0;
    border: 2px solid var(--secondary-color);
}

.floating-logo.visible {
    transform: scale(1);
    opacity: 1;
    animation: pulse-glow 3s infinite alternate;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 5px var(--secondary-color);
    }
    100% {
        box-shadow: 0 0 20px var(--secondary-color);
    }
}

.floating-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Styles du carrousel héro avec transitions modernes */
.hero-carousel {
    margin-top: 0;
    padding-top: 80px;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.carousel-container {
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    perspective: 1200px;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 10%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0s, visibility 0s;
    transform-origin: center center;
    will-change: transform, opacity;
    overflow: hidden;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Transitions de slides modernes */
.carousel-slide.transition-fade-out {
    animation: fadeOut 0.8s forwards cubic-bezier(0.33, 1, 0.68, 1);
}

.carousel-slide.transition-fade-in {
    animation: fadeIn 0.8s forwards cubic-bezier(0.33, 1, 0.68, 1);
}

.carousel-slide.transition-slide-out-left {
    animation: slideOutLeft 0.8s forwards cubic-bezier(0.33, 1, 0.68, 1);
}

.carousel-slide.transition-slide-in-right {
    animation: slideInRight 0.8s forwards cubic-bezier(0.33, 1, 0.68, 1);
}

.carousel-slide.transition-slide-out-right {
    animation: slideOutRight 0.8s forwards cubic-bezier(0.33, 1, 0.68, 1);
}

.carousel-slide.transition-slide-in-left {
    animation: slideInLeft 0.8s forwards cubic-bezier(0.33, 1, 0.68, 1);
}

.carousel-slide.transition-zoom-out {
    animation: zoomOut 0.8s forwards cubic-bezier(0.33, 1, 0.68, 1);
}

.carousel-slide.transition-zoom-in {
    animation: zoomIn 0.8s forwards cubic-bezier(0.33, 1, 0.68, 1);
}

.carousel-slide.transition-flip-out {
    animation: flipOut 0.8s forwards cubic-bezier(0.33, 1, 0.68, 1);
}

.carousel-slide.transition-flip-in {
    animation: flipIn 0.8s forwards cubic-bezier(0.33, 1, 0.68, 1);
}

/* Définition des animations */
@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideOutLeft {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(-50px); opacity: 0; }
}

@keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutRight {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(50px); opacity: 0; }
}

@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes zoomOut {
    from { transform: scale(1); opacity: 1; }
    to { transform: scale(0.85); opacity: 0; }
}

@keyframes zoomIn {
    from { transform: scale(1.15); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes flipOut {
    from { transform: rotateY(0deg); opacity: 1; }
    to { transform: rotateY(-90deg); opacity: 0; }
}

@keyframes flipIn {
    from { transform: rotateY(90deg); opacity: 0; }
    to { transform: rotateY(0deg); opacity: 1; }
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.7);
    transition: all 1s ease;
}

.carousel-slide.active .slide-bg {
    animation: scaleBackground 8s ease infinite alternate;
}

@keyframes scaleBackground {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.slide-content {
    max-width: 600px;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border-left: 3px solid var(--secondary-color);
}

.carousel-slide.active .slide-content {
    animation: fadeInUp 1s 0.3s forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
}

.carousel-slide.active .slide-title {
    animation: fadeInUp 0.8s 0.5s forwards;
}

.slide-title .highlight {
    background: linear-gradient(45deg, var(--secondary-color), var(--blue-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
}

.slide-desc {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: var(--text-light);
    opacity: 0;
    transform: translateY(20px);
}

.carousel-slide.active .slide-desc {
    animation: fadeInUp 0.8s 0.7s forwards;
}

.slide-btn {
    background: linear-gradient(45deg, var(--secondary-color), var(--blue-accent));
    color: var(--text-light);
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(20px);
}

.carousel-slide.active .slide-btn {
    animation: fadeInUp 0.8s 0.9s forwards;
}

.slide-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.slide-btn:hover:before {
    left: 100%;
}

.slide-btn:hover {
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.7);
    transform: translateY(-3px);
}

.carousel-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: linear-gradient(45deg, var(--secondary-color), var(--blue-accent));
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.carousel-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    transform: translateY(-50%);
    z-index: 10;
}

.arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    color: white;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.arrow:hover {
    background: linear-gradient(45deg, var(--secondary-color), var(--blue-accent));
    color: var(--text-light);
    transform: scale(1.1);
    box-shadow: var(--red-glow);
}

/* Collection en vedette */
.collection {
    padding: 5rem 10%;
    background: radial-gradient(circle at center, rgba(255,0,0,0.03) 0%, rgba(0,0,0,0) 70%);
}

.dark .collection {
    background: radial-gradient(circle at center, rgba(255,0,0,0.05) 0%, rgba(0,0,0,0) 70%);
}

.section-title-container {
    position: relative;
    margin-bottom: 3rem;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
    z-index: 1;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    bottom: -10px;
    left: 20%;
    background: linear-gradient(to right, var(--secondary-color), var(--blue-accent));
    border-radius: 2px;
}

.watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
    font-weight: 900;
    opacity: 0.05;
    color: var(--text-dark);
    white-space: nowrap;
    z-index: 0;
}

.dark .watermark {
    opacity: 0.07;
    color: var(--text-light);
}

.collection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.collection-title {
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.collection-title:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    bottom: -10px;
    left: 0;
    background: linear-gradient(to right, var(--secondary-color), var(--blue-accent));
    border-radius: 2px;
}

.view-all {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.view-all:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--bg-card-light);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
}

.dark .product-card {
    background: var(--bg-card-dark);
    box-shadow: var(--shadow-dark);
    border: 1px solid var(--border-dark);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.15);
}

.product-img-wrapper {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.product-card:hover .product-img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.8rem;
    z-index: 2;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.quick-view-btn {
    background: var(--secondary-color);
    color: var(--text-light);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease 0.1s;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.product-card:hover .quick-view-btn {
    transform: translateY(0);
    opacity: 1;
}

.quick-view-btn:hover {
    background: var(--blue-accent);
    color: white;
    box-shadow: var(--blue-glow);
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

/* Section Catégories */
.categories {
    padding: 5rem 10%;
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.03), rgba(0, 0, 0, 0.05));
}

.dark .categories {
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.05), rgba(255, 255, 255, 0.03));
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.category-card {
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.dark .category-card {
    box-shadow: var(--shadow-dark);
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.category-card:hover .category-img {
    transform: scale(1.1);
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5));
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.category-count {
    font-size: 0.9rem;
    opacity: 0.8;
    color: var(--text-light);
    position: relative;
    display: inline-block;
    padding-left: 10px;
}

.category-count:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: var(--secondary-color);
    border-radius: 50%;
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 10%;
    position: relative;
    background: radial-gradient(circle at top right, rgba(255,0,0,0.03) 0%, rgba(0,0,0,0) 70%);
}

.dark .gallery-section {
    background: radial-gradient(circle at top right, rgba(255,0,0,0.05) 0%, rgba(0,0,0,0) 70%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.dark .gallery-item {
    box-shadow: var(--shadow-dark);
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.15);
}

.gallery-item:nth-child(1) {
    grid-column: span 5;
    grid-row: span 2;
}

.gallery-item:nth-child(2) {
    grid-column: span 3;
    grid-row: span 1;
}

.gallery-item:nth-child(3) {
    grid-column: span 4;
    grid-row: span 1;
}

.gallery-item:nth-child(4) {
    grid-column: span 3;
    grid-row: span 1;
}

.gallery-item:nth-child(5) {
    grid-column: span 4;
    grid-row: span 1;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

/* Section formulaire de contact */
.contact-section {
    padding: 5rem 10%;
    background: linear-gradient(45deg, #000000, #252525);
    border-radius: 20px;
    margin: 3rem 10%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--secondary-color);
}

.dark .contact-section {
    box-shadow: var(--shadow-dark);
}

.contact-section:before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 0, 0, 0.05);
    border-radius: 50%;
    top: -150px;
    right: -150px;
}

.contact-section:after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 0, 0, 0.05);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.contact-info {
    color: white;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    position: relative;
    display: inline-block;
}

.contact-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
}

.contact-desc {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.dark .contact-form {
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    position: relative;
    display: inline-block;
}

.form-title:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-light);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    color: var(--text-light);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.2);
}

.form-textarea {
    height: 120px;
    resize: none;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

/* Pied de page */
.footer {
    padding: 5rem 10% 2rem;
    background: #000000;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), var(--blue-accent), transparent);
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    color: var(--secondary-color);
}

.footer-col h4:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    bottom: -8px;
    left: 0;
    background: linear-gradient(to right, var(--secondary-color), var(--blue-accent));
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-link:before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-link:hover:before {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
    color: white;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Styles de la fenêtre modale */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: 90%;
    max-width: 900px;
    background: var(--bg-dark);
    border-radius: 15px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    transform: translateY(-50px);
    transition: all 0.4s ease;
    max-height: 90vh;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--secondary-color);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-image {
    height: 100%;
    overflow: hidden;
    position: relative;
}

.modal-image:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 0, 0, 0.1), transparent);
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-details {
    padding: 2rem;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2001;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.modal-close:hover {
    transform: rotate(90deg);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.7);
}

.modal-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.modal-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.modal-description {
    margin-bottom: 2rem;
    line-height: 1.6;
    color: var(--text-light);
}

.modal-sizes {
    margin-bottom: 1.5rem;
}

.size-title {
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.size-options {
    display: flex;
    gap: 0.5rem;
}

.size-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    color: var(--text-light);
}

.size-option:hover,
.size-option.active {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.modal-colors {
    margin-bottom: 2rem;
}

.color-options {
    display: flex;
    gap: 0.8rem;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.color-option:after {
    content: '';
    position: absolute;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.3s ease;
}

.color-option.active:after {
    transform: translate(-50%, -50%) scale(1);
}

.product-details {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.details-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.details-list {
    list-style: none;
}

.details-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    color: var(--text-light);
}

.details-list li:before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: inline-block;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.float {
    animation: float 3s ease-in-out infinite;
}

/* Effet néon clignotant */
.neon-text {
    animation: neon 1.5s ease-in-out infinite alternate;
}

@keyframes neon {
    from {
        text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px var(--secondary-color), 0 0 20px var(--secondary-color);
    }
    to {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px var(--secondary-color), 0 0 40px var(--secondary-color);
    }
}

/* Glitch effect for logo */
.glitch-effect {
    position: relative;
    animation: glitch 2s infinite alternate-reverse;
}

@keyframes glitch {
    0% {
        transform: translate(0);
        text-shadow: 0 0 0 transparent;
    }
    20% {
        transform: translate(-1px, 1px);
        text-shadow: -2px 0 var(--secondary-color), 2px 2px var(--blue-accent);
    }
    40% {
        transform: translate(-1px, -1px);
        text-shadow: 2px 0 var(--secondary-color), -2px -2px var(--blue-accent);
    }
    60% {
        transform: translate(1px, 1px);
        text-shadow: 0 0 0 transparent;
    }
    80% {
        transform: translate(1px, -1px);
        text-shadow: -2px 0 var(--secondary-color), 2px 2px var(--blue-accent);
    }
    100% {
        transform: translate(0);
        text-shadow: 0 0 0 transparent;
    }
}

/* Styles responsive */
@media (max-width: 992px) {
    .navbar {
        padding: 1rem 5%;
    }
    
    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.9);
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        z-index: 999;
        border-bottom: 1px solid var(--secondary-color);
    }

    .slide-title {
        font-size: 2.5rem;
    }

    .collection, .categories, .gallery-section {
        padding: 3rem 5%;
    }

    .contact-section {
        margin: 2rem 5%;
        padding: 3rem 5%;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info {
        text-align: center;
    }

    .contact-details {
        align-items: center;
    }

    .modal-content {
        grid-template-columns: 1fr;
        max-height: 80vh;
        overflow-y: auto;
    }

    .modal-image {
        height: 300px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .slide-title {
        font-size: 2rem;
    }

    .slide-desc {
        font-size: 1rem;
    }

    .collection-title {
        font-size: 2rem;
    }

    .watermark {
        font-size: 4rem;
    }

    .products-grid, 
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 200px);
    }

    .gallery-item:nth-child(1) {
        grid-column: span 1;
    }
}

@media (max-width: 576px) {
    .carousel-arrows {
        display: none;
    }

    .collection-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        max-width: 100%;
    }
}

/* Icône de menu pour mobile */
.menu-icon {
    display: none;
    cursor: pointer;
}

@media (max-width: 992px) {
    .menu-icon {
        display: block;
    }
}

.menu-icon span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 5px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-icon.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-icon.active span:nth-child(2) {
    opacity: 0;
}

.menu-icon.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Logo animé */
.brand-logo {
    display: inline-block;
    position: relative;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-text .paris {
    color: white;
}

.logo-text .cle {
    color: white;
}

.logo-text .bluff {
    color: white;
}

.logo-text .red-letter {
    color: var(--secondary-color);
    animation: pulse-glow 2s infinite alternate;
    position: relative;
}

.logo-text .red-letter:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
    bottom: -4px;
    left: 0;
    box-shadow: 0 0 10px var(--secondary-color);
}

/* Nouveaux éléments pour design futuriste */
.cyber-border {
    position: relative;
    border: 1px solid var(--secondary-color);
    border-radius: 15px;
    overflow: hidden;
}

.cyber-border:before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid transparent;
    border-radius: 15px;
    background: linear-gradient(45deg, var(--secondary-color), transparent, var(--blue-accent), transparent, var(--secondary-color)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: border-animate 6s linear infinite;
}

@keyframes border-animate {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 300% 0%;
    }
}

.cyber-line {
    position: relative;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    margin: 2rem 0;
}

.cyber-line:before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--secondary-color);
}

.digital-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJhIiB4PSIwIiB5PSIwIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjc1IiBzdGl0Y2hUaWxlcz0ic3RpdGNoIi8+PGZlQ29sb3JNYXRyaXggdHlwZT0ic2F0dXJhdGUiIHZhbHVlcz0iMCIvPjwvZmlsdGVyPjxwYXRoIGZpbHRlcj0idXJsKCNhKSIgb3BhY2l0eT0iLjA1IiBkPSJNMCAwaDMwMHYzMDBIMHoiLz48L3N2Zz4=');
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    display: none;
}

.dark .digital-noise {
    display: block;
}

.glow-text {
    text-shadow: 0 0 5px var(--secondary-color);
}

.product-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    margin-top: 1rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.product-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.product-btn:hover:before {
    left: 100%;
}

.product-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

/* Circuit lines effect */
.circuit-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.1;
}

.circuit-line {
    position: absolute;
    background: var(--secondary-color);
}

.circuit-dot {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--secondary-color);
}

.pulse-effect {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
    
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}
