html {
  scroll-behavior: smooth;
}

body.search-open {
    overflow: hidden;
    cursor: default;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width:6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background:rgba(0,0,0,.25);
    border-radius:999px;
}

::-webkit-scrollbar-thumb:hover {
    background:rgba(0,0,0,.45);
}

/* Smooth image loading */
img {
  transition:opacity .3s ease;
}

img[loading="lazy"] {
  opacity: 0;
}

img.loaded,
img:not([loading="lazy"]) {
  opacity: 1;
}

/* Selection */
::selection {
  background: rgba(1,86,159,.2);
  color: #111;
}

/* ==========================
   HEADER STATES
========================== */

#main-header{
    background: transparent;
    border: none !important;
    box-shadow: none !important;
    transform:translateY(0);
    transition:
        background .4s ease,
        backdrop-filter .4s ease,
        box-shadow .4s ease,
        transform .55s cubic-bezier(.22,.61,.36,1);
    will-change:transform;
}

#main-header .header-action,
#main-header .header-action svg{
    color:white;
}

.hero-header.page-top a,
.hero-header.page-top button,
.hero-header.page-top svg{
    color:#111827 !important;
}

.hero-header.page-top a:hover,
.hero-header.page-top button:hover,
.hero-header.page-top svg:hover{
    color:#000 !important;
}

#main-header.scrolled{
    background: rgba(10,22,40,.78);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow:
        0 8px 30px rgba(0,0,0,.18),
        0 1px 0 rgba(255,255,255,.04) inset;
}

#main-header.scrolled .max-w-7xl{

    padding-top:.45rem;
    padding-bottom:.45rem;

}

#menu-panel,#menu-panel *{
    color:#111!important;
}


:root {
  --color-navy: #0a1628;
  --color-navy-light: #1a2d4d;
  --color-gold: #d4af37;
  --color-amber: #f59e0b;
  --color-cream: #f8fafc;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f8fafc;
  color: #0a1628;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
.font-serif {
  font-family: 'Playfair Display', 'Georgia', serif;
}

/* Active View Button */
.active-view {
  border-color: #f59e0b !important;
  color: #f59e0b !important;
}

/* Tab Active State */
.tab-btn.active {
  color: #0a1628;
  border-bottom: 2px solid #0a1628;
}

/* Product Card Hover */
.product-card {
    transition: all .45s ease;
}

.product-card:hover {
    transform: translateY(-12px);
}

/* Glass Panel for Dark Sections */
.glass-panel {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Pagination Customization */
.pagination {
  display: flex;
  gap: 0.5rem;
  list-style: none;
}
.pagination li a,
.pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 0.875rem;
  transition: all 0.3s;
}
.pagination li a:hover {
  border-color: #0a1628;
  color: #0a1628;
  background: #f8fafc;
}
.pagination li.active span {
  background: #0a1628;
  color: white;
  border-color: #0a1628;
}
.pagination li.disabled span {
  opacity: 0.5;
}

.marquee-content {
    animation: marquee 30s linear infinite;
}


/* Floating Orbs */
@keyframes float-slow {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-25px) translateX(10px); }
}

@keyframes float-medium {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-15px) translateX(-10px); }
}

.animate-float-slow {
  animation: float-slow 10s ease-in-out infinite;
}

.animate-float-medium {
  animation: float-medium 7s ease-in-out infinite;
}

/* Button Shine Effect */
.shine-effect::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.15), transparent);
  transform: rotate(30deg) translateX(-100%);
  transition: transform 0.8s;
}

.shine-effect:hover::after {
  transform: rotate(30deg) translateX(100%);
}

/* Smooth underline for footer links */
.footer-link {
  position: relative;
  display: inline-block;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .animate-float-slow,
  .animate-float-medium {
    animation: none;
  }
}

@keyframes scrollLine {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(300%);
    }
}

.animate-scroll-line {
    animation: scrollLine 1.8s infinite;
}


/* Hardware acceleration for the panel */
#menu-panel {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Custom scrollbar to match luxury aesthetic */
.luxury-menu-scroll::-webkit-scrollbar {
    width: 4px;
}
.luxury-menu-scroll::-webkit-scrollbar-track {
    background: transparent;
}
.luxury-menu-scroll::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.15);
    border-radius: 4px;
}
.luxury-menu-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(0,0,0,0.3);
}

