/* 
   Havenora Premium Design System 
   v2.0 - Enhanced Styling & Premium Effects
*/

/* ========================================
   PREMIUM HERO SECTION
   Stunning visual effects for index hero
   ======================================== */

/* --- Floating Particles --- */
@keyframes float-particle {

    0%,
    100% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) translateX(20px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: float-particle 15s linear infinite;
    box-shadow: 0 0 6px 2px rgba(255, 255, 255, 0.3);
}

.hero-particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.hero-particle:nth-child(2) {
    left: 20%;
    animation-delay: 2s;
    animation-duration: 14s;
}

.hero-particle:nth-child(3) {
    left: 30%;
    animation-delay: 4s;
    animation-duration: 16s;
}

.hero-particle:nth-child(4) {
    left: 40%;
    animation-delay: 1s;
    animation-duration: 13s;
}

.hero-particle:nth-child(5) {
    left: 50%;
    animation-delay: 3s;
    animation-duration: 15s;
}

.hero-particle:nth-child(6) {
    left: 60%;
    animation-delay: 5s;
    animation-duration: 11s;
}

.hero-particle:nth-child(7) {
    left: 70%;
    animation-delay: 2.5s;
    animation-duration: 17s;
}

.hero-particle:nth-child(8) {
    left: 80%;
    animation-delay: 0.5s;
    animation-duration: 14s;
}

.hero-particle:nth-child(9) {
    left: 90%;
    animation-delay: 3.5s;
    animation-duration: 12s;
}

.hero-particle:nth-child(10) {
    left: 15%;
    animation-delay: 6s;
    animation-duration: 18s;
}

.hero-particle:nth-child(11) {
    left: 45%;
    animation-delay: 7s;
    animation-duration: 13s;
}

.hero-particle:nth-child(12) {
    left: 75%;
    animation-delay: 8s;
    animation-duration: 16s;
}

/* --- Enhanced Gradient Orbs --- */
.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: orb-float 8s ease-in-out infinite;
}

@keyframes orb-float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -20px) scale(1.1);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(20px, 10px) scale(1.05);
    }
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #8B5CF6, #6366F1);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #EC4899, #F43F5E);
    bottom: -50px;
    right: 10%;
    animation-delay: -3s;
}

.hero-orb-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #F59E0B, #F97316);
    top: 40%;
    right: 30%;
    animation-delay: -5s;
    opacity: 0.3;
}

/* --- Premium Hero Container --- */
.hero-premium {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    overflow: hidden;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 1;
}

/* --- Hero Content Panels --- */
.hero-panel {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 2rem;
}

@media (min-width: 768px) {
    .hero-panel {
        padding: 4rem 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-panel {
        padding: 5rem 4rem;
    }
}

/* --- Staggered Animations --- */
.hero-stagger-1 {
    animation: heroFadeUp 0.8s ease-out 0.1s both;
}

.hero-stagger-2 {
    animation: heroFadeUp 0.8s ease-out 0.2s both;
}

.hero-stagger-3 {
    animation: heroFadeUp 0.8s ease-out 0.3s both;
}

.hero-stagger-4 {
    animation: heroFadeUp 0.8s ease-out 0.4s both;
}

.hero-stagger-5 {
    animation: heroFadeUp 0.8s ease-out 0.5s both;
}

.hero-stagger-6 {
    animation: heroFadeUp 0.8s ease-out 0.6s both;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Premium Text Effects --- */
.hero-title-glow {
    text-shadow:
        0 0 20px rgba(139, 92, 246, 0.5),
        0 0 40px rgba(139, 92, 246, 0.3),
        0 0 60px rgba(139, 92, 246, 0.1);
}

.hero-title-xl {
    font-size: 2.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .hero-title-xl {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title-xl {
        font-size: 4.5rem;
    }
}

/* --- Premium Badge with Shimmer --- */
.hero-badge-shimmer {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: #0f172a;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.hero-badge-shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    animation: badge-shimmer 2s infinite;
}

@keyframes badge-shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* --- Premium Glass Card --- */
.hero-glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* --- Feature List Premium --- */
.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.hero-feature-item:last-child {
    border-bottom: none;
}

.hero-feature-item:hover {
    transform: translateX(5px);
}

.hero-feature-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #10B981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* --- Premium Feature Grid --- */
.hero-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.hero-feature-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.25rem 1rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-feature-box:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -10px rgba(139, 92, 246, 0.3);
}

.hero-feature-box .feature-icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.hero-feature-box:hover .feature-icon {
    transform: scale(1.15);
}

/* --- Premium CTA Button --- */
.hero-cta-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow:
        0 8px 25px -5px rgba(217, 119, 6, 0.5),
        0 0 0 0 rgba(217, 119, 6, 0.4);
    transition: all 0.3s ease;
    overflow: hidden;
}

.hero-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 15px 35px -5px rgba(217, 119, 6, 0.6),
        0 0 0 4px rgba(217, 119, 6, 0.2);
}

