/* ELORA BY HUMA – SHINE & SCENTS - Custom Luxury Theme Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --gold-primary: #b38728;
    --gold-accent: #c5a059;
    --gold-light: #faf5ea;
    --gold-dark: #855b24;
    --bg-page: #faf9f6;
    --bg-card: #ffffff;
    --bg-card-hover: #fcfbfa;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --border-light: rgba(0, 0, 0, 0.08);
}

body {
    background-color: var(--bg-page);
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
}

.font-cinzel {
    font-family: 'Cinzel', serif;
}

/* Gold Gradient Text */
.text-gold-gradient {
    background: linear-gradient(135deg, #855b24 0%, #b38728 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gold-metallic {
    background: linear-gradient(90deg, #855b24 0%, #b38728 25%, #c5a059 50%, #b38728 75%, #855b24 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Luxury Card Glow */
.gold-border-glow {
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(179, 135, 40, 0.2);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.gold-border-glow:hover {
    box-shadow: 0 10px 30px -4px rgba(179, 135, 40, 0.15);
    border-color: rgba(179, 135, 40, 0.45);
    transform: translateY(-3px);
}

/* Category Card Styling */
.category-card {
    background: #ffffff;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.category-card:hover {
    border-color: rgba(179, 135, 40, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(179, 135, 40, 0.12);
}

/* Product Card Styling */
.product-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.product-card:hover {
    border-color: rgba(179, 135, 40, 0.4);
    box-shadow: 0 12px 30px -8px rgba(179, 135, 40, 0.15);
    transform: translateY(-3px);
}

.product-image-container {
    background-color: #f8f7f4;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.product-image-container img {
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-container img {
    transform: scale(1.06);
}

/* Custom Navigation Buttons for Swiper */
.swiper-button-next-custom,
.swiper-button-prev-custom {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    z-index: 20;
}

.swiper-button-next-custom:hover,
.swiper-button-prev-custom:hover {
    background: #b38728;
    color: #ffffff;
    border-color: #b38728;
    box-shadow: 0 4px 15px rgba(179, 135, 40, 0.35);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f5f4f0;
}

::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b38728;
}

/* Product Tabs Active State */
.product-tab-btn.active {
    background-color: #b38728;
    color: #ffffff;
    border-color: #b38728;
}

/* Animated Floating WhatsApp Button */
/* LUXURY CIRCULAR ANIMATED WHATSAPP BUTTON (DESKTOP & MOBILE) */
.whatsapp-float {
    position: fixed;
    bottom: 34px; /* Slightly elevated from bottom edge as requested */
    left: 20px;
    z-index: 99;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2fe675, #20ba59);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 2px 6px rgba(0, 0, 0, 0.1);
    animation: whatsapp-glow-pulse 2.2s infinite ease-in-out;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
}

@media (min-width: 640px) {
    .whatsapp-float {
        bottom: 38px;
        left: 26px;
        width: 58px;
        height: 58px;
    }
}

.whatsapp-float:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.15);
}

@keyframes whatsapp-glow-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), 0 8px 20px rgba(37, 211, 102, 0.35);
    }
    65% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0), 0 8px 20px rgba(37, 211, 102, 0.35);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 8px 20px rgba(37, 211, 102, 0.35);
    }
}

/* Payment Method Card Selected State */
.payment-method-card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    transition: all 0.25s ease;
    cursor: pointer;
}

.payment-method-card.selected {
    border-color: #b38728;
    background-color: rgba(179, 135, 40, 0.06);
    box-shadow: 0 0 15px rgba(179, 135, 40, 0.15);
}

/* Thumbnail Gallery Active */
.thumb-item.active {
    border-color: #d4af37 !important;
}

/* Hero Swiper Bullet Customization */
.hero-swiper-pagination .swiper-pagination-bullet {
    background: #4b5563 !important;
    /* gray-600 */
    opacity: 1 !important;
    width: 6px !important;
    height: 6px !important;
    transition: all 0.3s ease !important;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
    background: #d4af37 !important;
    /* gold-500 */
    width: 24px !important;
    border-radius: 4px !important;
}

/* Shop Now Button Glow Shine Effect */
.shop-now-btn {
    position: relative;
    overflow: hidden;
}

.shop-now-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(212, 175, 55, 0.4) 30%,
            rgba(212, 175, 55, 0.7) 50%,
            rgba(212, 175, 55, 0.4) 70%,
            transparent);
    transform: skewX(-25deg);
    pointer-events: none;
    animation: shop-glow 5s infinite;
}

@keyframes shop-glow {
    0% {
        left: -120%;
    }

    15% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

/* Elegant Gold Sparkle (Fireworks) Styling */
.sparkle-container {
    position: absolute;
    top: 50%;
    width: 30px;
    height: 30px;
    transform: translateY(-50%);
    pointer-events: none;
}

.left-sparkle {
    left: -40px;
}

.right-sparkle {
    right: -40px;
}

.sparkle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 3px;
    background-color: #d4af37;
    /* gold */
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
}

/* Sparkle positioning and custom keyframe angles */
.spark-1 {
    animation: spark-out-1 20s infinite;
}

.spark-2 {
    animation: spark-out-2 20s infinite;
}

.spark-3 {
    animation: spark-out-3 20s infinite;
}

.spark-4 {
    animation: spark-out-4 20s infinite;
}

.spark-5 {
    animation: spark-out-5 20s infinite;
}

.spark-6 {
    animation: spark-out-6 20s infinite;
}

@keyframes spark-out-1 {

    0%,
    95% {
        transform: translate(-50%, -50%) scale(0.3);
        opacity: 0;
    }

    95.5% {
        opacity: 1;
    }

    98.5% {
        transform: translate(-15px, -15px) scale(1);
        opacity: 1;
    }

    99.5%,
    100% {
        transform: translate(-20px, -20px) scale(0.2);
        opacity: 0;
    }
}

