body {
    font-family: 'Saira', sans-serif;
    background-color: #fdfaf6;
    overflow-x: hidden;
}

.font-bangla {
    font-family: 'Hind Siliguri', sans-serif;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #d4b8a2;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #c2a690;
}

/* Carousel specific styles */
.carousel-container {
    position: relative;
}
.carousel-slide {
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transform: scale(0.95) translateY(30px) rotateY(10deg);
    transition: 
        opacity 0.7s cubic-bezier(.77,0,.18,1),
        transform 0.7s cubic-bezier(.77,0,.18,1);
    z-index: 1;
    pointer-events: none;
}
.carousel-slide.active {
    opacity: 1;
    transform: scale(1) translateY(0) rotateY(0deg);
    z-index: 2;
    pointer-events: auto;
}

/* Parallax Background Images */
.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -10;
    opacity: 0.1;
    transition: transform 0.2s ease-out, opacity 0.5s ease-out;
}

#bg-1 { background-image: url('https://placehold.co/1920x1080/e0c9b6/fdfaf6?text=Floral+Pattern'); }
#bg-2 { background-image: url('https://placehold.co/1920x1080/d4b8a2/fdfaf6?text=Perfume+Splash'); }
#bg-3 { background-image: url('https://placehold.co/1920x1080/c2a690/fdfaf6?text=Scent+Notes'); }

/* Remove number input spinner arrows for all browsers */
.no-spinner::-webkit-outer-spin-button,
.no-spinner::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.no-spinner[type="number"] {
    appearance: textfield;
}
.carousel-img {
    box-shadow: 0 8px 32px rgba(234,179,8,0.15), 0 2px 8px rgba(0,0,0,0.07);
    border-radius: 1rem;
    background: linear-gradient(135deg, #fdf6e3 0%, #ffe4e1 100%);
    transition: box-shadow 0.3s;
}
.carousel-img:hover {
    box-shadow: 0 16px 48px rgba(234,179,8,0.25), 0 4px 16px rgba(0,0,0,0.12);
}
.carousel-dots {
    margin-top: 1.5rem;
}
.carousel-dot {
    width: 18px;
    height: 18px;
    margin: 0 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fbbf24 0%, #f472b6 100%);
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(234,179,8,0.15);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    display: inline-block;
}
.carousel-dot.active {
    background: linear-gradient(135deg, #eab308 0%, #f472b6 100%);
    transform: scale(1.2);
    box-shadow: 0 4px 16px rgba(234,179,8,0.25);
    border: 2px solid #eab308;
}

/* Hero image style (single image, smart & simple) */
.hero-img-single {
    width: 20rem;
    height: 20rem;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(234,179,8,0.15), 0 2px 8px rgba(0,0,0,0.07);
    background: linear-gradient(135deg, #e0f2fe 0%, #f8fafc 60%, #fffbe6 100%);
    transition: box-shadow 0.3s;
    display: block;
    margin: 0 auto;
}
.hero-img-single:hover {
    box-shadow: 0 16px 48px rgba(234,179,8,0.25), 0 4px 16px rgba(0,0,0,0.12);
}