.hero-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: left 0.5s ease;
}

.hero-cta-primary:hover::before {
    left: 100%;
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-cta-secondary:hover {
    background: white;
    color: #0f172a;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.3);
}

/* --- Premium Floating Scroll Indicator --- */
.floating-scroll-indicator {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 16px;
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
    pointer-events: none;
    /* So it doesn't block clicks */
}

/* Hide class when user scrolls down */
.floating-scroll-indicator.hidden-scroll {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(20px);
}

/* The Mouse Shape */
.floating-scroll-indicator .mouse-icon {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: center;
}

/* The Animated Wheel */
.floating-scroll-indicator .mouse-icon::before {
    content: '';
    position: absolute;
    top: 6px;
    width: 4px;
    height: 8px;
    background: #a78bfa;
    /* subtle purple */
    border-radius: 2px;
    animation: mouse-wheel-scroll 1.5s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(167, 139, 250, 0.8);
}

@keyframes mouse-wheel-scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(12px);
        opacity: 0;
    }
}

/* --- Floating Scroll Hint (for product pages) --- */
.scroll-hint-floating {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    pointer-events: none;
    animation: fade-bounce 2.5s ease-in-out infinite;
    transition: opacity 0.5s ease;
}

.scroll-hint-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.9), rgba(217, 70, 239, 0.9));
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4);
    backdrop-filter: blur(8px);
    font-size: 0.85rem;
    font-weight: 600;
}

.scroll-hint-content i {
    font-size: 1rem;
    animation: arrow-bounce 1.5s ease-in-out infinite;
}

@keyframes fade-bounce {

    0%,
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 0.8;
        transform: translateX(-50%) translateY(-8px);
    }
}

@keyframes arrow-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

/* Hide scroll hint after scrolling */
.scroll-hint-floating.hidden {
    opacity: 0;
    pointer-events: none;
}

/* --- Animated Counter --- */
.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #A78BFA, #F472B6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 768px) {
    .hero-stat-number {
        font-size: 3rem;
    }
}

/* --- Divider Line --- */
.hero-divider {
    display: none;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

@media (min-width: 768px) {
    .hero-divider {
        display: block;
    }
}

/* ========================================
   DISTINCT HERO PANELS
   Campaign = Gold/Amber, Set = Teal/Purple
   ======================================== */

/* --- Campaign Panel (Gold Theme) --- */
.hero-panel-campaign {
    position: relative;
    background: linear-gradient(135deg, #1a0f00 0%, #2d1810 50%, #1a0505 100%);
}

.hero-panel-campaign::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(239, 68, 68, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-panel-campaign .panel-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #1a0f00;
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: 6px;
    margin-bottom: 1rem;
}

/* --- Set Panel (Teal/Purple Theme) --- */
.hero-panel-set {
    position: relative;
    background: linear-gradient(135deg, #042f2e 0%, #0f172a 50%, #1e1b4b 100%);
}

.hero-panel-set::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 30%, rgba(20, 184, 166, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-panel-set .panel-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #14B8A6, #0D9488);
    color: #042f2e;
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: 6px;
    margin-bottom: 1rem;
}

/* Mobile Separator */
.hero-mobile-separator {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: linear-gradient(90deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

.hero-mobile-separator .separator-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.hero-mobile-separator .separator-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (min-width: 768px) {
    .hero-mobile-separator {
        display: none;
    }
}

/* Campaign CTA - Gold */
.hero-cta-campaign {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: #1a0f00;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 8px 25px -5px rgba(245, 158, 11, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-cta-campaign:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px -5px rgba(245, 158, 11, 0.6);
}

.hero-cta-campaign::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: cta-shine 2.5s infinite;
}

@keyframes cta-shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Set CTA - Teal */
.hero-cta-set {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #14B8A6 0%, #0D9488 100%);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 8px 25px -5px rgba(20, 184, 166, 0.5);
    transition: all 0.3s ease;
}

.hero-cta-set:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px -5px rgba(20, 184, 166, 0.6);
}

/* Glass Cards with Theme Colors */
.hero-glass-card-gold {
    background: rgba(245, 158, 11, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 1.25rem;
    padding: 1.25rem;
}

.hero-glass-card-teal {
    background: rgba(20, 184, 166, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: 1.25rem;
    padding: 1.25rem;
}

/* ========================================
   ENHANCED SECTION STYLES
   Premium styling for all index sections
   ======================================== */

/* --- Section Headers Premium --- */
.section-header-premium {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: #8B5CF6;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 8px 16px;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.section-title-xl {
    font-family: var(--font-title);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .section-title-xl {
        font-size: 3rem;
    }
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Collection Section Premium --- */
.collection-premium {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
    position: relative;
}

.collection-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.03), transparent);
    pointer-events: none;
}

/* --- Trending Section Premium --- */
.trending-premium {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 50%, #fffbeb 100%);
    position: relative;
    overflow: hidden;
}

.trending-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.2), transparent 70%);
    pointer-events: none;
}