/* Ensure overlay supports backdrop-filter */
#menu-overlay{
    position:absolute;
    inset:-100px;
    background:rgba(0,0,0,0);
    backdrop-filter:blur(0px);
    -webkit-backdrop-filter:blur(0px);
    will-change:backdrop-filter;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    #menu-panel,
    #menu-overlay,
    [data-stagger] {
        transition: none !important;
        animation: none !important;
    }
}


.luxury-select{
    position:relative;
}

.select-trigger{
    width:100%;
    height:64px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 24px;

    background:white;

    border:1px solid #e5e7eb;

    border-radius:18px;

    transition:.35s;
}

.select-trigger:hover{
    border-color:#1D519C;
}

.select-dropdown{
    position:absolute;

    top:calc(100% + 10px);

    left:0;

    width:100%;

    background:white;

    border-radius:18px;

    box-shadow:
    0 25px 50px rgba(0,0,0,.12);

    overflow:hidden;

    opacity:0;

    visibility:hidden;

    transform:translateY(10px);

    transition:.3s;

    z-index:1000;
}

.luxury-select.open .select-dropdown{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}


.filter-chip input{
    display:none;
}

.filter-chip span{
    display:flex;
    align-items:center;
    justify-content:center;

    padding:12px 24px;

    border-radius:999px;

    border:1px solid #dbe3ee;

    background:#fff;

    color:#0a1628;

    cursor:pointer;

    transition:.3s ease;
}

.filter-chip span:hover{
    border-color:#1D519C;
    color:#1D519C;
}

.filter-chip input:checked + span{
    background:#0a1628;
    border-color:#0a1628;
    color:#fff;
}

