* {
    font-family: "Raleway", sans-serif;
}

:root {
    --primary-color: #ae4200;
    --secondary-color: #541b07;
    --accent-color: #e0b466;
    --light-bg: #F7F3E9;
    --text-dark: #541b07;
    --text-light: #FFFFFF;
}

body {
    font-family: "Raleway", sans-serif;
    color: var(--text-dark);
    background: var(--light-bg);
    overflow-x: hidden;
}

a {
    text-decoration: none !important;
    color: inherit;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    animation: logoFade 2s ease-in-out infinite;
}

.preloader-logo span {
    display: block;
    font-size: clamp(0.8rem, 1.5vw, 1.2rem);
    font-weight: 300;
    letter-spacing: 0.5rem;
    margin-top: 0.5rem;
}

@keyframes logoFade {

    0%,
    100% {
        opacity: 0;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/*=============== Navigation ===============*/
nav {
    width: 100%;
    /* position: fixed;
    top: 0;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0 clamp(1rem, 3vw, 3rem);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15); */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 2.5rem);
    flex: 1;
}

.nav-center {
    flex: 0 0 auto;
    text-align: center;
}

.nav-logo {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    text-align: center;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-logo span {
    display: block;
    font-size: clamp(0.6rem, 0.8vw, 0.7rem);
    letter-spacing: 0.3rem;
    font-weight: 300;
}

.nav-item {
    position: relative;
    cursor: pointer;
    font-size: clamp(0.8rem, 1vw, 0.9rem);
    font-weight: 500;
    letter-spacing: 0.05rem;
    /* color: var(--text-dark); */
    transition: color 0.3s;
}

.nav-item:hover {
    color: var(--primary-color);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    padding: 1rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    margin-top: 1rem;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
    color: var(--text-dark);
    transition: background 0.3s, color 0.3s;
}

.dropdown-item:hover {
    background: var(--accent-color);
    color: var(--secondary-color);
}

.nav-link {
    /* width: 100%; */
    display: block;
}

.nav-right {
    justify-content: flex-end;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s;
    font-size: 0.9rem;
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
}

.lang-switcher {
    padding: 0.5rem 1.2rem;
    background: transparent;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.85rem;
    letter-spacing: 0.05rem;
}

.lang-switcher:hover {
    background: var(--primary-color);
    color: white;
}

/* Hamburger */
.nav-hamburger {
    display: none;
    border: none;
    background: transparent;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    margin: 4px 0;
    transition: transform .25s, opacity .25s;
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 64px;
    /* height of navbar */
    right: 0;
    left: 0;
    background: #fff;
    color: #333;
    z-index: 60;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
    transition: transform .25s ease, opacity .25s ease;
}

.mobile-menu.hidden {
    display: none;
}

.mobile-inner {
    padding: 1rem 1.25rem;
}

.mobile-links .mobile-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .75rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    background: transparent;
    text-align: left;
    font-weight: 600;
    color: #333;
}

.mobile-sub {
    padding-left: .75rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
}

.mobile-sub .mobile-sub-item {
    display: block;
    padding: .5rem 0;
    color: #444;
    text-decoration: none;
}

/* small visual for chevrons */
.chev {
    opacity: .7;
    font-size: .9rem;
}

/* hide desktop-only blocks on small screens */
.desktop-only {
    display: flex;
}

/* prevent body scroll when mobile menu open */
.no-scroll {
    overflow: hidden;
}

/* Dropdown behavior desktop */
.dropdown {
    /* override */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
}

.nav-item:hover .dropdown,
.dropdown.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Active flag visuals */
.flag-btn {
    border: none;
    background: transparent;
    cursor: pointer;
    opacity: .7;
}

.flag-btn.active,
.flag-btn:hover {
    opacity: 1;
    transform: scale(1.06);
}


/*=============== Hero Section ===============*/
.hero {
    height: clamp(500px, 80vh, 80vh);
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 400;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: rgb(244 244 244 / 80%);
    text-align: center;
    animation: fadeInUp 1s ease;
    padding: 0 1rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 300;
    letter-spacing: clamp(0.2rem, 0.5vw, 0.3rem);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.2s backwards;
    text-align: center;
    padding: 0 1rem;
}

.cta-button {
    padding: clamp(0.8rem, 1.5vw, 1rem) clamp(2rem, 4vw, 3rem);
    background: var(--accent-color);
    color: var(--secondary-color);
    border: none;
    font-weight: 600;
    letter-spacing: 0.1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-size: clamp(0.8rem, 1.2vw, 0.9rem);
    animation: fadeInUp 1s ease 0.4s backwards;
}

.cta-button:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

/* Content Sections */
.content-section {
    margin: 0 auto;
}

.content-section::before {
    background: url(../bg01.png);
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    content: '';
    width: 150%;
    height: 300%;
    left: -10%;
    top: 50%;
    background-size: cover;
    opacity: 0.2;
    z-index: 0;
}

.section-intro {
    text-align: center;
    margin-bottom: 4rem;
    z-index: 2;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: #666;
    font-weight: 300;
    letter-spacing: 0.05rem;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(1rem, 2vw, 2rem);
    margin-top: 3rem;
}

.product-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/5;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: clamp(1.5rem, 3vw, 2rem);
    color: white;
    transform: translateY(50px);
    transition: transform 0.3s;
}