/* --- Reviews Section Premium --- */
.reviews-premium {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.reviews-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 10% 20%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(236, 72, 153, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.review-card-enhanced {
    flex-shrink: 0;
    width: 320px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.review-card-enhanced:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
}

/* --- Footer Premium --- */
.footer-premium {
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    position: relative;
}

.footer-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
}

.footer-social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #94a3b8;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.5);
    color: white;
    transform: translateY(-3px);
}

/* --- Campaign Cards Enhanced --- */
.campaign-card-premium {
    background: white;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.campaign-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
}

/* --- Promo Ticker Enhanced --- */
.promo-ticker-premium {
    background: linear-gradient(90deg, #0f172a, #1e1b4b, #0f172a);
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

:root {
    /* --- Premium Color Palette --- */
    /* Primary Brand Colors */
    --color-primary: #8B5CF6;
    /* Violet-500 equivalent */
    --color-primary-dark: #7C3AED;
    /* Violet-600 */
    --color-primary-light: #A78BFA;
    /* Violet-400 */

    /* Accent Colors (Gold/Premium) */
    --color-gold: #D4AF37;
    --color-gold-light: #F3E5AB;
    --color-gold-dark: #AA8C2C;

    /* Backgrounds */
    --bg-dark: #0f172a;
    /* Slate-900 */
    --bg-card: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.9);

    /* Text */
    --text-main: #1e293b;
    /* Slate-800 */
    --text-muted: #64748b;
    /* Slate-500 */
    --text-light: #f8fafc;
    /* Slate-50 */

    /* Fonts */
    --font-title: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-bengali: 'Hind Siliguri', sans-serif;

    /* Premium Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.15);
}

/* --- Global Enhancements --- */
body {
    font-family: var(--font-body);
    background-color: #f8fafc;
    /* Slate-50 */
    overflow-x: hidden;
    /* Prevent horizontal scroll from animations */
}

.font-title {
    font-family: var(--font-title);
}

.font-bengali {
    font-family: var(--font-bengali);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-title);
}

/* --- Glassmorphism Utilities --- */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.glass-dark {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Animation Utilities --- */
@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes subtleFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-5px) rotate(1deg);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes cardShimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-up {
    animation: fadeInSlideUp 0.8s ease-out forwards;
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.animate-subtle-float {
    animation: subtleFloat 6s ease-in-out infinite;
}

.animate-scale-in {
    animation: scaleIn 0.5s ease-out forwards;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Premium Hover Effect for Cards */
.hover-premium {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(217, 70, 239, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
    z-index: -1;
}

.hover-premium:hover::before {
    opacity: 1;
}

.hover-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(135deg, var(--color-primary), #D946EF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animated Gradient Background */
.gradient-animated {
    background: linear-gradient(-45deg, #8B5CF6, #D946EF, #EC4899, #8B5CF6);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
}


/* --- Component: Premium Buttons --- */
.btn-gold {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 12px 24px;
    border-radius: 9999px;
    box-shadow: 0 4px 6px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.btn-gold:hover {
    box-shadow: 0 10px 15px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

/* --- Component: Package/Type Selection Cards --- */
.package-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.package-card:hover {
    border-color: var(--color-primary-light);
    box-shadow: 0 8px 20px -6px rgba(139, 92, 246, 0.2);
    transform: translateY(-2px);
}

.package-card.selected {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, #f5f3ff 0%, #fdf4ff 100%);
    box-shadow: 0 10px 25px -5px rgba(139, 92, 246, 0.3);
}

.package-card.selected .radio-indicator {
    border-color: var(--color-primary);
}

.package-card.selected .radio-indicator-inner {
    transform: scale(1) !important;
}

/* --- Component: Product Cards (Revamped) --- */
.product-card-premium {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.product-card-premium:hover {
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    transform: translateY(-6px);
    border-color: rgba(139, 92, 246, 0.25);
}

.card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-main);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.6);
    z-index: 10;
}

/* --- Mobile Nav Improvements --- */
@media (max-width: 768px) {
    .mobile-menu-open {
        overflow: hidden;
    }

    /* Better spacing for mobile grids */
    .grid-container-mobile {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background-color: var(--bg-card);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

body[data-state="loading"] #app-wrapper {
    visibility: hidden;
}

#preloader.fade-out {
    opacity: 0;
}

.spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid var(--color-primary);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* --- Skeleton Loading --- */
.skeleton {
    animation: skeleton-loading 1.5s infinite linear;
    background: linear-gradient(90deg, #e2e8f0 25%, #cbd5e1 50%, #e2e8f0 75%);
    background-size: 200% 100%;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* --- Promo Ticker --- */
.promo-ticker-bar {
    overflow: hidden;
    white-space: nowrap;
}

.promo-text {
    display: inline-block;
    padding-left: 100%;
    animation: ticker-scroll 30s linear infinite;
}

.promo-text span {
    margin-right: 60px;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* --- Custom Scrollbar --- */
.review-widget,
#trendingPerfumesContainer {
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary-light) var(--text-muted);
}

.review-widget::-webkit-scrollbar,
#trendingPerfumesContainer::-webkit-scrollbar {
    height: 6px;
}

.review-widget::-webkit-scrollbar-track,
#trendingPerfumesContainer::-webkit-scrollbar-track {
    background: var(--text-main);
    border-radius: 10px;
}

#trendingPerfumesContainer::-webkit-scrollbar-track {
    background: #e2e8f0;
    border-radius: 10px;
}

.review-widget::-webkit-scrollbar-thumb {
    background-color: var(--color-primary-light);
    border-radius: 10px;
}

#trendingPerfumesContainer::-webkit-scrollbar-thumb {
    background-color: var(--color-primary-light);
    border-radius: 10px;
}

/* --- Cart Badge --- */
.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #EF4444;
    color: white;
    font-size: 10px;
    font-weight: bold;
    border-radius: 9999px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Popular Card (Legacy Support / Enhanced) --- */
.popular-card {
    position: relative;
    background-color: var(--bg-card);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    animation: popular-glow 3s ease-in-out infinite;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.popular-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

@keyframes popular-glow {
    0% {
        box-shadow: 0 0 12px rgba(167, 139, 250, 0.7), 0 0 0 3px rgba(196, 181, 253, 0.8);
    }

    50% {
        box-shadow: 0 0 20px rgba(167, 139, 250, 1), 0 0 0 4px rgba(196, 181, 253, 1);
    }

    100% {
        box-shadow: 0 0 12px rgba(167, 139, 250, 0.7), 0 0 0 3px rgba(196, 181, 253, 0.8);
    }
}

.popular-ribbon-wrapper {
    width: 150px;
    height: 150px;
    overflow: hidden;
    position: absolute;
    top: -5px;
    left: -5px;
    z-index: 10;
}

.popular-ribbon {
    position: absolute;
    top: 35px;
    left: -35px;
    transform: rotate(-45deg);
    width: 170px;
    background: linear-gradient(45deg, #dc2626, #ef4444);
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 13px;
    padding: 5px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}

/* --- Floating Contact Widget --- */
#contact-widget .contact-options {
    display: flex;
    transform: scale(0.8) translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#contact-widget.active .contact-options {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

#contact-widget #contact-toggle-btn {
    transition: transform 0.3s ease;
}

#contact-widget.active #contact-toggle-btn {
    transform: rotate(90deg);
}

#contact-widget.active #contact-toggle-btn i {
    transform: rotate(-90deg);
}

.contact-icon {
    width: 3.5rem;
    height: 3.5rem;
    color: white;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    transform: transition;
    transition-property: all;
    transition-duration: 300ms;
}

/* --- Trust Nudge (Social Proof) --- */
.trust-nudge {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 999;
    max-width: 340px;
    width: calc(100% - 48px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(139, 92, 246, 0.08);
    overflow: hidden;
    transform: translateY(120%) scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}

.trust-nudge.visible {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.trust-nudge.hiding {
    transform: translateY(120%) scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.4, 0, 1, 1), opacity 0.3s ease;
}

.trust-nudge-header {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-nudge-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    object-fit: cover;
    flex-shrink: 0;
}

.trust-nudge-header-text {
    font-family: var(--font-bengali), sans-serif;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
}

.trust-nudge-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    line-height: 1;
}

.trust-nudge-close:hover {
    background: rgba(255, 255, 255, 0.35);
}

.trust-nudge-body {
    padding: 14px 16px 16px;
}

.trust-nudge-body p {
    font-family: var(--font-bengali), sans-serif;
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 12px;
}

.trust-nudge-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1877F2 0%, #0d6efd 100%);
    color: white;
    font-family: var(--font-bengali), sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.trust-nudge-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(24, 119, 242, 0.4);
}

.trust-nudge-cta i {
    font-size: 1rem;
}

/* Subtle pulse on the nudge when it first appears */
@keyframes nudge-attention {
    0%, 100% { box-shadow: 0 12px 40px rgba(0,0,0,0.12), 0 0 0 1px rgba(139,92,246,0.08); }
    50% { box-shadow: 0 12px 40px rgba(0,0,0,0.12), 0 0 0 3px rgba(139,92,246,0.2); }
}

.trust-nudge.visible {
    animation: nudge-attention 2s ease-in-out 0.6s 2;
}

/* Mobile: full width, adjust position */
@media (max-width: 480px) {
    .trust-nudge {
        left: 12px;
        right: 12px;
        bottom: 16px;
        max-width: none;
        width: auto;
    }
}

/* ========================================
   CAMPAIGN UI SYSTEM
   Premium styles for campaign products
   ======================================== */

/* --- Campaign Glow Animation --- */
@keyframes campaign-pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15), 0 0 0 1px rgba(139, 92, 246, 0.08);
    }

    50% {
        box-shadow: 0 8px 30px rgba(139, 92, 246, 0.25), 0 0 0 1px rgba(139, 92, 246, 0.15);
    }
}

