/*
 * MONADIC Luxury eCommerce Storefront Style
 * Colors: Charcoal Primary (#111111), Off-White Secondary (#F7F2EE), Accent Gold (#C9A66B)
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #111111;
    --secondary: #F7F2EE;
    --accent: #C9A66B;
    --accent-hover: #dec293;
    
    --light-grey: #eeeeee;
    --border-color: rgba(201, 166, 107, 0.2);
    --text-color: #2b2b2b;
    --text-muted: #777777;
    
    --font-bengali: 'Outfit', 'SolaimanLipi', 'Kalpurush', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
    background-color: #ffffff;
    color: var(--text-color);
    font-family: var(--font-bengali);
    overflow-x: hidden;
}

.text-gold {
    color: var(--accent) !important;
}

/* Premium Scrolling Announcement Bar */
.announcement-bar-marquee-wrapper {
    background-color: var(--primary) !important;
    border-bottom: 1px solid var(--accent);
    color: var(--secondary) !important;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    z-index: 1040;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    white-space: nowrap; /* Bulletproof prevent wrapping */
}

/* Sticky on mobile */
@media (max-width: 767.98px) {
    .announcement-bar-marquee-wrapper {
        position: sticky;
        top: 0;
    }
    .fe-header {
        position: sticky;
        top: 38px; /* Height of announcement bar */
    }
}

.announcement-bar-marquee-container {
    width: 100%;
    overflow: hidden;
    display: block;
}

.announcement-bar-marquee-track {
    display: flex;
    flex-wrap: nowrap; /* Prevent wrapping in flex row */
    width: max-content;
    animation: announcementMarquee 28s linear infinite;
}

.announcement-bar-marquee-track:hover {
    animation-play-state: paused;
}

.announcement-bar-marquee-item {
    padding: 0 3rem;
    flex-shrink: 0;
    letter-spacing: 0.5px;
    white-space: nowrap;
    display: inline-block;
}

@keyframes announcementMarquee {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Header & Menu */
.navbar-brand-img {
    height: 48px;
    object-fit: contain;
}

.fe-header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1020;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.fe-header.header-scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    border-bottom-color: rgba(201, 166, 107, 0.15);
}

.fe-nav-link {
    color: var(--primary) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}

.fe-nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 16px;
    background-color: var(--accent);
    transition: var(--transition);
}

.fe-nav-link:hover::after,
.fe-nav-link.active::after {
    width: calc(100% - 32px);
}

.fe-nav-link:hover {
    color: var(--accent) !important;
}

/* Announcement icon counters */
.nav-icon-link {
    color: var(--primary);
    font-size: 1.3rem;
    position: relative;
    padding: 8px;
    transition: var(--transition);
}

.nav-icon-link:hover {
    color: var(--accent);
}

.nav-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--accent);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Banner Carousels */
.hero-slider-item {
    height: 520px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.65), rgba(0,0,0,0.15));
    display: flex;
    align-items: center;
    color: #ffffff;
}

.hero-content h1 {
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: rgba(255,255,255,0.9);
}

/* Sections */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title h2 {
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--accent);
    margin: 15px auto 0;
}

/* Product Cards */
.product-card {
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(201, 166, 107, 0.08), 0 5px 15px rgba(0, 0, 0, 0.04);
    border-color: rgba(201, 166, 107, 0.25) !important;
}

.product-img-wrapper {
    position: relative;
    padding-top: 110%; /* Elegant aspect ratio for handbags */
    background-color: #f9f9f9;
    overflow: hidden;
}

.product-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.08);
}

.product-badge-discount {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--accent);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 5;
}

.product-badge-featured {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: var(--primary);
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid var(--accent);
    z-index: 5;
    text-transform: uppercase;
}

.wishlist-btn-card {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--light-grey);
    color: var(--text-muted);
    cursor: pointer;
    z-index: 5;
    transition: var(--transition);
}

.wishlist-btn-card:hover, .wishlist-btn-card.active {
    background-color: var(--primary);
    color: var(--accent);
    border-color: var(--accent);
}

.product-info {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-category-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    font-weight: 600;
}

.product-title-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.8em;
    margin-bottom: 10px;
    transition: var(--transition);
}

.product-title-link:hover {
    color: var(--accent);
}

.price-row {
    margin-bottom: 15px;
}

.product-price-regular {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.15rem;
}

.product-price-old {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 0.85rem;
    margin-left: 8px;
}

/* Category Grid Card */
.category-card {
    position: relative;
    height: 240px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover img {
    transform: scale(1.06);
}

.category-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    padding: 20px;
    transition: var(--transition);
}

.category-card:hover .category-card-overlay {
    background-color: rgba(17, 17, 17, 0.55);
}

