        /* ========================================
           Performance Optimizations - Lazy Loading
           ======================================== */
        .lazy-image {
            opacity: 0;
            transition: opacity 0.3s ease-in-out;
        }
        .lazy-image.lazy-loaded,
        .lazy-image[src]:not([src^="data:"]) {
            opacity: 1;
        }
        .lazy-loading {
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: shimmer 1.5s infinite;
        }
        @keyframes shimmer {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }
        /* Prevent CLS by reserving space for images */
        img[width][height] {
            aspect-ratio: attr(width) / attr(height);
        }

        /* ========================================
           GLETR - Premium Jewelry E-commerce Theme
           ======================================== */

        :root {
            /* Gold Palette */
            --gold-primary: #ffedbe;
            --gold-hover: #ded0a7;
            --gold-border: #e8dcc8;
            --gold-dark: #c9a961;
            --gold-text-hover: #b8860b;
            --gold-gradient: linear-gradient(135deg, #ffedbe 0%, #ded0a7 100%);
            --gold-coupon: #D4AF37;
            --gold-placeholder: #d4c4a8;

            /* Navy Palette */
            --navy: #1e3a5f;
            --navy-dark: #0d2137;
            --navy-gradient: linear-gradient(135deg, #1e3a5f, #0d2137);
            --navy-gradient-h: linear-gradient(90deg, #1e3a5f, #0d2137);
            --navy-light-bg: rgba(30, 58, 95, 0.1);
            --dark-navy: #1a1a2e;
            --dark-navy-end: #16213e;

            --pink-soft: #fdf0ed;
            --pink-accent: #f5d5c8;

            --primary: #333333;
            --primary-dark: #1a1a1a;
            --primary-light: #f5f5f5;

            /* Accent Colors */
            --accent: #ffedbe;
            --accent-light: #fff8e7;
            --teal-accent: #00D1B5;
            --accent-pink-bg: #fdf0ed;
            --accent-pink: #b8860b;
            --accent-blue-bg: #e3f2fd;
            --accent-blue: #1976d2;
            --accent-orange-bg: #fff3e0;
            --accent-orange: #ff9800;
            --accent-red: #dc2626;
            --star-color: #ffc107;

            /* Text Colors */
            --text-primary: #333333;
            --text-heading: #1a1a1a;
            --text-secondary: #666666;
            --text-body: #555555;
            --text-light: #6b6b6b;
            --text-caption: #888888;
            --text-muted: #999999;
            --dark: #333333;
            --charcoal: #444444;
            --gray: #777777;

            /* Backgrounds */
            --bg-white: #ffffff;
            --bg-warm: #fffcf7;
            --bg-cream: #fafafa;
            --bg-light: #f5f5f5;
            --bg-section: #faf7f2;
            --bg-section-alt: #f8f5f0;
            --gray-light: #f5f5f5;
            --white: #ffffff;

            /* Borders & Shadows */
            --border: #eeeeee;
            --border-light: #eeeeee;
            --border-medium: #dddddd;
            --border-card: #e9ecef;
            --border-subtle: #f0f0f0;
            --shadow-soft: 0 2px 8px rgba(0,0,0,0.04);
            --shadow-hover: 0 8px 25px rgba(0,0,0,0.08);
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.08);
            --shadow-card: 0 2px 8px rgba(0,0,0,0.04);
            --shadow-card-hover: 0 8px 25px rgba(0,0,0,0.08);
            --shadow-lift: 0 10px 30px rgba(0,0,0,0.08);
            --shadow-elevated: 0 12px 35px rgba(0,0,0,0.1);
            --shadow-prominent: 0 15px 40px rgba(0,0,0,0.15);

            /* Border Radius */
            --radius-xs: 4px;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --radius-pill: 25px;
            --radius-full: 50%;

            /* Typography Scale */
            --fs-section-title: 24px;
            --fs-section-title-lg: 28px;
            --fs-section-subtitle: 14px;
            --fs-card-title: 16px;
            --fs-card-title-sm: 14px;
            --fs-body: 14px;
            --fs-body-sm: 13px;
            --fs-caption: 12px;
            --fs-caption-sm: 11px;
            --fs-price: 16px;
            --fs-price-lg: 20px;
            --fs-price-old: 13px;

            /* Fonts */
            --font-primary: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            --font-heading: 'Archivo Narrow', 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            --font-body: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

            /* Transitions */
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --success: #28a745;
        }

        /* Global Styles */
        * {
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-primary);
            background: var(--bg-warm) !important;
            font-size: 15px;
            line-height: 1.7;
            letter-spacing: 0.02rem;
            overflow-x: hidden;
        }

        .main {
            background: var(--white) !important;
            min-height: 100vh;
        }

        /* Custom Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -200% 0;
            }

            100% {
                background-position: 200% 0;
            }
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        /* Heart beat animation for wishlist */
        @keyframes heartBeat {
            0%, 100% { transform: scale(1); }
            25% { transform: scale(1.25); }
            50% { transform: scale(0.95); }
            75% { transform: scale(1.15); }
        }

        /* Wishlist heart animation class */
        .heart-animate {
            animation: heartBeat 0.4s ease !important;
        }

        @keyframes slideInFromLeft {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .animate-fadeInUp {
            animation: fadeInUp 0.6s ease forwards;
        }

        .animate-fadeInLeft {
            animation: fadeInLeft 0.6s ease forwards;
        }

        .animate-fadeInRight {
            animation: fadeInRight 0.6s ease forwards;
        }

        .animate-scaleIn {
            animation: scaleIn 0.5s ease forwards;
        }

        .delay-1 {
            animation-delay: 0.1s;
        }

        .delay-2 {
            animation-delay: 0.2s;
        }

        .delay-3 {
            animation-delay: 0.3s;
        }

        .delay-4 {
            animation-delay: 0.4s;
        }

        .delay-5 {
            animation-delay: 0.5s;
        }

     
        h1, h2, h3, h4, h5, h6,
        .main h1,
        .main h2,
        .main h3,
        .main h4,
        .main h5 {
            font-family: var(--font-primary);
            font-weight: 600;
            color: var(--text-primary);
            letter-spacing: 0;
        }

        .main h1, h1 {
            font-size: 28px;
            font-weight: 700;
        }

        .main h2, h2 {
            font-size: 24px;
            font-weight: 600;
        }

        .main h3, h3 {
            font-size: 20px;
            font-weight: 600;
        }

        h4 {
            font-size: 16px;
            font-weight: 600;
        }

        h5 {
            font-size: 14px;
            font-weight: 600;
        }

        /* Section Titles - Clean Minimal Style */
        .main .section-title {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 12px;
        }

        .main .section-title h3 {
            margin: 0;
            font-family: var(--font-primary);
            font-weight: 600;
            color: var(--text-primary);
        }

        .main .section-title::before {
            content: '';
            width: 4px;
            height: 24px;
            background: var(--gold-primary);
            border-radius: 2px;
        }

        /* Section Subtitle */
        .section-subtitle {
            font-family: var(--font-primary);
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 40px;
        }

        /* Header Styles - Clean White */
        .header-area,
        header,
        .header-top,
        .header-middle,
        .header-bottom,
        .sticky-bar,
        [class*="header-"],
        .header-bottom-bg-color,
        .header-style-5 .header-bottom {
            background: var(--white) !important;
        }

        /* Full Header Sticky - Logo + Search + Navigation all stay fixed on scroll */
        .header-area {
            position: sticky !important;
            top: 0 !important;
            z-index: 99999 !important;
            background: #ffffff !important;
            transition: box-shadow 0.3s ease;
        }

        /* Add shadow when scrolled */
        .header-area.scrolled {
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1) !important;
        }

        /* Mobile header sticky */
        @media (max-width: 991px) {
            .header-area {
                position: sticky !important;
                top: 0 !important;
            }
        }

        /* Override the old sticky-bar behavior - we don't need it separately now */
        .sticky-bar.stick {
            position: relative !important;
            animation: none !important;
        }

        .header-top {
            background: var(--dark) !important;
            padding: 8px 0;
            font-size: 12px;
        }

        .header-top a {
            color: rgba(255, 255, 255, 0.9);
            transition: var(--transition);
        }

        .header-top a:hover {
            color: var(--primary);
        }

        .header-middle {
            padding: 6px 0;
            border-bottom: 1px solid var(--border);
        }

        .header-bottom,
        .header-bottom-bg-color,
        .sticky-bar {
            background: var(--white) !important;
            border-bottom: 1px solid var(--border);
            padding: 0 !important;
        }

        .header-bottom-bg-color::before,
        .header-bottom-bg-color::after,
        .sticky-bar::before,
        .sticky-bar::after {
            display: none !important;
            background: none !important;
        }

        /* Remove blue color from header sides - Force white background */
        .header-bottom-bg-color,
        .header-style-5 .header-bottom,
        .header-style-1 .header-bottom-bg-color,
        .header-style-1.header-style-5 .header-bottom-bg-color,
        .header-area.header-style-5 .header-bottom,
        .header-bottom.header-bottom-bg-color.sticky-bar {
            background: #ffffff !important;
            background-color: #ffffff !important;
            background-image: none !important;
        }

        /* Override any pseudo elements creating blue color */
        .header-bottom-bg-color::before,
        .header-bottom-bg-color::after,
        .header-bottom::before,
        .header-bottom::after,
        .sticky-bar::before,
        .sticky-bar::after,
        .header-wrap::before,
        .header-wrap::after {
            display: none !important;
            content: none !important;
            background: transparent !important;
        }

        /* Force white on entire header area - Override main.css colorPrimary */
        .header-style-1.header-style-5 .header-bottom-bg-color,
        .header-style-1 .header-bottom-bg-color,
        .header-bottom-bg-color {
            background-color: #ffffff !important;
            background: #ffffff !important;
        }

        .header-bottom,
        .sticky-bar,
        .header-area .header-bottom,
        .header-area .sticky-bar {
            background: #ffffff !important;
            background-color: #ffffff !important;
        }

        /* Remove any box shadows that might show color */
        .header-style-1 .header-bottom-bg-color {
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05) !important;
        }

        /* Reduce header height */
        .header-bottom .container,
        .sticky-bar .container {
            padding-top: 0 !important;
            padding-bottom: 0 !important;
        }

        /* Navigation - Premium Gold & Navy Theme */
        .main-menu li a {
            font-family: var(--font-body);
            font-weight: 500;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.08rem;
            padding: 8px 14px !important;
            color: var(--text-primary) !important;
            -webkit-text-fill-color: var(--text-primary) !important;
            background: none !important;
            transition: all 0.3s ease;
            position: relative;
        }

        .main-menu li a::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--gold-gradient);
            transition: all 0.3s ease;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .main-menu li a:hover::after,
        .main-menu li.active a::after {
            width: 80%;
        }

        .main-menu li a:hover,
        .main-menu li.active a {
            color: var(--gold-text-hover) !important;
            -webkit-text-fill-color: var(--gold-text-hover) !important;
        }

        /* Collections Dropdown Menu */
        .main-menu>nav>ul>li {
            position: relative;
        }

        .main-menu>nav>ul>li>a i {
            font-size: 10px;
            margin-left: 3px;
        }

        /* Hover bridge: invisible padding below the trigger to prevent gap flicker */
        .main-menu>nav>ul>li>a {
            padding-bottom: 14px;
            margin-bottom: -14px;
        }

        .main-menu .sub-menu {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 220px;
            background: #ffffff;
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
            padding: 10px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(5px);
            transition: opacity 0.2s ease, transform 0.2s ease;
            transition-delay: 0.1s; /* delay hide to prevent flicker */
            pointer-events: none;
            z-index: 999;
            border: 1px solid #e9ecef;
            -webkit-transform: translateZ(0) translateY(5px);
            will-change: opacity, transform;
        }

        .main-menu>nav>ul>li:hover .sub-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            -webkit-transform: translateZ(0) translateY(0);
            pointer-events: auto;
            transition-delay: 0s; /* show immediately */
        }

        .main-menu .sub-menu li {
            display: block;
        }

        .main-menu .sub-menu li a {
            display: block;
            padding: 10px 20px !important;
            color: #1e3a5f !important;
            -webkit-text-fill-color: #1e3a5f !important;
            font-size: 13px !important;
            text-transform: none !important;
            font-weight: 500 !important;
            border-bottom: 1px solid #f5f5f5;
            transition: all 0.2s ease;
        }

        .main-menu .sub-menu li:last-child a {
            border-bottom: none;
        }

        .main-menu .sub-menu li a:hover {
            background: var(--bg-light);
            color: var(--gold-text-hover) !important;
            -webkit-text-fill-color: var(--gold-text-hover) !important;
            padding-left: 25px !important;
        }

        .main-menu .sub-menu li a::after {
            display: none !important;
        }

        /* ========== Mega Menu for Categories ========== */
        .main-menu .mega-menu {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 780px;
            background: #ffffff;
            border-radius: 0 0 12px 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
            padding: 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(5px);
            transition: opacity 0.2s ease, transform 0.2s ease;
            transition-delay: 0.1s; /* delay hide to prevent flicker */
            pointer-events: none;
            z-index: 9999;
            display: flex;
            -webkit-transform: translateZ(0) translateY(5px);
            will-change: opacity, transform;
        }

        .main-menu>nav>ul>li:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            -webkit-transform: translateZ(0) translateY(0);
            pointer-events: auto;
            transition-delay: 0s; /* show immediately */
        }

        .mega-menu-left {
            width: 220px;
            background: #fff;
            border-right: 1px solid #f0f0f0;
            padding: 15px 0;
        }

        .mega-menu-right {
            flex: 1;
            padding: 20px 25px;
            background: #fafafa;
            display: block;
        }

        .mega-menu-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 20px;
            color: #333;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
        }

        .mega-menu-item:hover,
        .mega-menu-item.active {
            background: #f8f9fa;
            color: var(--gold-text-hover);
        }

        .mega-menu-item.all-item {
            color: #1e3a5f;
            font-weight: 600;
            border-bottom: 1px solid #eee;
            margin-bottom: 5px;
        }

        .mega-menu-item.all-item:hover {
            color: var(--gold-text-hover);
            text-decoration: none;
        }

        .mega-menu-item i {
            font-size: 10px;
            opacity: 0.5;
        }

        /* Category Panel - Right Side */
        .category-panel {
            display: none;
        }

        .category-panel:first-child,
        .category-panel.active {
            display: block;
        }

        .panel-all-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 15px;
            font-weight: 600;
            color: #333;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
            margin-bottom: 15px;
            text-decoration: none;
        }

        .panel-all-link:hover {
            color: var(--gold-text-hover);
            text-decoration: none;
        }

        .panel-all-link i {
            font-size: 12px;
        }

        /* Filter Groups Grid */
        .filter-groups {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .filter-group {
            margin-bottom: 5px;
        }

        .filter-group-title {
            font-size: 12px;
            font-weight: 700;
            color: #333;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .filter-link {
            display: block;
            font-size: 13px;
            color: #666;
            padding: 5px 0;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .filter-link:hover {
            color: var(--gold-text-hover);
            padding-left: 5px;
            text-decoration: none;
        }

        /* Has Mega Menu - Ensure proper positioning */
        .main-menu>nav>ul>li.has-mega-menu {
            position: static;
        }

        .main-menu>nav>ul {
            position: relative;
        }

        /* Safari flicker fix: override base theme top:120% gap and margin-top */
        .main-menu>nav>ul>li ul.sub-menu {
            top: 100% !important;
            margin-top: 0 !important;
        }
        .main-menu>nav>ul>li ul.mega-menu {
            margin-top: 0 !important;
        }

        /* Safari flicker fix: account/cart dropdown */
        .cart-dropdown-wrap {
            pointer-events: none;
            transition: opacity 0.2s ease, transform 0.2s ease !important;
            transition-delay: 0.1s !important;
            -webkit-transform: translateZ(0);
        }
        .header-action-icon-2:hover .cart-dropdown-wrap,
        .header-action .header-action-icon:hover .cart-dropdown-wrap {
            pointer-events: auto;
            transition-delay: 0s !important;
        }

        /* Filter Button & Price Slider - Gold Theme */
        .btn-default,
        .btn.btn-sm.btn-default {
            background: var(--gold-gradient) !important;
            color: var(--text-primary) !important;
            border: none !important;
            border-radius: 6px;
            padding: 10px 20px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-default:hover,
        .btn.btn-sm.btn-default:hover {
            background: var(--gold-hover) !important;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(222, 208, 167, 0.4);
        }

        /* Price Range Slider - Gold Theme */
        .noUi-connect {
            background: var(--gold-gradient) !important;
        }

        .noUi-horizontal .noUi-handle {
            background: var(--gold-primary) !important;
            border: 2px solid var(--gold-dark) !important;
            border-radius: 50% !important;
            box-shadow: 0 2px 10px rgba(225, 191, 124, 0.4) !important;
        }

        .noUi-handle:before,
        .noUi-handle:after {
            display: none !important;
        }

        .noUi-target {
            background: var(--bg-light) !important;
            border: none !important;
            border-radius: 10px !important;
        }

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

        /* Categories Button */
        .categories-button-active {
            background: var(--gold-primary) !important;
            color: var(--text-primary) !important;
            border: 1px solid var(--gold-border) !important;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            padding: 12px 20px;
            transition: var(--transition);
            box-shadow: 0 2px 8px rgba(222, 208, 167, 0.3);
        }

        .categories-button-active:hover {
            background: var(--gold-hover) !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(222, 208, 167, 0.4);
        }

        .categories-dropdown-wrap {
            background: var(--white);
            border: none;
            border-radius: 12px;
            box-shadow: var(--shadow-lg);
            padding: 8px 0;
        }

        .categories-dropdown-wrap ul li a {
            color: var(--charcoal);
            font-weight: 500;
            font-size: 13px;
            padding: 12px 20px;
            transition: var(--transition);
            border-radius: 0;
        }

        .categories-dropdown-wrap ul li a:hover {
            color: var(--primary-dark);
            background: var(--gray-light);
            padding-left: 25px;
        }

        /* Hero Section Styles */
        .home-slider {
            background: var(--white);
            padding: 0;
        }

        .hero-slider-1 .single-hero-slider {
            border-radius: 16px;
            overflow: hidden;
            min-height: 450px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .hero-slider-1 .single-hero-slider::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
        }

        .hero-slider-1 .slider-content {
            position: relative;
            z-index: 2;
            padding: 60px 40px;
        }

        .hero-slider-1 .slider-content h1 {
            color: var(--white);
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 15px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            animation: slideInFromLeft 0.8s ease;
        }

        .hero-slider-1 .slider-content p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 16px;
            margin-bottom: 25px;
            animation: slideInFromLeft 0.8s ease 0.2s backwards;
        }

        .hero-slider-1 .slider-content .btn {
            animation: slideInFromLeft 0.8s ease 0.4s backwards;
        }

        /* Side Banners */
        .banner-img {
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            transition: var(--transition);
        }

        .banner-img:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .banner-img img {
            transition: var(--transition);
        }

        .banner-img:hover img {
            transform: scale(1.05);
        }

        .banner-img .banner-text {
            position: absolute;
            padding: 20px;
        }

        .banner-img .banner-text h4,
        .banner-img .banner-text h5,
        .banner-img .banner-text h6 {
            color: var(--white);
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        /* Category Section */
        .popular-categories {
            background: var(--white);
            padding: 60px 0;
        }

        .card-2 {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 25px 15px;
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .card-2::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--primary-dark));
            transform: scaleX(0);
            transition: var(--transition);
        }

        .card-2:hover {
            border-color: var(--primary-light);
            box-shadow: var(--shadow-md);
            transform: translateY(-8px);
        }

        .card-2:hover::before {
            transform: scaleX(1);
        }

        .card-2 figure {
            margin-bottom: 15px;
        }

        .card-2 figure img {
            transition: var(--transition);
        }

        .card-2:hover figure img {
            transform: scale(1.1);
        }

        .card-2 h6 a {
            color: var(--dark);
            font-weight: 600;
            font-size: 14px;
            transition: var(--transition);
        }

        .card-2:hover h6 a {
            color: var(--primary-dark);
        }

        .card-2 span {
            color: var(--gray);
            font-size: 12px;
        }

        /* Banner Sections */
        .banners,
        .four_column_banner {
            background: var(--white);
        }

        .banners .banner-img,
        .four_column_banner .banner-img {
            border-radius: 16px;
            overflow: hidden;
            position: relative;
        }

        .banners .banner-img::after,
        .four_column_banner .banner-img::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
            opacity: 0;
            transition: var(--transition);
        }

        .banners .banner-img:hover::after,
        .four_column_banner .banner-img:hover::after {
            opacity: 1;
        }

        /* Product Cards - Clean Modern Style */
        .product-cart-wrap {
            background: var(--white);
            border: none;
            border-radius: 12px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            position: relative;
            box-shadow: var(--shadow-soft);
        }

        .product-cart-wrap::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gold-gradient);
            transform: scaleX(0);
            transition: var(--transition);
            z-index: 1;
        }

        .product-cart-wrap:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }

        .product-cart-wrap:hover::before {
            transform: scaleX(1);
        }

        .product-cart-wrap .product-img-action-wrap {
            overflow: hidden;
            border-radius: 16px 16px 0 0;
        }

        .product-cart-wrap .product-img-action-wrap img {
            transition: var(--transition);
        }

        .product-cart-wrap:hover .product-img-action-wrap img {
            transform: scale(1.08);
        }

        .product-cart-wrap .product-action-1 {
            opacity: 0;
            transform: translateY(10px);
            transition: var(--transition);
        }

        .product-cart-wrap:hover .product-action-1 {
            opacity: 1;
            transform: translateY(0);
        }

        .product-cart-wrap .product-action-1 a {
            background: var(--white);
            border: none;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .product-cart-wrap .product-action-1 a:hover {
            background: var(--gold-primary);
            color: var(--text-primary);
        }

        .product-content-wrap h2 a {
            font-family: var(--font-primary);
            color: var(--text-primary);
            font-weight: 500;
            font-size: 14px;
            transition: var(--transition);
        }

        .product-content-wrap h2 a:hover {
            color: var(--gold-text-hover);
        }

        .product-price span {
            color: var(--dark);
            font-weight: 700;
            font-size: 16px;
        }

        .product-price .old-price {
            color: var(--gray);
            font-weight: 400;
            font-size: 13px;
        }

        /* Product Badges - Pill Style */
        .product-badges span {
            border-radius: 20px;
            font-size: 10px;
            font-weight: 600;
            padding: 5px 12px;
            letter-spacing: 0.03rem;
        }

        .product-badges .hot {
            background: var(--gold-primary);
            color: var(--text-primary);
            border: 1px solid var(--gold-border);
        }

        .product-badges .new {
            background: linear-gradient(135deg, #27ae60, #2ecc71);
            color: #fff;
        }

        .product-badges .sale {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: #fff;
        }

        /* Tabs - Gold Accent */
        .nav-tabs {
            border: none;
            gap: 10px;
            flex-wrap: wrap;
        }

        .nav-tabs .nav-link {
            border: 1px solid var(--border-light);
            border-radius: 25px;
            color: var(--text-secondary);
            font-family: var(--font-body);
            font-weight: 500;
            font-size: 13px;
            padding: 10px 24px;
            transition: var(--transition);
            background: var(--white);
        }

        .nav-tabs .nav-link:hover {
            border-color: var(--gold-primary);
            color: var(--gold-text-hover);
        }

        .nav-tabs .nav-link.active {
            background: var(--gold-primary);
            border-color: var(--gold-border);
            color: var(--text-primary);
            box-shadow: 0 2px 8px rgba(222, 208, 167, 0.3);
        }

        /* Buttons - Gold Primary */
        .btn {
            border-radius: 6px;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.05rem;
            padding: 14px 32px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary,
        .button,
        .btn-gold {
            background: var(--gold-primary) !important;
            border: 1px solid var(--gold-border) !important;
            color: var(--text-primary) !important;
            box-shadow: 0 2px 8px rgba(222, 208, 167, 0.3);
        }

        .btn-primary:hover,
        .button:hover,
        .btn-gold:hover {
            background: var(--gold-hover) !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(222, 208, 167, 0.4);
        }

        /* Secondary Button - Dark Outline */
        .btn-secondary,
        .btn-outline {
            background: transparent !important;
            color: var(--text-primary) !important;
            border: 1.5px solid var(--text-primary) !important;
        }

        .btn-secondary:hover,
        .btn-outline:hover {
            background: var(--text-primary) !important;
            color: #fff !important;
        }

        .btn-xs {
            padding: 8px 18px;
            font-size: 11px;
        }

        /* Flash Sale Section */
        .flash_sell_section {
            background: var(--white);
            padding: 60px 0;
        }

        .deals-countdown {
            background: linear-gradient(135deg, var(--dark), var(--charcoal));
            border-radius: 12px;
            padding: 15px 25px;
            display: inline-flex;
            gap: 15px;
        }

        .deals-countdown .countdown-section {
            text-align: center;
        }

        .deals-countdown .countdown-amount {
            background: var(--white);
            color: var(--dark);
            font-weight: 700;
            font-size: 20px;
            padding: 8px 12px;
            border-radius: 8px;
            min-width: 50px;
            display: block;
        }

        .deals-countdown .countdown-period {
            color: rgba(255, 255, 255, 0.8);
            font-size: 11px;
            text-transform: uppercase;
            margin-top: 5px;
        }

        /* Section Titles */
        .section-title {
            margin-bottom: 30px;
        }

        .section-title h3 {
            font-weight: 700;
            color: var(--dark);
            margin: 0;
        }

        .section-title .view_all_btn {
            color: var(--primary-dark);
            font-weight: 600;
            font-size: 13px;
            transition: var(--transition);
        }

        .section-title .view_all_btn:hover {
            color: var(--dark);
        }

        /* Slider Arrows - Gold Accent */
        .slider-arrow .slider-btn {
            background: var(--white);
            border: 1px solid var(--border-light);
            color: var(--text-secondary);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            transition: var(--transition);
            box-shadow: var(--shadow-soft);
        }

        .slider-arrow .slider-btn:hover {
            background: var(--gold-primary);
            border-color: var(--gold-primary);
            color: var(--text-primary);
            box-shadow: 0 4px 12px rgba(225, 191, 124, 0.3);
        }

        /* Four Column Products */
        .product-list-small article {
            padding: 15px;
            border-radius: 12px;
            transition: var(--transition);
            margin-bottom: 10px;
            border: 1px solid transparent;
        }

        .product-list-small article:hover {
            background: var(--gray-light);
            border-color: var(--border);
        }

        /* Footer - Clean Light Style */
        footer {
            background: #f8f8f8;
            color: var(--text-secondary);
        }

        footer h4,
        footer h5,
        footer h6 {
            font-family: var(--font-primary);
            color: var(--text-primary);
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        footer a {
            color: var(--text-secondary);
            font-size: 14px;
            transition: var(--transition);
        }

        footer a:hover {
            color: var(--gold-text-hover);
            padding-left: 5px;
        }

        /* Newsletter in Footer */
        footer .newsletter-input,
        footer input[type="email"] {
            border-radius: 6px 0 0 6px;
            border: 1px solid var(--border);
        }

        footer .newsletter-btn,
        footer button[type="submit"] {
            background: var(--gold-primary);
            color: var(--text-primary);
            border-radius: 0 6px 6px 0;
            border: 1px solid var(--gold-border);
        }

        /* Search Box - Clean Modern Design */
        .search-style-2 {
            position: relative;
            border: 2px solid #e0e0e0 !important;
            border-radius: 50px !important;
            transition: all 0.3s ease;
            background: #ffffff !important;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            max-width: 700px;
        }

        .search-style-2:hover,
        .search-style-2:focus-within {
            border-color: var(--gold-primary) !important;
            box-shadow: 0 4px 20px rgba(225, 191, 124, 0.2);
        }

        .search-style-2 form {
            background: transparent !important;
            border: none !important;
            border-radius: 48px !important;
            overflow: hidden;
            display: flex !important;
            align-items: center !important;
            height: 50px !important;
            padding: 0 !important;
        }

        .search-style-2 form input {
            border: none !important;
            border-radius: 0 !important;
            background: transparent !important;
            background-image: none !important;
            background-color: transparent !important;
            font-size: 14px !important;
            padding: 12px 20px !important;
            flex: 1 !important;
            min-width: 200px;
            color: #333 !important;
            height: auto !important;
            box-shadow: none !important;
            outline: none !important;
        }

        .search-style-2 form input::placeholder {
            color: #9ca3af;
            font-weight: 400;
        }

        .search-style-2 form input:focus {
            border: none !important;
            box-shadow: none !important;
            outline: none !important;
            background: transparent !important;
            background-image: none !important;
        }

        .search-style-2 form select {
            border: none !important;
            border-right: 1px solid #e5e5e5 !important;
            border-radius: 0 !important;
            background: #f9f9f9 !important;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
            background-repeat: no-repeat !important;
            background-position: right 12px center !important;
            padding: 12px 35px 12px 20px !important;
            color: #333 !important;
            font-weight: 600 !important;
            font-size: 13px !important;
            min-width: 150px;
            cursor: pointer;
            appearance: none !important;
            -webkit-appearance: none !important;
            -moz-appearance: none !important;
            height: 100% !important;
        }

        .search-style-2 form select:focus {
            box-shadow: none !important;
            outline: none !important;
        }

        .search-style-2 form select option {
            padding: 10px;
            background: #fff;
            color: #333;
        }

        .search-style-2 form button {
            background: var(--gold-primary) !important;
            border: 1px solid var(--gold-border) !important;
            border-radius: 50% !important;
            width: 42px !important;
            height: 42px !important;
            min-width: 42px !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-right: 4px !important;
            padding: 0 !important;
            flex-shrink: 0;
        }

        .search-style-2 form button:hover {
            background: var(--gold-hover) !important;
            transform: scale(1.05);
        }

        .search-style-2 form button i {
            font-size: 14px !important;
            color: var(--text-primary) !important;
        }

        /* Autocomplete Search Dropdown - Clean Two Column Layout */
        .search-autocomplete {
            position: absolute;
            top: calc(100% + 8px);
            left: -50px;
            width: 650px;
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 10px 50px rgba(0, 0, 0, 0.15);
            z-index: 9999;
            display: none;
            border: 1px solid #e5e5e5;
        }

        .search-autocomplete.active {
            display: block;
            animation: fadeIn 0.2s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-5px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .search-loading {
            padding: 40px;
            text-align: center;
            color: #999;
            display: none;
        }

        .search-loading.active {
            display: block;
        }

        /* Two Column Layout */
        .search-results-wrapper {
            display: flex;
            min-height: 300px;
        }

        /* Left Column - Suggestions */
        .search-left-column {
            width: 240px;
            border-right: 1px solid #f0f0f0;
            padding: 20px 0;
        }

        .search-section-title {
            font-size: 12px;
            font-weight: 600;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 0 20px 12px;
        }

        .search-suggestion-item {
            display: block;
            padding: 12px 20px;
            color: #333;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.15s ease;
            cursor: pointer;
        }

        .search-suggestion-item:hover {
            background: #f8f8f8;
            color: #000;
        }

        .search-suggestion-item strong {
            font-weight: 700;
            color: #000;
        }

        /* Right Column - Products */
        .search-right-column {
            flex: 1;
            padding: 20px;
            max-height: 450px;
            overflow-y: auto;
        }

        .search-product-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 12px;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.15s ease;
            margin-bottom: 8px;
        }

        .search-product-item:hover {
            background: #f8f8f8;
        }

        .search-product-image {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
            background: #f5f5f5;
        }

        .search-product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .search-product-info {
            flex: 1;
            min-width: 0;
        }

        .search-product-name {
            font-size: 14px;
            font-weight: 500;
            color: #333;
            margin-bottom: 4px;
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .search-product-price {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .search-product-price .current {
            font-size: 15px;
            font-weight: 700;
            color: #000;
        }

        .search-product-price .old {
            font-size: 13px;
            color: #999;
            text-decoration: line-through;
        }

        /* Category badge on product results */
        .search-product-cat {
            display: inline-block;
            font-size: 11px;
            font-weight: 500;
            color: #6b7280;
            background: #f3f4f6;
            padding: 2px 8px;
            border-radius: 4px;
            margin-bottom: 4px;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        /* Star rating on product results */
        .search-product-rating {
            display: flex;
            align-items: center;
            gap: 4px;
            margin-bottom: 4px;
            font-size: 12px;
            color: #f59e0b;
            font-weight: 600;
        }

        .search-product-rating i {
            font-size: 11px;
        }

        .search-rating-count {
            color: #9ca3af;
            font-weight: 400;
            font-size: 11px;
        }

        /* Out of stock badge */
        .search-oos {
            font-size: 11px;
            color: #ef4444;
            font-weight: 600;
        }

        /* Search Footer */
        .search-footer {
            border-top: 1px solid #f0f0f0;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .search-footer a {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #333;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.15s ease;
        }

        .search-footer a:hover {
            color: #000;
        }

        .search-footer a i {
            font-size: 16px;
        }

        /* No Results */
        .search-no-results {
            padding: 60px 20px;
            text-align: center;
            color: #999;
        }

        .search-no-results p {
            margin: 0;
            font-size: 14px;
        }

        /* Empty State */
        .search-empty-state {
            padding: 24px 20px;
        }

        .search-empty-state p {
            color: #999;
            font-size: 14px;
            margin-bottom: 20px;
        }

        .search-popular-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .search-popular-tags a {
            padding: 8px 16px;
            background: #f5f5f5;
            border-radius: 20px;
            color: #333;
            font-size: 13px;
            text-decoration: none;
            transition: all 0.15s ease;
        }

        .search-popular-tags a:hover {
            background: var(--gold-primary);
            color: var(--text-primary);
            border: 1px solid var(--gold-border);
        }

        /* Trending search chip */
        .search-trend-chip {
            display: inline-block;
            padding: 6px 14px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 20px;
            color: #475569;
            font-size: 13px;
            text-decoration: none;
            transition: all 0.2s ease;
            font-weight: 500;
        }

        .search-trend-chip:hover {
            background: var(--gold-primary, #fef3c7);
            border-color: var(--gold-border, #fbbf24);
            color: #92400e;
        }

        /* Category grid in empty state */
        .search-cat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
            gap: 10px;
            margin-bottom: 20px;
        }

        .search-cat-card {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 12px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .search-cat-card:hover {
            border-color: var(--gold-border, #fbbf24);
            background: #fffbeb;
            transform: translateY(-1px);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        }

        .search-cat-img {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
            background: #f1f5f9;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #94a3b8;
            font-size: 16px;
        }

        .search-cat-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .search-cat-info {
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

        .search-cat-name {
            font-size: 13px;
            font-weight: 600;
            color: #1e293b;
            line-height: 1.2;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .search-cat-count {
            font-size: 11px;
            color: #94a3b8;
            font-weight: 400;
        }

        /* Products grid in empty state (popular products) */
        .search-products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
        }

        .search-product-card {
            display: flex;
            flex-direction: column;
            text-decoration: none;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid #f1f5f9;
            transition: all 0.2s ease;
        }

        .search-product-card:hover {
            border-color: #e2e8f0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            transform: translateY(-2px);
        }

        .search-product-card-img {
            width: 100%;
            aspect-ratio: 1;
            overflow: hidden;
            background: #f8fafc;
        }

        .search-product-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .search-product-card-info {
            padding: 8px 10px;
        }

        .search-product-card-name {
            display: block;
            font-size: 12px;
            font-weight: 500;
            color: #374151;
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 4px;
        }

        .search-product-card-price {
            display: block;
            font-size: 13px;
            font-weight: 700;
            color: #111827;
        }

        @media (max-width: 768px) {
            .search-autocomplete {
                left: 0;
                right: 0;
                width: auto;
            }

            .search-results-wrapper {
                flex-direction: column;
            }

            .search-left-column {
                width: 100%;
                border-right: none;
                border-bottom: 1px solid #f0f0f0;
            }

            .search-cat-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .search-products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Global Pagination */
        .gletr-pagination {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            margin: 40px 0;
        }

        .gletr-pagination-info {
            font-size: 13px;
            color: #6b7280;
            font-weight: 400;
        }

        .gletr-pagination-list {
            display: flex;
            align-items: center;
            gap: 6px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .gletr-page-link {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
            padding: 0 4px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 500;
            color: #374151;
            background: #fff;
            border: 1px solid #e5e7eb;
            text-decoration: none;
            transition: all 0.2s ease;
            cursor: pointer;
        }

        .gletr-page-link:hover {
            background: #f9fafb;
            border-color: #d1d5db;
            color: #111827;
        }

        .gletr-page-item.active .gletr-page-link {
            background: #1a1a1a;
            border-color: #1a1a1a;
            color: #fff;
            font-weight: 600;
        }

        .gletr-page-item.disabled .gletr-page-link {
            color: #d1d5db;
            background: #f9fafb;
            border-color: #f3f4f6;
            cursor: not-allowed;
            pointer-events: none;
        }

        .gletr-page-nav {
            min-width: 40px;
        }

        .gletr-page-nav i {
            font-size: 12px;
        }

        .gletr-page-dots {
            border: none;
            background: transparent;
            color: #9ca3af;
            min-width: 32px;
            cursor: default;
        }

        .gletr-page-dots:hover {
            background: transparent;
            border: none;
        }

        @media (max-width: 640px) {
            .gletr-pagination {
                margin-top: 28px;
            }

            .gletr-page-link {
                min-width: 36px;
                height: 36px;
                font-size: 13px;
                border-radius: 8px;
            }

            .gletr-pagination-list {
                gap: 4px;
            }
        }

        /* Hotline */
        .hotline p {
            color: var(--dark) !important;
            font-weight: 600;
        }

        .hotline p span {
            color: var(--gray) !important;
            font-weight: 400;
        }

        /* Wishlist & Cart - Gold Badge */
        .pro-count {
            background: var(--gold-primary) !important;
            color: var(--text-primary) !important;
            font-weight: 600;
            border: 1px solid var(--gold-border);
        }

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

        ::-webkit-scrollbar-track {
            background: var(--bg-light);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--border-medium);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--text-muted);
        }

        /* Responsive */
        @media (max-width: 991px) {
            .hero-slider-1 .single-hero-slider {
                min-height: 350px;
            }

            .hero-slider-1 .slider-content {
                padding: 40px 25px;
            }
        }

        @media (max-width: 767px) {
            .hero-slider-1 .single-hero-slider {
                min-height: 280px;
            }

            .section-title h3 {
                font-size: 18px;
            }
        }
        .animate-pulse {
            animation: pulse 1.5s infinite;
        }
        
        @keyframes pulse {
            0% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.2); }
            100% { opacity: 1; transform: scale(1); }
        }