.campaign-glow {
    animation: campaign-pulse 4s ease-in-out infinite;
}

/* --- Campaign Badge --- */
.campaign-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(139, 92, 246, 0.25);
}

.campaign-badge i {
    font-size: 0.6rem;
}


/* Gender Icons */
.gender-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.gender-icon.male {
    background: #dbeafe;
    color: #2563eb;
}

.gender-icon.female {
    background: #fce7f3;
    color: #db2777;
}

.gender-icon.couple {
    background: linear-gradient(135deg, #dbeafe 50%, #fce7f3 50%);
    color: #7c3aed;
}

/* --- Variant Card Premium Enhancements --- */
.variant-card-premium {
    position: relative;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.variant-card-premium:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 12px 32px -8px rgba(139, 92, 246, 0.2);
}

.variant-card-premium.selected {
    border: 2px solid #8B5CF6;
    box-shadow: 0 8px 24px -6px rgba(139, 92, 246, 0.3);
}

/* Variant Badge */
.variant-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.9), rgba(217, 70, 239, 0.9));
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
    z-index: 5;
}

/* Variant Image Wrapper */
.variant-image-wrapper {
    position: relative;
    overflow: hidden;
    background: #f8fafc;
}

.variant-card-premium .variant-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.variant-card-premium:hover .variant-image {
    transform: scale(1.05);
}