.category-card-overlay h4 {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

/* Buttons */
.btn-monadic {
    background-color: var(--primary);
    color: var(--secondary) !important;
    border: 1px solid var(--primary);
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-monadic:hover {
    background-color: transparent;
    color: var(--primary) !important;
    border-color: var(--primary);
}

.btn-monadic-gold {
    background: linear-gradient(135deg, var(--accent) 0%, #aa7c11 100%);
    color: var(--primary) !important;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-monadic-gold:hover {
    box-shadow: 0 4px 15px rgba(201, 166, 107, 0.4);
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
}

.btn-whatsapp {
    background-color: #25d366;
    color: #ffffff !important;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* Floating Actions */
.floating-fab-container {
    position: fixed;
    bottom: 90px; /* offset for mobile sticky bar */
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fab-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.fab-btn:hover {
    transform: scale(1.1);
}

.fab-whatsapp {
    background-color: #25d366;
}

.fab-messenger {
    background-color: #0084ff;
}

/* Mobile Sticky Bottom Navigation */
.mobile-sticky-bottom {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 -3px 15px rgba(0,0,0,0.08);
    z-index: 1030;
    border-top: 1px solid var(--light-grey);
}

.mobile-nav-item {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    color: var(--primary);
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 600;
    transition: var(--transition);
}

.mobile-nav-item i {
    font-size: 1.3rem;
    margin-bottom: 3px;
    color: var(--accent);
}

.mobile-nav-item:hover {
    color: var(--accent);
}

/* Footer styling */
.fe-footer {
    background-color: var(--primary);
    color: #b0b0b0;
    padding: 60px 0 30px;
    border-top: 3px solid var(--accent);
}

.fe-footer h5 {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 8px;
}

.fe-footer h5::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 1px;
    background-color: var(--accent);
    bottom: 0;
    left: 0;
}

.fe-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fe-footer-links li {
    margin-bottom: 12px;
}

.fe-footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: var(--transition);
}

.fe-footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.fe-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 40px;
    padding-top: 25px;
    font-size: 0.85rem;
}

/* Detail Page Layout overrides */
.gallery-thumbnail-list {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.gallery-thumb {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--light-grey);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-thumb.active, .gallery-thumb:hover {
    border-color: var(--accent);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-image-zoom-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--light-grey);
    background-color: #f9f9f9;
    cursor: zoom-in;
    position: relative;
}

.main-image-zoom-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.1s ease-out;
}

/* Brand Values Panel */
.value-card {
    text-align: center;
    padding: 25px;
    background-color: var(--secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 24px;
}

.value-card i {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.value-card h5 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

/* Suggestions dropdown popup */
.search-suggestions-box {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border: 1px solid var(--light-grey);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    z-index: 1050;
    max-height: 350px;
    overflow-y: auto;
    display: none;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 15px;
    border-bottom: 1px solid #f9f9f9;
    text-decoration: none !important;
    color: var(--primary);
    transition: var(--transition);
}

.suggestion-item:hover {
    background-color: var(--secondary);
}

.suggestion-item img {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    object-fit: cover;
}

/* Rating stars */
.rating-stars {
    color: #ffc107;
}

/* Responsive Media Queries */
@media (max-width: 991.98px) {
    .hero-slider-item {
        height: 380px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .floating-fab-container {
        bottom: 75px;
        right: 15px;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-bottom: 60px; /* offset for sticky bottom */
    }
    
    .mobile-sticky-bottom {
        display: flex;
    }
    
    .hero-slider-item {
        height: 280px;
    }
    
    .hero-content h1 {
        font-size: 1.7rem;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
}

/* Luxury Preloader Experience */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #111111;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.preloader-line {
    width: 0;
    height: 2px;
    background-color: var(--accent);
    margin: 0 auto;
    transition: width 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Micro Interactions & Click Scales */
.btn-monadic, .btn-monadic-gold, .btn-whatsapp, .btn-buy-now, .btn-add-cart {
    transition: transform 0.2s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.2s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.3s ease;
}

.btn-monadic:active, .btn-monadic-gold:active, .btn-whatsapp:active, .btn-buy-now:active, .btn-add-cart:active {
    transform: scale(0.96) !important;
}

/* Viewport Scroll Reveal System */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

.scroll-reveal.reveal-active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Animation Delays for Staggered Loads */
.delay-100 { transition-delay: 100ms !important; }
.delay-200 { transition-delay: 200ms !important; }
.delay-300 { transition-delay: 300ms !important; }
.delay-400 { transition-delay: 400ms !important; }
.delay-500 { transition-delay: 500ms !important; }

/* Dynamic Urgency / Pulse Animations */
@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

.animate-pulse {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.animate-spin-slow {
    display: inline-block;
    animation: spinSlow 8s linear infinite;
}

/* Premium Floating Toast Notifications */
.cart-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--accent);
    border-radius: 12px;
    color: white;
    padding: 16px 24px;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25), 0 5px 15px rgba(201, 166, 107, 0.15);
    transform: translateY(120px) scale(0.9);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-toast.toast-show {
    transform: translateY(0) scale(1);
    opacity: 1;
}

@media (max-width: 575.98px) {
    .cart-toast {
        bottom: 85px; /* offset for sticky footer bottom */
        right: 15px;
        left: 15px;
        padding: 12px 18px;
    }
}

/* ==========================================================================
   Luxury Storefront Advanced Animations & Interactive Enhancements
   ========================================================================== */

/* 1. Scroll Progress Bar */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 9999;
    pointer-events: none;
}
.scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, var(--accent), #ffdfa9);
    transition: width 0.1s ease-out;
}

/* 2. Custom luxury Cursor (Desktop Only) */
.custom-cursor {
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 99999;
    opacity: 0;
    transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
                height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
                background-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
                border-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
                opacity 0.3s ease;
    will-change: width, height, transform;
}
.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 99999;
    opacity: 0;
    transition: transform 0.15s ease-out, background-color 0.3s ease, opacity 0.3s ease;
    will-change: transform;
}

/* Custom Cursor Hover States */
.custom-cursor.cursor-hover {
    width: 52px;
    height: 52px;
    background-color: rgba(201, 166, 107, 0.1);
    border-color: var(--accent);
}
.custom-cursor.cursor-btn-hover {
    width: 44px;
    height: 44px;
    background-color: #ffffff;
    border-color: #ffffff;
    mix-blend-mode: difference;
}
.custom-cursor-dot.cursor-btn-hover {
    background-color: #ffffff;
    mix-blend-mode: difference;
}
.custom-cursor.cursor-card-hover {
    width: 75px;
    height: 75px;
    background-color: var(--accent);
    border-color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}
.custom-cursor.cursor-card-hover::after {
    content: 'VIEW';
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    animation: cursorFadeIn 0.3s forwards;
}
.custom-cursor.cursor-card-hover + .custom-cursor-dot {
    opacity: 0 !important;
}

@keyframes cursorFadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

/* 3. Header Scroll Transitions (Hide on Scroll Down, Show on Scroll Up) */
.fe-header {
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
}
.fe-header.header-hidden {
    transform: translateY(-100%);
}

/* 4. Product Hover-Swap System */
.product-img-wrapper .product-img-primary {
    z-index: 1;
    opacity: 1;
}
.product-img-wrapper .product-img-secondary {
    z-index: 2;
    opacity: 0;
    transform: scale(1.03);
}
.product-card:hover .product-img-wrapper .product-img-primary {
    opacity: 0;
    transform: scale(1.05);
}
.product-card:hover .product-img-wrapper .product-img-secondary {
    opacity: 1;
    transform: scale(1.08);
}

/* Override general zoom when secondary image is NOT present */
.product-card:hover .product-img-wrapper img:not(.product-img-primary):not(.product-img-secondary) {
    transform: scale(1.08);
}

/* 5. Extended Scroll-Driven Reveal System */
.reveal-fade-in {
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity;
}
.reveal-fade-in.reveal-active {
    opacity: 1;
}

.reveal-slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}
.reveal-slide-up.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-slide-in-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}
.reveal-slide-in-left.reveal-active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-slide-in-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}
.reveal-slide-in-right.reveal-active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-zoom-out {
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.4s cubic-bezier(0.25, 1, 0.5, 1), transform 1.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}
.reveal-zoom-out.reveal-active {
    opacity: 1;
    transform: scale(1);
}

/* Premium Clip-Path Mask Reveal (Text / Cards sliding out of clip box) */
.reveal-clip-up {
    clip-path: inset(100% 0% 0% 0%);
    transform: translateY(40px);
    transition: clip-path 1.4s cubic-bezier(0.25, 1, 0.5, 1), transform 1.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: clip-path, transform;
}
.reveal-clip-up.reveal-active {
    clip-path: inset(0% 0% 0% 0%);
    transform: translateY(0);
}

/* 6. Magnetic Hover Controls */
.magnetic-btn-wrapper {
    display: inline-block;
}
.btn-magnetic {
    display: inline-block;
    transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
}

/* 7. Additional Micro-Interactions */
/* Lenis custom scroll style integration */
html.lenis, html.lenis body {
    height: auto;
}
.lenis-smooth {
    scroll-behavior: auto !important;
}
.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
.lenis-stopped {
    overflow: hidden;
}
.lenis-scrolling iframe {
    pointer-events: none;
}