/* Prevent page scroll when scrolling dropdown */
.custom-dropdown {
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.dropdown-open {
    overscroll-behavior: contain;
}

.wishlist-active{
    color:#ef4444 !important;
    background:white !important;
}

.wishlist-active svg{
    fill:currentColor;
}


/* ===== FEATURED BRANDS PARALLAX SECTION ===== */
        .partners-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: #fff;
        }

        /* Orbit container */
        .orbit-wrapper {
            position: relative;
            width: 100%;
            max-width: 1200px;
            height:500px;
            margin: 0 auto;
        }

        /* The orbit ring - semicircle arc */
        .orbit-track {
            position: absolute;
            width:1100px;
            height:550px;
            left: 46%;
            top:82%;
            transform:translate(-50%,-50%);
        }

        /* Individual brand orbiting item */
        .orbit-item {
            position: absolute;
            width:90px;
            height:90px;
            border-radius: 50%;
            overflow: hidden;
            background:#fff;
            box-shadow:
                0 0 0 6px rgba(255,255,255,.95),
                0 25px 60px rgba(0,0,0,.15);
            backdrop-filter: blur(20px);
            transition: box-shadow 0.4s ease, filter 0.4s ease;
            cursor: pointer;
            will-change: transform, opacity;
        }

        .orbit-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            opacity: 1 !important;
        }

        .orbit-item:hover {
            transform:
                scale(1.12)
                translateY(-8px);

            box-shadow:
                0 35px 80px rgba(0,0,0,.18);
            z-index:999;
        }

        .orbit-item:hover img {
            transform: scale(1.08);
        }

        /* Reflection below each item */
        .orbit-reflection {
            position: absolute;
            width:70px;
            height: 35px;
            border-radius: 50%;
            opacity:0.18;
            filter:blur(18px);
            transform:scaleY(-1) scale(1.2);
            pointer-events: none;
            background-size: cover;
            background-position: center;
            will-change: transform, opacity;
        }

        /* Center content */
        .center-info {
            position: absolute;
            left: 50%;
            bottom:70px;
            top:auto;
            transform:translateX(-50%);
            width: 100%;
            max-width:600px;
            text-align: center;
        }

        .badge-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 7px 18px;
            background: rgba(245,245,245,0.95);
            border: 1px solid rgba(0,0,0,0.05);
            border-radius: 100px;
            font-size: 11px;
            font-weight: 500;
            color: #888;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            margin-bottom: 22px;
            backdrop-filter: blur(8px);
        }

        .badge-pill::before {
            content: '';
            width: 5px;
            height: 5px;
            background: #22c55e;
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.4; transform: scale(1.4); }
        }

        .main-headline {
            font-family:'Cormorant Garamond', serif;
            font-size: clamp(1.8rem, 4.5vw, 3.2rem);
            font-weight: 500;
            color: #111827;
            line-height: 1.12;
            letter-spacing: -0.02em;
            margin-bottom: 18px;
        }

        .main-headline em {
            font-style: normal;
            background: linear-gradient(135deg, #1a1a1a 0%, #555 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .headline {
            
        }

        .quote-text {
            font-size: 14px;
            color: var(--brand-secondary);
            line-height: 1.7;
            max-width: 360px;
            margin:0 0 18px;
            font-weight: 400;
        }

        .btn-store {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 13px 28px;
            background:#111827;
            color: white;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.3px;
            text-decoration: none;
            transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 18px rgba(0,0,0,0.12);
        }

        .btn-store:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(0,0,0,0.18);
            background: #2a2a2a;
        }

        .btn-store svg {
            transition: transform 0.3s ease;
        }

        .btn-store:hover svg {
            transform: translateX(3px);
        }

        /* Entrance animations */
        .reveal {
            opacity: 0;
            transform: translateY(24px);
        }

        .reveal.show {
            animation: revealIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        }

        .btn-store{
            background:#111827;
            color:#fff;
        }

        @keyframes revealIn {
            to { opacity: 1; transform: translateY(0); }
        }

        .stagger-1 { animation-delay: 0.08s; }
        .stagger-2 { animation-delay: 0.16s; }
        .stagger-3 { animation-delay: 0.24s; }
        .stagger-4 { animation-delay: 0.32s; }

        /* Scroll indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 36px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            opacity: 0.35;
            animation: bounce 2.5s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(6px); }
        }

        /* Responsive */
        @media (max-width:768px){
            .partners-section{
                min-height:860px;
            }

            .orbit-track{
                width:700px;
                height:350px;
                top:76%;
            }

            .orbit-item{
                width:65px;
                height:65px;
            }

            .orbit-reflection{
                width:65px;
                height:25px;
            }

            .center-info{
                position:absolute;
                top:56%;
                right:14px;
                left:auto;
                bottom:auto;
                transform:translateY(-40%);
                width:52%;
                max-width:230px;
                text-align:left;
                z-index:100;
            }

            .badge-pill{
                margin-bottom:14px;
            }

            .main-headline{
                font-size:1.9rem;
                max-width:220px;
                line-height:1.15;
                word-break:normal;
            }

            .quote-text{
                max-width:100%;
                font-size:12px;
                line-height:1.55;
            }

            .btn-store{
                padding:10px 18px;
                font-size:12px;
            }
        }

        @media (max-width:480px){
            .center-info{
                width:46%;
                right:14px;
                top:58%;
            }

            .main-headline{
                font-size:1.65rem;
            }

            .quote-text{
                font-size:12px;
            }

            .btn-store{
                padding:10px 16px;
            }
        }


