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

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

:root {
    /* Couleurs */
    --primary-color: #E8DCC4;
    --secondary-color: #D4C5A9;
    --accent-color: #8B7355;
    --dark-color: #2C2418;
    --light-bg: #FAF8F5;
    --white: #FFFFFF;
    --text-dark: #1A1613;
    --text-light: #6B625A;

    /* Typographie */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-padding: 80px;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--light-bg);
    overflow-x: hidden;
}

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

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

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

.navbar.scrolled {
    background-color: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 120px;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.navbar.scrolled .nav-logo img {
    height: 100px;
    filter: brightness(0.95) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-color);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition-fast);
    display: block;
    padding: 10px 0;
}

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

.nav-link:hover {
    color: var(--accent-color);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--dark-color);
    transition: var(--transition-fast);
    display: block;
}

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

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('pic.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(44, 36, 24, 0.75) 0%,
        rgba(139, 115, 85, 0.65) 50%,
        rgba(232, 220, 196, 0.55) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(80px, 12vw, 160px);
    font-weight: 300;
    letter-spacing: 15px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1.2s ease forwards;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1.2s ease 0.3s forwards;
}

.hero-description {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInUp 1.2s ease 0.6s forwards;
}

.hero-btn {
    display: inline-block;
    padding: 18px 50px;
    background-color: transparent;
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 2px solid var(--white);
    transition: var(--transition-smooth);
    opacity: 0;
    animation: fadeInUp 1.2s ease 0.9s forwards;
    position: relative;
    overflow: hidden;
}

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

.hero-btn:hover::before {
    left: 0;
}