.variant-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    pointer-events: none;
}

/* Enhanced Placeholder */
.variant-card-premium .variant-image-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 200px;
    background: linear-gradient(135deg, #f0e6ff 0%, #fdf4ff 50%, #e0f2fe 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.variant-image-placeholder .placeholder-emoji {
    font-size: 4rem;
    animation: float-gentle 3s ease-in-out infinite;
}

.variant-image-placeholder .placeholder-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@keyframes float-gentle {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Variant Body */
.variant-card-premium .variant-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.variant-card-premium .variant-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Variant Items List */
.variant-items-list {
    flex-grow: 1;
}

.variant-item-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fafafa;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    box-shadow: none;
    transition: all 0.3s ease;
}

.variant-item-card:hover {
    background: #f5f3ff;
    border-color: rgba(139, 92, 246, 0.15);
}

.variant-item-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: linear-gradient(135deg, #8B5CF6, #D946EF);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(139, 92, 246, 0.35);
}

.variant-item-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.variant-item-name {
    font-weight: 700;
    color: var(--text-main);
    font-size: 0.95rem;
}

.variant-item-blend {
    font-size: 0.75rem;
    color: #7c3aed;
    font-weight: 500;
}

/* DNA Badge */
.variant-dna-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #dcfce7 0%, #d1fae5 100%);
    color: #166534;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid #86efac;
}

.variant-dna-badge i {
    color: #22c55e;
}

/* Choice Box (for couple/custom packages) */
.variant-choice-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #fdf4ff 100%);
    border: 2px dashed #c084fc;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.variant-choice-box:hover {
    border-color: #8B5CF6;
    background: linear-gradient(135deg, #ede9fe 0%, #fdf4ff 100%);
}

.variant-choice-box .choice-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, #8B5CF6, #D946EF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.35);
}

.variant-choice-box .choice-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #7c3aed;
    margin-bottom: 4px;
}

.variant-choice-box .choice-desc {
    font-size: 0.8rem;
    color: #6b7280;
}

/* Variant CTA Enhanced */
.variant-card-premium .variant-cta {
    margin-top: 20px;
    padding: 14px 20px;
    background: #f8f7ff;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #7c3aed;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.variant-card-premium:hover .variant-cta {
    background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.25);
}