.custom-scrollbar::-webkit-scrollbar { width: 4px; }
.custom-scrollbar::-webkit-scrollbar-track { background: transparent; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: #e2e8f0; border-radius: 4px; }
.custom-scrollbar::-webkit-scrollbar-thumb:hover { background: #cbd5e1; }

.hero-header.page-top svg{
    color:#111827 !important;
}

.hero-header.page-top svg:hover{
    color:#000 !important;
}


/* ==========================================
HERO SWIPER - PREMIUM LUXURY STYLES
========================================= */

.luxuryHero {
    width: 100%;
    height: 100vh;
    position: relative;
}

.luxuryHero .swiper-slide {
    position: relative;
    overflow: hidden;
    background: #000;
}

/* Parallax Background */
.hero-parallax-bg {
    will-change: transform;
}

.hero-parallax-bg img,
.hero-parallax-bg video {
    will-change: transform;
    transition: transform 0.1s linear;
}

/* Reveal Animation Items */
.reveal-item {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(10px);
}

/* Custom Pagination */
.luxuryHeroPagination {
    position: absolute;
    bottom: 40px !important;
    left: 48px !important;
    transform: none !important;
    display: flex;
    gap: 16px;
    z-index: 30;
}

.luxuryHeroPagination .swiper-pagination-bullet {
    position: relative;
    width: 40px;
    height: 40px;
    background: transparent;
    opacity: 1;
    margin: 0 !important;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.luxuryHeroPagination .swiper-pagination-bullet::before {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.luxuryHeroPagination .swiper-pagination-bullet-active::before {
    background: #D4AF37;
    transform: scale(1.3);
}

.luxuryHeroPagination .swiper-pagination-bullet .progress-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    transition: background 0.1s linear;
}

/* Progress Bar */
#hero-progress {
    transition: width 0.3s ease;
}

/* Floating Product Animations */
@keyframes float-product {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes float-product-delayed {
    0%, 100% {
        transform: translateY(0) rotate(-5deg);
    }
    50% {
        transform: translateY(15px) rotate(5deg);
    }
}

@keyframes float-badge {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-float-product {
    animation: float-product 6s ease-in-out infinite;
}

.animate-float-product-delayed {
    animation: float-product-delayed 8s ease-in-out infinite;
}

.animate-float-badge {
    animation: float-badge 5s ease-in-out infinite;
}

/* Scroll Line Animation */
@keyframes scroll-line {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(400%);
    }
}

.animate-scroll-line {
    animation: scroll-line 2s ease-in-out infinite;
}

/* Floating Orbs */
@keyframes float-slow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

@keyframes float-medium {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-20px, -15px);
    }
}

.animate-float-slow {
    animation: float-slow 20s ease-in-out infinite;
}

.animate-float-medium {
    animation: float-medium 15s ease-in-out infinite;
}

/* Navigation Buttons */
.swiper-button-prev-custom,
.swiper-button-next-custom {
    opacity: 0;
    transform: translateY(-50%) scale(0.9);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.luxuryHero:hover .swiper-button-prev-custom,
.luxuryHero:hover .swiper-button-next-custom {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

/* Slide Transition Effects */
.swiper-slide .hero-parallax-bg {
    transition: transform 1.2s cubic-bezier(0.45, 0, 0.55, 1);
}

.swiper-slide-active .hero-parallax-bg {
    transform: scale(1);
}

/* Responsive */
@media (max-width: 1024px) {
    .luxuryHero {
        height: 100dvh;
    }
    
    .luxuryHeroPagination {
        bottom: 24px !important;
    }
    
    .reveal-item {
        transform: translateY(20px);
    }
}

@media (max-width: 768px) {
    .luxuryHeroPagination .swiper-pagination-bullet {
        width: 32px;
        height: 32px;
    }
    
    .luxuryHeroPagination .swiper-pagination-bullet::before {
        inset: 10px;
    }
}


/* ─── Premium Float Animations ─── */
@keyframes perfumeFloatPremium {
    0%, 100% { transform: translateY(0) rotate(14deg); }
    50% { transform: translateY(-12px) rotate(12deg); }
}
@keyframes perfumeFloatPremiumMiddle {
    0%, 100% { transform: translateY(0) rotate(-4deg); }
    50% { transform: translateY(-14px) rotate(-6deg); }
}
@keyframes perfumeFloatPremiumBase {
    0%, 100% { transform: translateY(0) rotate(-18deg); }
    50% { transform: translateY(-10px) rotate(-20deg); }
}

/* ─── Shadow Breathe (synced with float) ─── */
@keyframes shadowBreathe {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.1; }
    50% { transform: translateX(-50%) scale(0.85); opacity: 0.06; }
}
@keyframes shadowBreatheMiddle {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.1; }
    50% { transform: translateX(-50%) scale(0.8); opacity: 0.05; }
}
@keyframes shadowBreatheBase {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.2; }
    50% { transform: translateX(-50%) scale(0.85); opacity: 0.12; }
}

/* ─── Timeline Node Pulse ─── */
@keyframes nodePulse {
    0%, 100% { box-shadow: 0 0 0 0px currentColor; }
    50% { box-shadow: 0 0 0 10px transparent; }
}