.hero-btn:hover {
    color: var(--dark-color);
    border-color: var(--white);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

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

/* ==========================================
   SECTIONS COMMUNES
   ========================================== */

.about-section,
.products-section,
.gallery-section,
.contact-section {
    padding: var(--section-padding) 0;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.about-section.visible,
.products-section.visible,
.gallery-section.visible,
.contact-section.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 400;
    color: var(--dark-color);
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.section-divider {
    width: 80px;
    height: 2px;
    background-color: var(--accent-color);
    margin: 0 auto;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about-section {
    background-color: var(--white);
}

/* Intro Box */
.about-intro-box {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(232, 220, 196, 0.1) 0%, rgba(255, 255, 255, 0.5) 100%);
    border-radius: 12px;
    border: 1px solid rgba(232, 220, 196, 0.3);
}

.about-main-text {
    font-size: 22px;
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
}

.about-main-text strong {
    color: var(--accent-color);
    font-weight: 600;
}

/* Dynamic Grid */
.about-dynamic-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.about-feature {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.about-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-feature:hover .feature-image img {
    transform: scale(1.1);
}

.feature-content {
    padding: 30px;
    background-color: var(--white);
}

.feature-content h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.feature-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Special Feature - spans 2 columns on desktop */
.special-feature {
    grid-column: span 2;
}

.special-feature .feature-image {
    height: 320px;
}

/* Animation au scroll */
.about-feature {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpFeature 0.8s ease forwards;
}

.about-feature:nth-child(1) { animation-delay: 0.1s; }
.about-feature:nth-child(2) { animation-delay: 0.2s; }
.about-feature:nth-child(3) { animation-delay: 0.3s; }
.about-feature:nth-child(4) { animation-delay: 0.4s; }

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

/* ==========================================
   PRODUCTS SECTION
   ========================================== */

.products-section {
    background-color: var(--light-bg);
}

.product-category {
    margin-bottom: 100px;
}

.product-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

/* Carousel Container */
.carousel-container {
    position: relative;
    width: 100%;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--white);
    border: 2px solid var(--accent-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-btn:disabled:hover {
    transform: translateY(-50%) scale(1);
    background-color: var(--white);
}

.products-grid {
    display: flex;
    gap: 30px;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    padding: 20px 0;
}

.products-grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.products-grid.carousel-track {
    scroll-snap-type: x mandatory;
    overflow-x: auto;
}

.carousel-track .product-card {
    flex: 0 0 350px;
    scroll-snap-align: start;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    padding: 0;
}

.carousel-dot:hover {
    background-color: var(--accent-color);
}

.carousel-dot.active {
    background-color: var(--accent-color);
    width: 30px;
    border-radius: 6px;
}

.boissons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
        rgba(44, 36, 24, 0) 0%,
        rgba(44, 36, 24, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    color: var(--white);
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 500;
    color: var(--dark-color);
    padding: 25px 30px 10px;
    letter-spacing: 1px;
}

.product-description {
    font-size: 15px;
    color: var(--text-light);
    padding: 0 30px 30px;
    line-height: 1.6;
}

/* ==========================================
   GALLERY SECTION - CAROUSEL
   ========================================== */

.gallery-section {
    background-color: var(--white);
}

.gallery-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.gallery-carousel {
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 20px;
    animation: scrollGallery 30s linear infinite;
    width: max-content;
}

.gallery-track:hover {
    animation-play-state: paused;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 400px;
    width: 500px;
    flex-shrink: 0;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: grayscale(10%);
}

.gallery-item:hover img {
    transform: scale(1.15);
    filter: grayscale(0%);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(232, 220, 196, 0.2) 0%,
        rgba(44, 36, 24, 0.3) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover::after {
    opacity: 1;
}

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

.contact-section {
    position: relative;
    background-image: url('hoso.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

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

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 60px 0;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.info-block h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.info-block p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-link {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition-fast);
    font-weight: 500;
}

.contact-link:hover {
    color: var(--dark-color);
    text-decoration: underline;
}

.instagram-handle {
    color: var(--accent-color);
    font-weight: 500;
    font-style: italic;
}

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

.footer {
    background-color: var(--dark-color);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo img {
    height: 60px;
    filter: brightness(2) contrast(0.8) invert(1);
    opacity: 0.85;
    margin-bottom: 10px;
}

.footer-description {
    color: var(--primary-color);
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    color: var(--primary-color);
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-links a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--white);
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(232, 220, 196, 0.2);
    padding-top: 30px;
    text-align: center;
}

.footer-copyright {
    color: var(--primary-color);
    font-size: 13px;
    letter-spacing: 1px;
    opacity: 0.6;
}

/* ==========================================
   ANIMATIONS
   ========================================== */

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

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

.fade-in {
    opacity: 0;
    animation: fadeInUp 1.2s ease forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeInUp 1.2s ease 0.3s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeInUp 1.2s ease 0.6s forwards;
}

.fade-in-delay-3 {
    opacity: 0;
    animation: fadeInUp 1.2s ease 0.9s forwards;
}

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

/* Tablette et Mobile */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
        --container-padding: 40px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 300px;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        padding: 0;
        margin: 0;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        color: var(--dark-color);
        padding: 15px 0;
        text-align: center;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .about-dynamic-grid {
        grid-template-columns: 1fr;
    }

    .special-feature {
        grid-column: span 1;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 0;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-track .product-card {
        flex: 0 0 300px;
    }

    .gallery-item {
        width: 400px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .container {
        padding: 0 20px;
    }

    .hero-title {
        letter-spacing: 8px;
    }

    .hero-subtitle {
        letter-spacing: 3px;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .about-intro-box {
        padding: 30px 20px;
        margin-bottom: 40px;
    }

    .about-main-text {
        font-size: 18px;
    }

    .feature-content h3 {
        font-size: 24px;
    }

    .feature-image {
        height: 220px;
    }

    .special-feature .feature-image {
        height: 250px;
    }

    .contact-info {
        padding: 30px 0;
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-section {
        align-items: center;
    }

    .info-block h3 {
        font-size: 24px;
    }

    .info-block p {
        font-size: 15px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
    }

    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }

    .carousel-track .product-card {
        flex: 0 0 280px;
    }

    .boissons-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 350px;
    }

    .gallery-item {
        width: 320px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .nav-logo img {
        height: 45px;
    }

    .hero-btn {
        padding: 15px 35px;
        font-size: 12px;
        letter-spacing: 2px;
    }

    .product-name {
        font-size: 22px;
        padding: 20px 20px 8px;
    }

    .product-description {
        padding: 0 20px 20px;
        font-size: 14px;
    }

    .gallery-item {
        width: 280px;
        height: 250px;
    }

    .gallery-track {
        gap: 15px;
    }
}

/* ==========================================
   CUSTOM CURSOR
   ========================================== */

.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease;
    mix-blend-mode: difference;
}

@media (max-width: 1024px) {
    .custom-cursor {
        display: none;
    }
}

/* ==========================================
   ANIMATIONS DYNAMIQUES SUPPLÉMENTAIRES
   ========================================== */

/* Animation titre section avec underline animé */
.section-title {
    position: relative;
    display: inline-block;
}

.section-divider {
    animation: expandLine 1s ease forwards;
    transform-origin: center;
}

@keyframes expandLine {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

/* Effet de flottement sur les cartes */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.product-card {
    animation: float 6s ease-in-out infinite;
}

.product-card:nth-child(2) {
    animation-delay: 1s;
}

.product-card:nth-child(3) {
    animation-delay: 2s;
}

.product-card:nth-child(4) {
    animation-delay: 1.5s;
}

.product-card:nth-child(5) {
    animation-delay: 2.5s;
}

.product-card:nth-child(6) {
    animation-delay: 0.5s;
}

/* Effet de shine sur les images */
.product-image::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: var(--transition-smooth);
}

.product-card:hover .product-image::before {
    top: 100%;
    left: 100%;
}

/* Animation sur les info-blocks */
.info-block {
    position: relative;
    padding: 20px;
    border-left: 3px solid transparent;
    transition: var(--transition-smooth);
}

.info-block:hover {
    border-left-color: var(--accent-color);
    background-color: rgba(232, 220, 196, 0.1);
    transform: translateX(10px);
}

/* Animation sur les items de la liste de saveurs */
.flavors-list li {
    opacity: 0;
    animation: slideInLeft 0.6s ease forwards;
}

.flavors-list li:nth-child(1) { animation-delay: 0.1s; }
.flavors-list li:nth-child(2) { animation-delay: 0.2s; }
.flavors-list li:nth-child(3) { animation-delay: 0.3s; }
.flavors-list li:nth-child(4) { animation-delay: 0.4s; }
.flavors-list li:nth-child(5) { animation-delay: 0.5s; }
.flavors-list li:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Pulse sur le bouton hero */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
}

.hero-btn {
    animation: fadeInUp 1.2s ease 0.9s forwards, pulse 2s infinite 2s;
}

/* Effet de gradient animé sur le hero overlay */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-overlay {
    background: linear-gradient(
        135deg,
        rgba(44, 36, 24, 0.75) 0%,
        rgba(139, 115, 85, 0.65) 25%,
        rgba(232, 220, 196, 0.55) 50%,
        rgba(139, 115, 85, 0.65) 75%,
        rgba(44, 36, 24, 0.75) 100%
    );
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
}

/* Effet d'échelle sur les images de galerie */
.gallery-item {
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    transform: scale(1.02);
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Animation du logo au hover */
.nav-logo img:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Effet de typing sur le hero title */
@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Bordure animée sur les product cards */
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--accent-color);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.product-card:hover::before {
    opacity: 1;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
}

/* Animation de rotation sur les titres de catégories */
.category-title {
    transition: var(--transition-smooth);
}

.category-title:hover {
    color: var(--accent-color);
    letter-spacing: 4px;
}

/* Effet de particules sur le fond (optionnel) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(232, 220, 196, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 115, 85, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(232, 220, 196, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: particlesMove 20s ease-in-out infinite;
}

@keyframes particlesMove {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(20px, -20px);
    }
    50% {
        transform: translate(-20px, 20px);
    }
    75% {
        transform: translate(20px, 20px);
    }
}

/* Assurer que le contenu reste au-dessus */
.navbar,
section {
    position: relative;
    z-index: 1;
}

/* Animation sur le scroll indicator */
.scroll-indicator:hover .mouse {
    transform: scale(1.2);
}

/* Effet de vague sur le footer */
.footer {
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(232, 220, 196, 0.05),
        transparent
    );
    animation: wave 8s linear infinite;
}

@keyframes wave {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}