html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #FFF8DC 0%, #F4E1C1 25%, #E8D5B7 50%, #F4E1C1 75%, #FFF8DC 100%);
    background-attachment: fixed;
    color: #2C2416;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

.btn-primary {
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(190, 148, 68, 0.4);
}

.product-card {
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.nav-logo {
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

nav {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

.carousel-image {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-image.active {
    opacity: 1;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

.carousel-dot.active {
    background: #BE9444;
    transform: scale(1.2);
}

.thumbnail {
    transition: all 0.3s ease;
    cursor: pointer;
}

.thumbnail:hover {
    transform: scale(1.05);
}

.thumbnail.active {
    border-color: #BE9444;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.delay-1000 {
    animation-delay: 1s;
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 280px;
    height: 100vh;
    background: rgba(28, 20, 16, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
    transition: right 0.3s ease-out;
    z-index: 60;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 55;
    backdrop-filter: blur(4px);
}

.mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 26px;
    height: 20px;
    cursor: pointer;
    position: relative;
}

.hamburger-icon span {
    width: 100%;
    height: 3px;
    background: #2C2416;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
}

.hamburger-icon.active span {
    background: #BE9444;
}

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

.hamburger-icon.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

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

.mobile-menu-link {
    position: relative;
    display: block;
    color: #fff;
    padding: 1.25rem 1rem;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    transition: all 0.25s ease;
    text-align: center;
}

.mobile-menu-link:hover {
    color: #BE9444;
    transform: translateX(-8px);
}

.mobile-menu-link.active-link {
    color: #BE9444;
    font-weight: 400;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