/* ─── Reveal Animations ─── */
@keyframes lineReveal {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}
@keyframes glassReveal {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ─── Animation Utilities ─── */
.animate-perfume-float-premium { animation: perfumeFloatPremium 7s ease-in-out infinite; }
.animate-perfume-float-premium-middle { animation: perfumeFloatPremiumMiddle 8s ease-in-out infinite 1.5s; }
.animate-perfume-float-premium-base { animation: perfumeFloatPremiumBase 9s ease-in-out infinite 3s; }

.animate-shadow-breathe { animation: shadowBreathe 7s ease-in-out infinite; }
.animate-shadow-breathe-middle { animation: shadowBreatheMiddle 8s ease-in-out infinite 1.5s; }
.animate-shadow-breathe-base { animation: shadowBreatheBase 9s ease-in-out infinite 3s; }

.animate-node-pulse { animation: nodePulse 2.5s ease-in-out infinite; }

/* ─── Scroll-Triggered States ─── */
.fp-section .fp-line-reveal { transform: translateX(-100%); }
.fp-section .fp-glass-reveal { opacity: 0; }
.fp-section .fp-reveal { opacity: 0; }

.fp-section.is-visible .fp-line-reveal { animation: lineReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.fp-section.is-visible .fp-glass-reveal { animation: glassReveal 0.6s ease-out 0.4s forwards; }
.fp-section.is-visible .fp-reveal { animation: fadeSlideUp 0.7s ease-out forwards; }
.fp-section.is-visible .fp-reveal:nth-child(1) { animation-delay: 0.1s; }
.fp-section.is-visible .fp-reveal:nth-child(2) { animation-delay: 0.25s; }
.fp-section.is-visible .fp-reveal:nth-child(3) { animation-delay: 0.4s; }
.fp-section.is-visible .fp-reveal:nth-child(4) { animation-delay: 0.55s; }
.fp-section.is-visible .fp-reveal:nth-child(5) { animation-delay: 0.7s; }

/* Custom pagination bullets */
.editors-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 5px !important;
    opacity: 1;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.18);
    border: 1px solid rgba(181, 142, 83, 0.18);
    transition: all .35s ease;
}

.editors-swiper .swiper-pagination-bullet:hover {
    background: rgba(181, 142, 83, 0.45);
}

.editors-swiper .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        #B58E53,
        #D7B97A
    );
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(181,142,83,.30);
}

/* ===============================
   BEST SELLER MOBILE BOOK
==================================*/

.bestSellerBookSwiper{
    overflow:visible;
    padding-top:15px;
    padding-bottom:35px;
}

.bestSellerBookSwiper .swiper-slide{
    width:86%;
}

.book-card{
    position:relative;
    border-radius:30px;
    overflow:hidden;
    box-shadow:
    0 20px 60px rgba(0,0,0,.08);
    transition:.45s;
}

.bestSellerBookSwiper .swiper-slide-prev{
    transform:scale(.94);
    opacity:.35;
}

.bestSellerBookSwiper .swiper-slide-next{
    transform:scale(.97);
    opacity:.65;
}

.bestSellerBookSwiper .swiper-slide-active{
    transform:scale(1);
    opacity:1;
}

.book-card::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    border:1px solid rgba(0,0,0,.05);
    pointer-events:none;
}


/* ========================= */
/* Product Gallery */
/* ========================= */

.product-gallery{
    position:relative;
    width:100%;
    height:100%;
    overflow:hidden;
}

.gallery-track{
    display:flex;
    width:100%;
    height:100%;
    transition:transform .35s ease;
    touch-action:pan-y;
}

.gallery-slide{
    min-width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:white;
}

.gallery-image{
    width:100%;
    height:100%;
    object-fit:contain;
    padding:10px;
    user-select:none;
    pointer-events:none;
    transition:transform .5s;
}

@media(min-width:768px){
    .gallery-image{
        object-fit:cover;
        padding:0;
    }
}

.gallery-dots{
    position:absolute;
    left:50%;
    bottom:12px;
    transform:translateX(-50%);
    display:flex;
    gap:6px;
    z-index:20;
}

.gallery-dot{
    width:6px;
    height:6px;
    border-radius:50%;
    background:rgba(255,255,255,.45);
    transition:.3s;
}

.gallery-dot.active{
    background:#fff;
    width:18px;
    border-radius:999px;
}