.variant-card-premium.selected .variant-cta {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.variant-card-premium.selected .variant-cta::after {
    content: ' ✓';
}

/* Selected Checkmark */
.variant-card-premium .selected-check {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.5);
    z-index: 10;
    border: 3px solid white;
}

.variant-card-premium.selected .selected-check {
    opacity: 1;
    transform: scale(1);
}

/* --- Rich Content Styles (Product Details) --- */
.rich-content h2 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.rich-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1rem;
    white-space: pre-wrap;
}

.rich-content a {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: 500;
}

.rich-content img {
    max-width: 100%;
    border-radius: 0.75rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
}

.rich-content .info-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 1.5rem 0;
}

.rich-content .info-list li {
    display: flex;
    align-items: center;
    padding: 0.6rem 0;
    font-weight: 500;
    color: var(--text-main);
    border-bottom: 1px solid #f1f5f9;
}

.rich-content .info-list li:last-child {
    border-bottom: none;
}

.rich-content .info-list li i {
    color: var(--color-primary);
    width: 24px;
    text-align: center;
    margin-right: 12px;
    font-size: 1.1rem;
}

.rich-content .youtube-embed {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    max-width: 100%;
    border-radius: 0.75rem;
    margin: 1.5rem 0;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.rich-content .youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- Campaign Perks Grid --- */
.campaign-perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
}

.campaign-perk {
    background: linear-gradient(135deg, #f5f3ff 0%, #fdf4ff 100%);
    padding: 16px 12px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.campaign-perk:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -5px rgba(139, 92, 246, 0.15);
}

.campaign-perk .perk-icon {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.campaign-perk .perk-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-main);
}

/* --- Campaign Description Card (Enhanced) --- */
.campaign-description-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 245, 255, 0.95) 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 20px;
    padding: 24px 48px 24px 48px;
    margin: 16px auto;
    max-width: 800px;
    box-shadow:
        0 8px 32px rgba(139, 92, 246, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.campaign-description-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #8B5CF6, #EC4899, #F59E0B);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.campaign-description-card .desc-icon {
    position: absolute;
    top: 20px;
    left: 18px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.campaign-description-card .desc-icon-end {
    left: auto;
    right: 18px;
    top: auto;
    bottom: 20px;
}

.campaign-desc-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #4b5563;
    text-align: center;
    margin: 0;
}

/* Highlighted Terms in Description */
.highlight-price {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    padding: 0 2px;
}

