:root {
    --color-accent: #b39740;
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    background-color: #FAFAFA;
    color: #3d3d3d;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: var(--color-accent);
    color: white;
}

.hours-tab {
    background: #f3f4f6;
    color: #6b7280;
    border: 1px solid transparent;
}

.hours-tab:hover {
    background: #e5e7eb;
}

.hours-tab.active {
    background: var(--color-accent);
    color: white;
    border-color: var(--color-accent);
}

.hours-content {
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

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

.btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.4s var(--transition-smooth);
    z-index: -1;
}

.btn:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-accent);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

@keyframes subtle-zoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

.animate-hero-bg {
    animation: subtle-zoom 20s ease-in-out infinite alternate;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.animate-hero-content {
    animation: fade-in-up 1s ease-out 0.3s forwards;
    opacity: 0;
}

.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.scroll-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s var(--transition-smooth);
}

.is-visible .stagger-item {
    opacity: 1;
    transform: translateY(0);
}

.stagger-item:nth-child(1) {
    transition-delay: 0.1s;
}

.stagger-item:nth-child(2) {
    transition-delay: 0.2s;
}

.stagger-item:nth-child(3) {
    transition-delay: 0.3s;
}

.stagger-item:nth-child(4) {
    transition-delay: 0.4s;
}

.stagger-item:nth-child(5) {
    transition-delay: 0.5s;
}

.stagger-item:nth-child(6) {
    transition-delay: 0.6s;
}

.stagger-item:nth-child(7) {
    transition-delay: 0.7s;
}

.stagger-item:nth-child(8) {
    transition-delay: 0.8s;
}

.stagger-item:nth-child(9) {
    transition-delay: 0.9s;
}

.stagger-item:nth-child(10) {
    transition-delay: 1s;
}

.section-title-wrapper {
    display: inline-block;
    position: relative;
    margin-bottom: 1.5rem;
}

.section-title-line {
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--color-accent);
    margin: 0.5rem auto 0;
    transition: width 0.3s ease;
}

.section-title-wrapper:hover .section-title-line {
    width: 80px;
}

.left-aligned .section-title-line {
    margin: 0.5rem 0 0 0;
}

.product-card-img-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 40%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 10;
}

.group:hover .product-card-img-container::before {
    opacity: 1;
}

.carousel-slide {
    transition: opacity 1.5s ease-in-out;
}

.carousel-dot.active-dot {
    background-color: white;
    width: 2rem;
}

.carousel-arrow {
    opacity: 0.7;
}

.carousel-arrow:hover {
    opacity: 1;
}

.brand-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    color: #555;
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 9999px;
    cursor: default;
    transition: color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.brand-pill:hover {
    color: #b39740;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.05);
    border-color: #b39740;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-container {
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.mask-gradient {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.marquee-content {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .marquee-container {
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .marquee-content {
        animation: none;
    }

    .marquee-container::-webkit-scrollbar {
        display: none;
    }
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
    scrollbar-width: none;
}

.carousel-wrapper {
    position: relative;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    opacity: 0;
    pointer-events: none;
}

.carousel-wrapper:hover .carousel-nav {
    opacity: 1;
    pointer-events: all;
}

.carousel-nav:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    box-shadow: 0 6px 20px rgba(179, 151, 64, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav:active {
    transform: translateY(-50%) scale(0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.carousel-nav:focus {
    outline: none;
    border-color: var(--color-accent);
}

.carousel-nav:hover i {
    color: white !important;
}

.carousel-nav:active i,
.carousel-nav:focus i {
    color: var(--color-accent) !important;
}

.carousel-nav.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.carousel-nav-prev {
    left: -24px;
}

.carousel-nav-next {
    right: -24px;
}

@media (max-width: 768px) {
    .carousel-wrapper .carousel-nav {
        opacity: 0.8;
        pointer-events: all;
    }

    .carousel-nav-prev {
        left: 8px;
    }

    .carousel-nav-next {
        right: 8px;
    }
}

.carousel-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover {
    background: #9ca3af;
    transform: scale(1.2);
}

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

.carousel-item-cocooning {
    width: 80vw;
    min-width: 80vw;
    max-width: 400px;
    flex-shrink: 0;
    scroll-snap-align: start;
    margin-right: 1rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
    touch-action: manipulation;
}

.carousel-item-cocooning:hover {
    transform: translateY(-4px);
}

@media (min-width: 640px) {
    .carousel-item-cocooning {
        width: 45%;
        min-width: 320px;
        max-width: 380px;
    }
}

@media (min-width: 768px) {
    .carousel-item-cocooning {
        width: auto;
        min-width: 0;
        max-width: none;
    }
}

.carousel-item-noel {
    width: 80vw;
    min-width: 80vw;
    max-width: 400px;
    flex-shrink: 0;
    scroll-snap-align: start;
    margin-right: 1rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
    touch-action: manipulation;
}

.carousel-item-noel:hover {
    transform: translateY(-4px);
}

@media (min-width: 640px) {
    .carousel-item-noel {
        width: 45%;
        min-width: 320px;
        max-width: 380px;
    }
}

@media (min-width: 768px) {
    .carousel-item-noel {
        width: auto;
        min-width: 0;
        max-width: none;
    }
}

.carousel-item-nouveautes {
    width: 70vw;
    min-width: 70vw;
    max-width: 300px;
    flex-shrink: 0;
    scroll-snap-align: start;
    margin-right: 1rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
    touch-action: manipulation;
}

.carousel-item-nouveautes:hover {
    transform: translateY(-4px);
}

@media (min-width: 640px) {
    .carousel-item-nouveautes {
        width: auto;
        min-width: 0;
        max-width: none;
        margin-right: 0;
    }
}

.carousel-container {
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overscroll-behavior-x: contain;
    scroll-snap-stop: normal;
}

@media (max-width: 768px) {
    .carousel-container {
        scroll-behavior: auto;
        -webkit-overflow-scrolling: touch;
        scroll-padding: 0 1.5rem;
    }
}

@media (max-width: 639px) {

    .carousel-item-cocooning,
    .carousel-item-noel,
    .carousel-item-nouveautes {
        scroll-snap-align: center;
        scroll-snap-stop: normal;
    }

    .carousel-item-cocooning:first-child,
    .carousel-item-noel:first-child {
        margin-left: calc((100vw - 80vw) / 2 - 1.5rem);
    }

    .carousel-item-cocooning:last-child,
    .carousel-item-noel:last-child {
        margin-right: calc((100vw - 80vw) / 2 - 1.5rem);
    }

    .carousel-item-nouveautes:first-child {
        margin-left: calc((100vw - 70vw) / 2 - 1.5rem);
    }

    .carousel-item-nouveautes:last-child {
        margin-right: calc((100vw - 70vw) / 2 - 1.5rem);
    }
}

@media (min-width: 768px) {

    .carousel-item-cocooning:first-child,
    .carousel-item-noel:first-child,
    .carousel-item-nouveautes:first-child {
        margin-left: 0;
    }

    .carousel-item-cocooning:last-child,
    .carousel-item-noel:last-child,
    .carousel-item-nouveautes:last-child {
        margin-right: 0;
    }
}

@media (min-width: 768px) {
    .carousel-container {
        overflow: visible !important;
    }
}

.carousel-container::-webkit-scrollbar {
    display: none;
}