@keyframes spark-out-2 {

    0%,
    95% {
        transform: translate(-50%, -50%) scale(0.3);
        opacity: 0;
    }

    95.5% {
        opacity: 1;
    }

    98.5% {
        transform: translate(15px, -15px) scale(1);
        opacity: 1;
    }

    99.5%,
    100% {
        transform: translate(20px, -20px) scale(0.2);
        opacity: 0;
    }
}

@keyframes spark-out-3 {

    0%,
    95% {
        transform: translate(-50%, -50%) scale(0.3);
        opacity: 0;
    }

    95.5% {
        opacity: 1;
    }

    98.5% {
        transform: translate(-18px, 5px) scale(1);
        opacity: 1;
    }

    99.5%,
    100% {
        transform: translate(-25px, 7px) scale(0.2);
        opacity: 0;
    }
}

@keyframes spark-out-4 {

    0%,
    95% {
        transform: translate(-50%, -50%) scale(0.3);
        opacity: 0;
    }

    95.5% {
        opacity: 1;
    }

    98.5% {
        transform: translate(18px, 5px) scale(1);
        opacity: 1;
    }

    99.5%,
    100% {
        transform: translate(25px, 7px) scale(0.2);
        opacity: 0;
    }
}

@keyframes spark-out-5 {

    0%,
    95% {
        transform: translate(-50%, -50%) scale(0.3);
        opacity: 0;
    }

    95.5% {
        opacity: 1;
    }

    98.5% {
        transform: translate(0px, -18px) scale(1);
        opacity: 1;
    }

    99.5%,
    100% {
        transform: translate(0px, -25px) scale(0.2);
        opacity: 0;
    }
}

@keyframes spark-out-6 {

    0%,
    95% {
        transform: translate(-50%, -50%) scale(0.3);
        opacity: 0;
    }

    95.5% {
        opacity: 1;
    }

    98.5% {
        transform: translate(0px, 18px) scale(1);
        opacity: 1;
    }

    99.5%,
    100% {
        transform: translate(0px, 25px) scale(0.2);
        opacity: 0;
    }
}

/* Swiper Fade Transition & Staggered Content Animation Customizations */
.hero-swiper {
    overflow: hidden;
}

/* Background image slow zoom (Ken Burns) effect on active slide */
.hero-swiper .swiper-slide .absolute img {
    transform: scale(1);
    transition: transform 6.5s ease-out;
}

.hero-swiper .swiper-slide-active .absolute img {
    transform: scale(1.08);
    /* Slow zoom-in */
}

/* Base states of content elements - Hidden and shifted downwards */
.hero-swiper .swiper-slide .text-gold-500,
.hero-swiper .swiper-slide h1 span,
.hero-swiper .swiper-slide p,
.hero-swiper .swiper-slide .pt-2,
.hero-swiper .swiper-slide .pt-4 {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Staggered entrance animations triggering on slide active state */
.hero-swiper .swiper-slide-active .text-gold-500 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

.hero-swiper .swiper-slide-active h1 span:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.hero-swiper .swiper-slide-active h1 span:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.45s;
}

.hero-swiper .swiper-slide-active p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.hero-swiper .swiper-slide-active .pt-2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.75s;
}

.hero-swiper .swiper-slide-active .pt-4 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.9s;
}

/* WhatsApp Button Glow Effect */
.glow-green {
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
}

.glow-green:hover {
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
    transform: translateY(-1px);
}

/* Swiper Disabled Navigation Button Styling */
.swiper-button-disabled {
    opacity: 0.3 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}

/* Bubble Floating Animation */
@keyframes float-bubble {
    0% {
        transform: translateY(0) scale(0.6);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-50px) scale(1.1);
        opacity: 0;
    }
}

.animate-bubble {
    animation: float-bubble 4s infinite linear;
}

/* Luxury Outline Text Effect with Hover Glow Transition */
.text-outline-luxury {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.4);
    text-stroke: 1.5px rgba(255, 255, 255, 0.4);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.text-outline-luxury:hover {
    -webkit-text-stroke: 1.5px #e5c158;
    text-stroke: 1.5px #e5c158;
    filter: drop-shadow(0 0 15px rgba(229, 193, 88, 0.3));
    letter-spacing: 0.3em;
}

/* Staggered Letter Glow Ripple Animation */
@keyframes letter-fade {

    0%,
    100% {
        opacity: 0.25;
        transform: translateY(0) scale(1);
        -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.35);
        text-stroke: 1.5px rgba(255, 255, 255, 0.35);
        filter: none;
    }

    30% {
        opacity: 1;
        transform: scale(1.06);
        -webkit-text-stroke: 1.8px #e5c158;
        text-stroke: 1.8px #e5c158;
        filter: drop-shadow(0 0 18px rgba(229, 193, 88, 0.5));
    }

    60%,
    80% {
        opacity: 0.25;
        transform: translateY(0) scale(1);
        -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.35);
        text-stroke: 1.5px rgba(255, 255, 255, 0.35);
        filter: none;
    }
}

.animate-letter-fade {
    animation: letter-fade 3.5s infinite ease-in-out;
}

/* Custom Webkit Autofill Input Styling */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: #111827 !important;
    -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
    box-shadow: 0 0 0px 1000px #ffffff inset !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* Strip copy-pasted background highlights and color clashing inside product descriptions */
#productDescription,
#productDescription *,
#panelDescription,
#panelDescription * {
    background-color: transparent !important;
    background: transparent !important;
    color: inherit !important;
}

/* Infinite Staggered Vertical Marquee Scroll */
@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }

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

.scroll-marquee {
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: scrollUp 35s linear infinite;
}

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