.highlight-brand {
    background: linear-gradient(135deg, #8B5CF6, #6366F1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.highlight-cashback {
    background: linear-gradient(135deg, #10B981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.highlight-free {
    background: linear-gradient(135deg, #EC4899, #DB2777);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* --- Countdown Timer --- */
.campaign-countdown {
    background: linear-gradient(135deg, #7c3aed 0%, #db2777 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-weight: 600;
    box-shadow: 0 8px 24px -6px rgba(124, 58, 237, 0.4);
}

.campaign-countdown .countdown-item {
    text-align: center;
}

.campaign-countdown .countdown-value {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
}

.campaign-countdown .countdown-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    opacity: 0.85;
    letter-spacing: 0.05em;
}

.campaign-countdown .countdown-separator {
    font-size: 1.5rem;
    opacity: 0.6;
}

/* --- Cart Campaign Item --- */
.cart-item.campaign-item {
    border-left: 4px solid;
    border-image: linear-gradient(to bottom, #8B5CF6, #D946EF) 1;
    background: linear-gradient(to right, rgba(139, 92, 246, 0.03), transparent);
}

.cart-item .campaign-perks-mini {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.cart-item .perk-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: #166534;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
}

.cart-item .perk-tag.cashback {
    background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
    color: #854d0e;
}

/* --- Review Step Premium --- */
.review-card-premium {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.review-card-premium .review-header {
    background: linear-gradient(135deg, #8B5CF6 0%, #D946EF 100%);
    color: white;
    padding: 20px 24px;
}

.review-card-premium .review-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.review-card-premium .review-body {
    padding: 24px;
}

.review-card-premium .perfume-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.review-card-premium .perfume-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f5f3ff;
    color: var(--text-main);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.review-card-premium .perfume-tag .tag-emoji {
    font-size: 1rem;
}

/* --- Animated CTA Button --- */
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.btn-campaign-cta {
    background: linear-gradient(90deg,
            var(--color-primary) 0%,
            #D946EF 25%,
            var(--color-primary) 50%,
            #D946EF 75%,
            var(--color-primary) 100%);
    background-size: 200% auto;
    color: white;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    animation: shimmer 3s linear infinite;
    box-shadow: 0 8px 24px -6px rgba(139, 92, 246, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-campaign-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px -6px rgba(139, 92, 246, 0.5);
}

/* --- Perfume Selection Cards (Unified Styling) --- */
.perfume-card {
    position: relative;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    background: white !important;
    display: flex !important;
    flex-direction: column !important;
}

.perfume-card:hover {
    border-color: rgba(139, 92, 246, 0.25) !important;
    box-shadow: 0 8px 24px -8px rgba(139, 92, 246, 0.15);
    transform: translateY(-2px);
}

.perfume-card.has-selection {
    border: 2px solid #8B5CF6 !important;
    box-shadow: 0 4px 16px -4px rgba(139, 92, 246, 0.25);
}

.campaign-perfume-card {
    background: linear-gradient(135deg, #ffffff 0%, #faf8ff 100%) !important;
    border-color: rgba(139, 92, 246, 0.12) !important;
}

/* --- Card Body --- */
.perfume-card-body {
    padding: 16px !important;
    flex: 1 !important;
}

.perfume-card-header {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 10px !important;
}

.perfume-emoji-accent {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #f5f3ff, #fdf4ff) !important;
    border-radius: 12px !important;
    font-size: 1.35rem;
    border: 1px solid rgba(139, 92, 246, 0.1) !important;
}

.perfume-card-title-group {
    flex: 1 !important;
    min-width: 0 !important;
}

.perfume-card-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1e293b;
    line-height: 1.3;
}

.perfume-card-tagline {
    font-size: 0.8rem;
    color: #94a3b8;
    font-style: italic;
    line-height: 1.3;
    margin-top: 1px;
}

/* --- Gender Badges --- */
.gender-badge {
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px !important;
    border-radius: 20px !important;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    white-space: nowrap;
    flex-shrink: 0;
}

.gender-men {
    background: #dbeafe !important;
    color: #1d4ed8;
}

.gender-women {
    background: #fce7f3 !important;
    color: #be185d;
}

.gender-unisex {
    background: #f3e8ff !important;
    color: #7c3aed;
}

/* --- Detail Rows --- */
.perfume-card-details {
    border-top: 1px solid #f1f5f9 !important;
    padding-top: 10px !important;
    margin-top: 2px !important;
}

.perfume-detail-row {
    display: flex !important;
    align-items: baseline !important;
    gap: 6px !important;
    font-size: 0.75rem;
    line-height: 1.5;
    margin-bottom: 4px !important;
}

.perfume-detail-row:last-child {
    margin-bottom: 0 !important;
}

.perfume-detail-row i {
    font-size: 0.6rem;
    flex-shrink: 0;
    position: relative;
    top: 1px;
}

.perfume-detail-row.inspired-from {
    color: #6d28d9;
}

.perfume-detail-row.inspired-from i {
    color: #a78bfa;
}

.perfume-detail-row.notes-row {
    color: #0f766e;
}

.perfume-detail-row.notes-row i {
    color: #5eead4;
}

.perfume-detail-row.info-row {
    color: #64748b;
}

.perfume-detail-row.info-row i {
    color: #94a3b8;
}

.detail-label {
    font-weight: 700;
    white-space: nowrap;
}

.detail-value {
    font-weight: 500;
}

/* --- Quantity Controls --- */
.perfume-card-controls {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 8px !important;
    padding: 10px 16px !important;
    border-top: 1px solid #f1f5f9 !important;
    background: #fafbfc !important;
}

.perfume-card-controls .instance-count {
    font-weight: 800;
    font-size: 1rem;
    color: #1e293b;
    min-width: 20px;
    text-align: center;
}

/* Instance count badge for campaigns */
.campaign-instance-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #8B5CF6, #D946EF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.5);
    border: 2px solid white;
}

/* ========================================
   TRENDING PERFUME STYLING
   Static golden highlight, hover-only glow
   ======================================== */

.perfume-card.is-trending {
    border: 1px solid rgba(245, 158, 11, 0.35) !important;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    position: relative;
    box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.15), 0 2px 8px rgba(245, 158, 11, 0.08);
    transition: all 0.3s ease;
}

.perfume-card.is-trending:hover {
    box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.4), 0 8px 24px rgba(245, 158, 11, 0.18);
    transform: translateY(-3px);
}

.perfume-card.is-trending::before {
    display: none;
}

.trending-badge {
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0 0 0 12px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 3px;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
    z-index: 10;
}

.trending-badge i {
    font-size: 0.6rem;
    color: #fff;
}


/* ========================================
   COLLAPSIBLE CATEGORY ACCORDION
   Smooth expand/collapse for perfume lists
   ======================================== */

.category-header {
    transition: all 0.3s ease;
    user-select: none;
}

.category-header:hover {
    background-color: rgba(139, 92, 246, 0.05);
}

.category-header .chevron {
    transition: transform 0.3s ease;
}

.category-header.collapsed .chevron {
    transform: rotate(-90deg);
}

.category-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.category-content.expanded {
    max-height: 2000px;
    overflow: visible;
}

/* ========================================
   SET PRODUCT PREMIUM STYLING
   Mirror campaign aesthetics for set products
   ======================================== */

/* Set Package Card Styling */
.set-package-card {
    position: relative;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.set-package-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.25);
    box-shadow: 0 12px 32px -8px rgba(139, 92, 246, 0.15);
}

.set-package-card.selected {
    border: 2px solid #8B5CF6;
    box-shadow: 0 6px 20px -4px rgba(139, 92, 246, 0.25);
}

/* Set Perks Grid */
.set-perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 8px;
}

.set-perk {
    background: #f8fafb;
    padding: 10px 8px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.set-perk:hover {
    background: #f0fdf4;
    border-color: rgba(16, 185, 129, 0.15);
}

.set-perk .perk-icon {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 6px;
    font-size: 0.9rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.set-perk .perk-text {
    font-size: 0.68rem;
    font-weight: 600;
    color: #374151;
}

/* Set Item in Cart - Premium Styling */
.cart-item.set-item-premium {
    border-left: 4px solid;
    border-image: linear-gradient(to bottom, #10b981, #059669) 1;
    background: linear-gradient(to right, rgba(16, 185, 129, 0.03), transparent);
}

.cart-item .set-perks-mini {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.cart-item .set-perk-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: #166534;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
}

.cart-item .set-perk-tag.free-items {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
}

/* Quantity Buttons Styling */
.quantity-btn {
    width: 32px;
    height: 32px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    color: var(--text-main);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover:not(:disabled) {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: white;
}

.quantity-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Set Product Card on Index */
.product-card-premium.set-product {
    border: 1px solid rgba(139, 92, 246, 0.15);
    position: relative;
}

.product-card-premium.set-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8B5CF6, #10b981, #8B5CF6);
    background-size: 200% 100%;
    animation: shimmer-border 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes shimmer-border {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.product-card-premium.set-product:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.12), 0 4px 12px rgba(16, 185, 129, 0.08);
}

/* Free Delivery Badge */
.free-delivery-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    color: #dc2626;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 8px;
    border: 1px solid rgba(220, 38, 38, 0.12);
}

/* Free Items Badge */
.free-items-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: #059669;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 8px;
    border: 1px solid rgba(5, 150, 105, 0.12);
}

/* ========================================
   PRODUCT HERO SHOWCASE
   Premium product display for details page
   ======================================== */

.product-hero-showcase {
    margin-bottom: 2rem;
    animation: fadeInSlideUp 0.8s ease-out;
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 1.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

@media (min-width: 640px) {
    .product-hero-grid {
        grid-template-columns: 280px 1fr;
        gap: 2rem;
        padding: 2rem;
    }
}

@media (min-width: 768px) {
    .product-hero-grid {
        grid-template-columns: 320px 1fr;
    }
}

/* Product Image */
.product-hero-image-wrapper {
    position: relative;
}

.product-hero-image-container {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    background: white;
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.15);
    transition: all 0.4s ease;
}

.product-hero-image-container:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.2);
}

.product-hero-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.product-hero-image-glow {
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100px;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.product-popular-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    animation: pulse 2s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Product Info */
.product-hero-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Price Card */
.product-price-card {
    background: white;
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.product-price-display {
    text-align: center;
    margin-bottom: 1rem;
}

/* Perks Strip */
.product-perks-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.product-perk-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.product-perk-badge:hover {
    transform: translateY(-2px);
}

.product-perk-delivery {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    box-shadow: 0 2px 10px rgba(239, 68, 68, 0.3);
}

.product-perk-gift {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
}

/* Product Highlights */
.product-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .product-highlights {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

.product-highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.product-highlight-item:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.1);
    transform: translateX(4px);
}

.product-highlight-item .highlight-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    border-radius: 10px;
    color: #8B5CF6;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.product-highlight-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
}

/* Enhanced Rich Content */
.rich-content {
    margin-top: 1.5rem;
}

.rich-content h2 {
    font-family: var(--font-title);
    font-size: 1.35rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
    position: relative;
    padding-left: 1rem;
}

.rich-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: linear-gradient(180deg, #8B5CF6, #D946EF);
    border-radius: 4px;
}

.rich-content .info-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 1rem;
    padding: 1rem;
    border: 1px solid #e2e8f0;
}

.rich-content .info-list li {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    font-weight: 500;
    color: var(--text-main);
    border-bottom: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    margin-bottom: 0.25rem;
}

.rich-content .info-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.rich-content .info-list li:hover {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.rich-content .info-list li i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    border-radius: 8px;
    color: var(--color-primary);
    margin-right: 12px;
    font-size: 0.9rem;
    flex-shrink: 0;
}