.product-card:hover .product-overlay {
    transform: translateY(0);
}

.product-name {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-description {
    font-size: clamp(0.8rem, 1.2vw, 0.9rem);
    font-weight: 300;
}

/* Creations Section */
.creations-section {
    width: 100%;
    position: relative;
    padding: clamp(60px, 12vw, 100px) 0;
    /* background-color: var(--light-bg); */
    z-index: 1;
}

.section-header {
    text-align: center;
    padding: clamp(60px, 12vw, 100px) clamp(20px, 3vw, 20px) clamp(50px, 10vw, 80px);
    max-width: 800px;
    margin: 0 auto;
}

.section-pretitle {
    font-size: clamp(10px, 1.5vw, 12px);
    font-weight: 600;
    letter-spacing: clamp(2px, 0.5vw, 3px);
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-main-title {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 300;
    letter-spacing: clamp(1px, 0.3vw, 2px);
    color: var(--secondary-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.section-description {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 300;
    color: #666;
    line-height: 1.8;
}

.products-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 0;
}

.product-item {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    cursor: pointer;
}

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

.product-item:hover .product-image {
    transform: scale(1.08);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(84, 27, 7, 0.85) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(40px, 8vw, 100px) clamp(20px, 4vw, 40px);
    opacity: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-item:hover .product-overlay {
    background: linear-gradient(to top, rgba(84, 27, 7, 0.75) 0%, rgba(84, 27, 7, 0.2) 100%);
}

.product-category {
    font-size: clamp(10px, 1.5vw, 11px);
    font-weight: 600;
    letter-spacing: clamp(1.5px, 0.3vw, 2px);
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-item:hover .product-category {
    opacity: 1;
    transform: translateY(0);
}

.product-title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 300;
    letter-spacing: 1px;
    color: white;
    margin-bottom: 15px;
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-item:hover .product-title {
    transform: translateY(-5px);
}

.product-text {
    font-size: clamp(14px, 2vw, 15px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.1s;
}

.product-item:hover .product-text {
    opacity: 1;
    transform: translateY(0);
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    font-size: clamp(11px, 1.5vw, 12px);
    font-weight: 600;
    letter-spacing: clamp(1.5px, 0.3vw, 2px);
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.2s;
}

.product-item:hover .product-link {
    opacity: 1;
    transform: translateY(0);
}

.product-link::after {
    content: '→';
    font-size: 16px;
    transition: transform 0.3s ease;
}

.product-link:hover::after {
    transform: translateX(5px);
}

.product-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background-color: var(--primary-color);
    color: white;
    font-size: clamp(9px, 1.3vw, 10px);
    font-weight: 700;
    letter-spacing: 1px;
    padding: clamp(6px, 1vw, 8px) clamp(12px, 2vw, 16px);
    text-transform: uppercase;
    z-index: 2;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-item:hover .product-badge {
    opacity: 1;
    transform: translateY(0);
}

.product-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.product-item:nth-child(1) {
    animation-delay: 0.1s;
}

.product-item:nth-child(2) {
    animation-delay: 0.2s;
}

.product-item:nth-child(3) {
    animation-delay: 0.3s;
}

/* Alternating Section */
.alt-section {
    display: flex;
    gap: 0;
    margin: clamp(3rem, 8vw, 6rem) 0;
    align-items: stretch;
}

.alt-section.reverse {
    flex-direction: row-reverse;
}

.alt-image {
    flex: 1;
    min-height: clamp(400px, 60vw, 600px);
}

.alt-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alt-content {
    flex: 1;
    padding: clamp(2rem, 5vw, 4rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.alt-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary-color);
}

.alt-text {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.alt-link {
    align-self: flex-start;
    padding: clamp(0.7rem, 1.2vw, 0.8rem) clamp(1.5rem, 2.5vw, 2rem);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    letter-spacing: 0.05rem;
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
}

.alt-link:hover {
    background: var(--primary-color);
    color: white;
}

/* Scroll-Triggered Content Blocks */
.target-scroll-section {
    position: relative;
    width: 100%;
    background-color: var(--light-bg);
}

.scroll-section-wrapper {
    position: relative;
    width: 100%;
    padding: 0;
}

.scroll-content-block {
    position: relative;
    width: 100%;
    min-height: clamp(600px, 100vh, 100vh);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.scroll-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.scroll-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-content-block:hover .scroll-image {
    transform: scale(1.15);
}

.scroll-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(84, 27, 7, 0.7) 0%, rgba(84, 27, 7, 0.3) 60%, transparent 100%);
    z-index: 1;
}

.scroll-content-inner {
    position: relative;
    z-index: 2;
    max-width: clamp(400px, 80%, 600px);
    padding: clamp(40px, 8vw, 80px) clamp(30px, 6vw, 60px);
    margin-left: clamp(20px, 8%, 8%);
    color: white;
}

.scroll-subtitle {
    font-size: clamp(10px, 1.5vw, 11px);
    font-weight: 600;
    letter-spacing: clamp(2px, 0.5vw, 3px);
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.scroll-title {
    font-size: clamp(32px, 6vw, 52px);
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.scroll-description {
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

.scroll-btn {
    display: inline-block;
    padding: clamp(12px, 2vw, 16px) clamp(30px, 4vw, 40px);
    background-color: transparent;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    font-size: clamp(10px, 1.5vw, 11px);
    font-weight: 600;
    letter-spacing: clamp(1.5px, 0.3vw, 2px);
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

.scroll-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.scroll-btn:hover {
    border-color: var(--primary-color);
    color: white;
}

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

.scroll-content-block.reverse .scroll-overlay {
    background: linear-gradient(to left, rgba(84, 27, 7, 0.7) 0%, rgba(84, 27, 7, 0.3) 60%, transparent 100%);
}

.scroll-content-block.reverse .scroll-content-inner {
    margin-left: auto;
    margin-right: clamp(20px, 8%, 8%);
    text-align: right;
}

.scroll-content-block.reverse .scroll-btn {
    margin-left: auto;
}

.scroll-content-block.in-view .scroll-subtitle,
.scroll-content-block.in-view .scroll-title,
.scroll-content-block.in-view .scroll-description,
.scroll-content-block.in-view .scroll-btn {
    animation-play-state: running;
}

.parallax-enabled {
    will-change: transform;
}

/* Slider Section */
.slider-section {
    position: relative;
    width: 100%;
    height: clamp(600px, 100vh, 100vh);
    overflow: hidden;
    background-color: var(--light-bg);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    position: relative;
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.slide-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.active .slide-image {
    transform: scale(1.15);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(84, 27, 7, 0.7) 0%, rgba(84, 27, 7, 0.3) 60%, transparent 100%);
    z-index: 1;
}

.slide.reverse .slide-overlay {
    background: linear-gradient(to left, rgba(84, 27, 7, 0.7) 0%, rgba(84, 27, 7, 0.3) 60%, transparent 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: clamp(400px, 80%, 600px);
    padding: clamp(40px, 8vw, 80px) clamp(30px, 6vw, 60px);
    margin-left: clamp(20px, 8%, 8%);
    color: white;
}

.slide.reverse .slide-content {
    margin-left: auto;
    margin-right: clamp(20px, 8%, 8%);
    text-align: right;
}

.slide-subtitle {
    font-size: clamp(10px, 1.5vw, 11px);
    font-weight: 600;
    letter-spacing: clamp(2px, 0.5vw, 3px);
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.4s;
}

.slide-btn {
    display: inline-block;
    padding: clamp(12px, 2vw, 16px) clamp(30px, 4vw, 40px);
    background-color: transparent;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    font-size: clamp(10px, 1.5vw, 11px);
    font-weight: 600;
    letter-spacing: clamp(1.5px, 0.3vw, 2px);
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.6s;
}

.slide-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.slide-btn:hover {
    border-color: var(--primary-color);
    color: white;
}

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

.slide.active .slide-subtitle,
.slide.active .slide-title,
.slide.active .slide-description,
.slide.active .slide-btn {
    opacity: 1;
    transform: translateY(0);
}

.slider-nav {
    position: absolute;
    bottom: clamp(30px, 6vw, 60px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 15px;
}

.nav-dot {
    width: clamp(10px, 1.5vw, 12px);
    height: clamp(10px, 1.5vw, 12px);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot:hover {
    background-color: var(--text-dark);
    transform: scale(1.2);
}

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

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: clamp(40px, 6vw, 50px);
    height: clamp(40px, 6vw, 50px);
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: clamp(15px, 3vw, 30px);
}

.slider-arrow.next {
    right: clamp(15px, 3vw, 30px);
}

.slider-arrow svg {
    width: clamp(16px, 2.5vw, 20px);
    height: clamp(16px, 2.5vw, 20px);
    fill: white;
}

.slide-counter {
    position: absolute;
    top: clamp(20px, 4vw, 40px);
    right: clamp(20px, 4vw, 40px);
    z-index: 10;
    color: white;
    font-size: clamp(12px, 1.8vw, 14px);
    font-weight: 600;
    letter-spacing: 2px;
}

.slide-counter .current {
    font-size: clamp(20px, 3vw, 24px);
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--light-bg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(/static/assets/bg05.png);
    color: var(--text-dark);
    padding: clamp(3rem, 6vw, 4rem) clamp(1.5rem, 3vw, 3rem) clamp(1.5rem, 3vw, 2rem);
}

/* 
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 0;
} */

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(2rem, 5vw, 4rem);
}

.footer-section h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: fit-content;
}

.footer-link {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
    transform: scale(1);
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
}

.footer-link:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

.boutique-card {
    background: rgba(255, 255, 255, 0.05);
    padding: clamp(1rem, 2vw, 1.5rem);
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 1rem;
    border-left: 3px solid var(--accent-color);
    transition: background 0.3s;
}

.boutique-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.boutique-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    font-size: clamp(0.95rem, 1.3vw, 1.05rem);
}

.boutique-info {
    font-size: clamp(0.85rem, 1.2vw, 0.9rem);
    color: var(--text-dark);
    line-height: 1.6;
}

.delivery-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.delivery-text {
    color: var(--text-dark);
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
}

.gozem-button {
    align-self: flex-start;
    padding: clamp(0.7rem, 1.2vw, 0.8rem) clamp(1.5rem, 2.5vw, 2rem);
    background: var(--accent-color);
    color: var(--secondary-color);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.05rem;
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
}

.gozem-button:hover {
    background: white;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    /* padding-top: clamp(2rem, 4vw, 3rem); */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    justify-content: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-social-icon {
    width: clamp(35px, 5vw, 40px);
    height: clamp(35px, 5vw, 40px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    color: var(--accent-color);
    transition: all 0.3s;
}

.footer-social-icon:hover {
    background: var(--accent-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 2.5vw, 2rem);
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-legal a {
    text-decoration: none;
    font-size: clamp(0.8rem, 1.2vw, 0.85rem);
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--accent-color);
}

.copyright {
    font-size: clamp(0.8rem, 1.2vw, 0.85rem);
}




.slide-title {
    font-size: clamp(32px, 6vw, 52px);
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: white;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.2s;
}

.slide-description {
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.4s;
}



/* Hero Section avec images */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 40px 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    /* width: 100%;
    height: 100%;
    background: url(../bg03.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; */
    opacity: 0.1;
    z-index: 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    align-items: center;
    z-index: 1;
}

/* Galerie d'images */
#produits .images-gallery {
    position: relative;
}

#produits .main-image {
    width: 100%;
    border-radius: 10px;
    aspect-ratio: 1/1;
    /* background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 200px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInScale 1.2s ease forwards;
}

#produits .main-image img {
    border-radius: 10px;
    object-fit: cover;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

#produits .secondary-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.secondary-image {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    animation: fadeInScale 1.2s ease forwards;
}

.secondary-image:nth-child(1) {
    animation-delay: 0.2s;
}

.secondary-image:nth-child(2) {
    animation-delay: 0.3s;
}

.secondary-image:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(249, 131, 58, 0.15);
}

/* Contenu texte */
#produits .content-section {
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

#produits .section-label {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 30px;
}

#produits .section-title {
    font-size: 72px;
    font-weight: 200;
    color: var(--secondary-color);
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

#produits .section-description {
    font-size: 18px;
    line-height: 2;
    text-align: justify;
    color: var(--text-dark);
    opacity: 1;
    font-weight: 300;
    margin-bottom: 30px;
}

#produits .section-description p {
    margin-bottom: 25px;
}

#produits .highlight-text {
    color: var(--primary-color);
    font-weight: 400;
}

/* CTA subtil */
#produits .cta-button {
    display: inline-block;
    margin-top: 30px;
    padding: 18px 50px;
    background: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    transition: all 0.4s ease;
    cursor: pointer;
}

#produits .cta-button:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(84, 27, 7, 0.2);
}

/* Détails techniques */
#produits .details-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(84, 27, 7, 0.1);
}

#produits .detail-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 14px;
    font-weight: 300;
}

#produits .detail-label {
    opacity: 0.6;
}

#produits .detail-value {
    font-weight: 400;
}

/* === Boutiques Map Section === */
.boutiques-map-section {
    padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 4rem);
}

.boutiques-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: clamp(2rem, 4vw, 3rem);
}

/* Carte */
.boutiques-map {
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Liste */
.boutiques-list {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(6px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.boutiques-list h2 {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.boutique-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    cursor: pointer;
    transition: transform .3s, color .3s;
}

.boutique-item:hover {
    transform: translateX(6px);
    color: var(--accent-color);
}

.boutique-item h3 {
    font-size: 1rem;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
    .boutiques-layout {
        grid-template-columns: 1fr;
    }

    .boutiques-map {
        height: 400px;
    }
}
