﻿/* ═══════════════════════════════════════════════════════════════════
   LOTUS AI STORE - MAIN CSS
   Part 1: Variables, Reset, Base & Header Styles
   ═══════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────
   1. CSS VARIABLES
   ───────────────────────────────────────────────────────────────── */
@font-face {
    font-family: 'Lalezar-Regular';
    src: url('../fonts/Lalezar-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'SHABNAM';
    src: url('../fonts/SHABNAM.TTF') format('truetype');
}

:root {
    /* Primary Colors */
    --primary-50: #f5f3ff;
    --primary-100: #ede9fe;
    --primary-200: #ddd6fe;
    --primary-300: #c4b5fd;
    --primary-400: #a78bfa;
    --primary-500: #a855f7;
    --primary-600: #9333ea;
    --primary-700: #7c3aed;
    --primary-800: #6b21a8;
    --primary-900: #581c87;
    /* Secondary Colors */
    --secondary-50: #eff6ff;
    --secondary-100: #dbeafe;
    --secondary-200: #bfdbfe;
    --secondary-300: #93c5fd;
    --secondary-400: #60a5fa;
    --secondary-500: #3b82f6;
    --secondary-600: #2563eb;
    --secondary-700: #1d4ed8;
    /* Accent Colors */
    --accent-cyan: #06b6d4;
    --accent-emerald: #10b981;
    --accent-amber: #f59e0b;
    --accent-rose: #f43f5e;
    /* Background Colors */
    --bg-dark: #0f0f1a;
    --bg-darker: #080810;
    --bg-card: #151521;
    --bg-card-hover: #1a1a2e;
    --bg-gradient: linear-gradient(135deg, var(--primary-900) 0%, var(--bg-dark) 50%, var(--secondary-900) 100%);
    /* Text Colors */
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    /* Border Colors */
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(168, 85, 247, 0.3);
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-500), var(--secondary-500));
    --gradient-accent: linear-gradient(135deg, var(--primary-400), var(--accent-cyan));
    --gradient-glow: linear-gradient(135deg, var(--primary-500), var(--secondary-500), var(--accent-cyan));
    --gradient-card: linear-gradient(145deg, rgba(168, 85, 247, 0.1), rgba(59, 130, 246, 0.1));
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(168, 85, 247, 0.3);
    --shadow-glow-strong: 0 0 60px rgba(168, 85, 247, 0.5);
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    /* Z-Index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-overlay: 500;
    /* Header Heights */
    --header-topbar-height: 40px;
    --header-navbar-height: 70px;
    --header-total-height:0px;
    --neon-primary: #9d00ff;
    --neon-glow: rgba(157, 0, 255, 0.6);
    --dark-bg: #121212; /* رنگ پس‌زمینه کارت */
    --dark-card: #1e1e1e;
}

/* ─────────────────────────────────────────────────────────────────
   2. RESET & BASE STYLES
   ───────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'SHABNAM', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-dark);
    overflow-x: hidden;
    direction: rtl;
}

/* Selection */
::selection {
    background: var(--primary-500);
    color: white;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-500);
    border-radius: var(--radius-full);
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--primary-400);
    }

/* Links */
a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

    a:hover {
        color: var(--primary-400);
    }

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Lists */
ul, ol {
    list-style: none;
}

/* Buttons */
button {
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

/* Inputs */
input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ─────────────────────────────────────────────────────────────────
   3. TYPOGRAPHY
   ───────────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

strong, b {
    font-weight: 600;
    color: var(--text-primary);
}

/* Text Utilities */
.text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-primary {
    color: var(--primary-400) !important;
}

.text-secondary {
    color: var(--secondary-400) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

/* ─────────────────────────────────────────────────────────────────
   4. LAYOUT UTILITIES
   ───────────────────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 476px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

.section {
    padding: 80px 0;
    position: relative;
}

@media (min-width: 992px) {
    .section {
        padding: 100px 0;
    }
}

.min-vh-75 {
    min-height: 75vh;
}

/* ─────────────────────────────────────────────────────────────────
   5. BUTTONS
   ───────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

    .btn:hover {
        transform: translateY(-2px);
    }

    .btn:active {
        transform: translateY(0);
    }

/* Login Button */
.btn-login {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

    .btn-login:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: var(--primary-400);
        color: var(--primary-400);
    }

/* Register Button */
.btn-register {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

    .btn-register:hover {
        box-shadow: 0 6px 25px rgba(168, 85, 247, 0.4);
        color: white;
    }

/* Hero Primary Button */
.btn-hero-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
}

    .btn-hero-primary .btn-content {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .btn-hero-primary .btn-glow {
        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;
    }

    .btn-hero-primary:hover .btn-glow {
        left: 100%;
    }

    .btn-hero-primary:hover {
        box-shadow: var(--shadow-glow);
        transform: translateY(-3px);
    }

    .btn-hero-primary .btn-icon {
        font-size: 1.1rem;
    }

/* Hero Secondary Button */
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

    .btn-hero-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--primary-400);
        color: var(--primary-400);
    }

/* ─────────────────────────────────────────────────────────────────
   6. HEADER STYLES
   ───────────────────────────────────────────────────────────────── */
.lotus-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    background: rgba(15, 15, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all var(--transition-normal);
}

    .lotus-header.scrolled {
        background: rgba(15, 15, 26, 0.95);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }

/* Top Bar */
.header-topbar {
    background: rgba(8, 8, 16, 0.5);
    border-bottom: 1px solid var(--border-color);
    padding: 0.5rem 0;
    font-size: 0.85rem;
}

.topbar-info,
.topbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

    .topbar-item:hover {
        color: var(--primary-400);
    }

.topbar-divider {
    color: var(--border-color);
}

.topbar-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

    .topbar-social:hover {
        background: var(--primary-500);
        color: white;
        transform: translateY(-2px);
    }

.support-btn {
    background: var(--gradient-primary);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    color: white !important;
    font-weight: 500;
}

    .support-btn:hover {
        box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
    }

/* ─────────────────────────────────────────────────────────────────
   7. NAVBAR STYLES
   ───────────────────────────────────────────────────────────────── */
.header-navbar {
    padding: 0.75rem 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.logo-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
}

.logo-icon-inner {
    width: 100%;
    height: 100%;
    background-color: #1f1730;
    border-radius: 50%;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

    .logo-icon-inner img {
        max-height: 36px;
    }

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.35rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ─────────────────────────────────────────────────────────────────
   8. NAV MENU
   ───────────────────────────────────────────────────────────────── */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

    .nav-link i {
        font-size: 0.9rem;
        color: var(--primary-400);
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--text-primary);
        background: rgba(168, 85, 247, 0.1);
    }

    .nav-link.active {
        color: var(--primary-400);
    }

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: calc(100% ); /* فاصله از لینک */
    right: 0;
    min-width: 240px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 0.75rem;
    box-shadow: var(--shadow-lg);
    /* ریست کردن استایل‌ها */
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.95);
    transform-origin: top right;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    z-index: var(--z-dropdown);
    pointer-events: none; /* مهم! */
}

/* Show on Hover - فقط parent رو hover کن */
.nav-item.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto; /* مهم! */
}

/* همچنین وقتی خود منو hover شد باز بمونه */
.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* ─────────────────────────────────────────────────────────────────
   NAV LINK ICONS
   ───────────────────────────────────────────────────────────────── */
.nav-item.dropdown > .nav-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-item.dropdown .nav-link i:last-child {
    font-size: 0.65rem;
    color: var(--text-muted);
    transition: transform 0.2s ease;
    margin-right: 0.25rem;
}

.nav-item.dropdown:hover > .nav-link i:last-child {
    transform: rotate(180deg);
}

/* ─────────────────────────────────────────────────────────────────
   DROPDOWN ITEMS
   ───────────────────────────────────────────────────────────────── */
.dropdown-menu li {
    margin-bottom: 0.25rem;
}

    .dropdown-menu li:last-child {
        margin-bottom: 0;
    }

    .dropdown-menu li a {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.7rem 1rem;
        color: var(--text-secondary);
        font-size: 0.9rem;
        font-weight: 500;
        border-radius: var(--radius-md);
        transition: all var(--transition-fast);
        position: relative;
        overflow: hidden;
    }

        .dropdown-menu li a::before {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--gradient-primary);
            transform: scaleY(0);
            transition: transform var(--transition-fast);
        }

        .dropdown-menu li a:hover::before {
            transform: scaleY(1);
        }

        .dropdown-menu li a i {
            color: var(--primary-400);
            font-size: 0.95rem;
            width: 18px;
            text-align: center;
        }

        .dropdown-menu li a:hover {
            background: rgba(168, 85, 247, 0.12);
            color: var(--text-primary);
            padding-right: 1.25rem;
        }

.dropdown-divider {
    height: 1px;
    background: linear-gradient( 90deg, transparent 0%, var(--border-color) 20%, var(--border-color) 80%, transparent 100% );
    margin: 0.75rem 0;
}

/* ─────────────────────────────────────────────────────────────────
   ACTIVE STATE
   ───────────────────────────────────────────────────────────────── */
.dropdown-menu li a.active {
    background: rgba(168, 85, 247, 0.15);
    color: var(--primary-400);
}

    .dropdown-menu li a.active::after {
        content: '';
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        width: 6px;
        height: 6px;
        background: var(--primary-500);
        border-radius: 50%;
    }
/* Force show با useSelector بالاترین اولویت */
.nav-item.dropdown:hover > .dropdown-menu,
.dropdown-menu.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
    pointer-events: auto !important;
    display: block !important;
}
/* ─────────────────────────────────────────────────────────────────
   9. NAV ACTIONS
   ───────────────────────────────────────────────────────────────── */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-action-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

    .nav-action-btn:hover {
        background: rgba(168, 85, 247, 0.1);
        border-color: var(--primary-400);
        color: var(--primary-400);
        transform: translateY(-2px);
    }

.action-badge {
    position: absolute;
    top: -5px;
    left: -5px;
    min-width: 18px;
    height: 18px;
    background: var(--accent-rose);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 0.5rem;
    padding-right: 0.75rem;
    border-right: 1px solid var(--border-color);
}

    .auth-buttons .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

/* ─────────────────────────────────────────────────────────────────
   10. MOBILE CONTROLS
   ───────────────────────────────────────────────────────────────── */
.mobile-controls {
    display: none !important;
}

.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

    .mobile-toggle span {
        display: block;
        width: 20px;
        height: 2px;
        background: var(--text-primary);
        border-radius: var(--radius-full);
        transition: all var(--transition-normal);
    }

    .mobile-toggle:hover {
        background: rgba(168, 85, 247, 0.1);
        border-color: var(--primary-400);
    }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background: var(--bg-darker);
    z-index: var(--z-modal);
    transition: right var(--transition-normal);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

    .mobile-menu.active {
        right: 0;
    }

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: calc(var(--z-modal) - 1);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: all var(--transition-fast);
}

    .mobile-menu-close:hover {
        background: rgba(239, 68, 68, 0.1);
        color: var(--accent-rose);
    }

.mobile-nav-menu {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
}

    .mobile-nav-menu > li > a {
        display: flex;
        align-items: center;
        padding: 0.85rem 1.5rem;
        color: var(--text-secondary);
        font-size: 0.95rem;
        font-weight: 500;
        transition: all var(--transition-fast);
    }

        .mobile-nav-menu > li > a:hover,
        .mobile-nav-menu > li > a.active {
            background: rgba(168, 85, 247, 0.1);
            color: var(--primary-400);
        }

        .mobile-nav-menu > li > a i:first-child {
            color: var(--primary-400);
            width: 20px;
        }

.mobile-submenu {
    display: none;
    background: rgba(0, 0, 0, 0.2);
}

    .mobile-submenu.show {
        display: block;
    }

    .mobile-submenu a {
        display: flex;
        align-items: center;
        padding: 0.7rem 1.5rem 0.7rem 3rem;
        color: var(--text-muted);
        font-size: 0.9rem;
    }

        .mobile-submenu a:hover {
            color: var(--primary-400);
        }

.mobile-menu-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

/* Mobile Menu Toggle Animation */
.mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
/* ═══════════════════════════════════════════════════════════════════
   LOTUS AI STORE - MAIN CSS
   Part 2: Hero Section Styles
   ═══════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────
   11. HERO SECTION
   ───────────────────────────────────────────────────────────────── */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-total-height) + 40px) 0 60px;
    overflow: hidden;
}

.hero-container {
    position: relative;
    z-index: 2;
}

/* ─────────────────────────────────────────────────────────────────
   12. HERO BACKGROUND
   ───────────────────────────────────────────────────────────────── */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

/* Grid Pattern */
.bg-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(168, 85, 247, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(168, 85, 247, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary-600);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary-600);
    bottom: -150px;
    left: -100px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--accent-cyan);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
    opacity: 0.2;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -30px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(20px, 10px) scale(1.02);
    }
}

/* Noise Texture */
.bg-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

/* Particles */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-400);
    border-radius: 50%;
    opacity: 0;
    animation: particle-rise 10s ease-in-out infinite;
}

    .particle:nth-child(1) {
        left: 10%;
        animation-delay: 0s;
    }

    .particle:nth-child(2) {
        left: 20%;
        animation-delay: -1s;
    }

    .particle:nth-child(3) {
        left: 30%;
        animation-delay: -2s;
    }

    .particle:nth-child(4) {
        left: 45%;
        animation-delay: -3s;
    }

    .particle:nth-child(5) {
        left: 55%;
        animation-delay: -4s;
    }

    .particle:nth-child(6) {
        left: 65%;
        animation-delay: -5s;
    }

    .particle:nth-child(7) {
        left: 75%;
        animation-delay: -6s;
    }

    .particle:nth-child(8) {
        left: 85%;
        animation-delay: -7s;
    }

    .particle:nth-child(9) {
        left: 92%;
        animation-delay: -8s;
    }

    .particle:nth-child(10) {
        left: 5%;
        animation-delay: -9s;
    }

    .particle:nth-child(11) {
        left: 40%;
        animation-delay: -2.5s;
    }

    .particle:nth-child(12) {
        left: 80%;
        animation-delay: -6.5s;
    }

@keyframes particle-rise {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* ─────────────────────────────────────────────────────────────────
   13. HERO CONTENT
   ───────────────────────────────────────────────────────────────── */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem 0.5rem 1.25rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease forwards;
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    color: white;
    font-size: 0.9rem;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-300);
}

.badge-pulse {
    position: absolute;
    top: 50%;
    right: -18px;
    width: 50px;
    height: 50px;
    background: var(--primary-500);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-ring 2s ease-out infinite;
    z-index: -1;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Hero Title */
.hero-title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

.title-line {
    display: block;
}

.title-word {
    display: inline-block;
}

.hero-title .title-line:nth-child(2) .title-word:last-child,
.hero-title .title-line:nth-child(4) .title-word:last-child {
    margin-right: 0.5rem;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.subtitle-line {
    display: block;
}

.hero-subtitle strong {
    color: var(--primary-400);
}

/* ─────────────────────────────────────────────────────────────────
   14. HERO STATS
   ───────────────────────────────────────────────────────────────── */
/* ─────────────────────────────────────────────────────────────────
   HERO STATS - REDESIGNED
   ───────────────────────────────────────────────────────────────── */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (max-width: 575.98px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

/* Stat Card */
.stat-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 1.25rem;
    overflow: hidden;
    transition: all var(--transition-normal);
}

    .stat-card:hover {
        transform: translateY(-5px);
        border-color: rgba(168, 85, 247, 0.3);
        box-shadow: 0 10px 40px rgba(168, 85, 247, 0.15);
    }

/* Glow Effect */
.stat-glow {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.4) 0%, transparent 70%);
    filter: blur(20px);
    pointer-events: none;
}

.stat-glow-green {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.4) 0%, transparent 70%);
}

.stat-glow-amber {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.4) 0%, transparent 70%);
}

/* Stat Inner */
.stat-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

/* Stat Icon */
.stat-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.35);
}

    .stat-icon i {
        font-size: 1.35rem;
        color: white;
    }

.stat-icon-green {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
}

.stat-icon-amber {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.35);
}

/* Stat Body */
.stat-body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.stat-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.35rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #fff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-unit {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
}

/* Progress Bar */
.stat-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
}

.stat-bar-fill {
    height: 100%;
    width: var(--fill-width, 0%);
    background: var(--gradient-primary);
    border-radius: 0 var(--radius-full) var(--radius-full) 0;
    position: relative;
    animation: barGrow 1.5s ease forwards;
    animation-delay: 0.5s;
    transform-origin: right;
}

    .stat-bar-fill::after {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 8px;
        height: 8px;
        background: inherit;
        border-radius: 50%;
        box-shadow: 0 0 10px currentColor;
    }

.stat-bar-fill-green {
    background: linear-gradient(90deg, #10b981, #059669);
}

.stat-bar-fill-amber {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

@keyframes barGrow {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

/* ─────────────────────────────────────────────────────────────────
   MOBILE ADJUSTMENTS
   ───────────────────────────────────────────────────────────────── */
@media (max-width: 575.98px) {
    .stat-card {
        padding: 1rem;
    }

    .stat-inner {
        gap: 0.85rem;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
    }

        .stat-icon i {
            font-size: 1.2rem;
        }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-unit {
        font-size: 0.85rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}
/* ─────────────────────────────────────────────────────────────────
   15. HERO CTA
   ───────────────────────────────────────────────────────────────── */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

/* ─────────────────────────────────────────────────────────────────
   16. TRUST SECTION
   ───────────────────────────────────────────────────────────────── */
.trust-section {
    animation: fadeInUp 0.8s ease 0.5s forwards;
    opacity: 0;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-icon {
    width: 24px;
    height: 24px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .trust-icon i {
        font-size: 0.75rem;
        color: var(--accent-emerald);
    }

.trust-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ─────────────────────────────────────────────────────────────────
   17. HERO VISUAL
   ───────────────────────────────────────────────────────────────── */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 500px;
    animation: fadeInRight 1s ease 0.3s forwards;
    opacity: 0;
}

/* AI Centerpiece */
.ai-centerpiece {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
}

/* AI Core */
.ai-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    z-index: 10;
}

.ai-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid var(--primary-500);
    opacity: 0.3;
    animation: ring-pulse 3s ease-in-out infinite;
}

.ai-ring-1 {
    width: 140px;
    height: 140px;
    animation-delay: 0s;
}

.ai-ring-2 {
    width: 180px;
    height: 180px;
    border-color: var(--secondary-500);
    animation-delay: -1s;
}

.ai-ring-3 {
    width: 220px;
    height: 220px;
    border-color: var(--accent-cyan);
    animation-delay: -2s;
}

@keyframes ring-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.6;
    }
}

.ai-icon-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow-strong);
    z-index: 5;
}

.ai-icon {
    font-size: 2rem;
    color: white;
}

.ai-particles {
    position: absolute;
    inset: -20px;
}

.ai-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-400);
    border-radius: 50%;
    animation: orbit 8s linear infinite;
}

    .ai-particle:nth-child(1) {
        animation-delay: 0s;
    }

    .ai-particle:nth-child(2) {
        animation-delay: -1.3s;
    }

    .ai-particle:nth-child(3) {
        animation-delay: -2.6s;
    }

    .ai-particle:nth-child(4) {
        animation-delay: -4s;
    }

    .ai-particle:nth-child(5) {
        animation-delay: -5.3s;
    }

    .ai-particle:nth-child(6) {
        animation-delay: -6.6s;
    }

@keyframes orbit {
    0% {
        transform: rotate(0deg) translateX(130px) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: rotate(360deg) translateX(130px) rotate(-360deg);
        opacity: 0;
    }
}

/* ─────────────────────────────────────────────────────────────────
   18. ORBIT CARDS
   ───────────────────────────────────────────────────────────────── */
.orbit-card {
    position: absolute;
    width: 200px;
    z-index: 15;
}

.orbit-card-1 {
    top: 5%;
    animation: float-card 6s ease-in-out infinite;
}

.orbit-card-2 {
    top: 30%;
    left: -15px;
    animation: float-card 6s ease-in-out -2s infinite;
}

.orbit-card-3 {
    bottom: 5%;
    right: 5%;
    animation: float-card 6s ease-in-out -4s infinite;
}

@keyframes float-card {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.oc-inner {
    background: rgba(21, 21, 33, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

    .oc-inner:hover {
        border-color: var(--primary-400);
        transform: scale(1.02);
    }

.oc-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.oc-glow-cyan {
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
}

.oc-glow-amber {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
}

.oc-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.oc-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.oc-icon-ai {
    background: var(--gradient-primary);
}

.oc-icon-phone {
    background: linear-gradient(135deg, var(--accent-cyan), #0891b2);
}

.oc-icon-claude {
    background: linear-gradient(135deg, var(--accent-amber), #d97706);
}

.oc-icon i {
    font-size: 0.9rem;
    color: white;
}

.oc-info {
    flex: 1;
    min-width: 0;
}

.oc-title {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.oc-subtitle {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.oc-badge {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0.15rem 0.5rem;
    background: var(--accent-rose);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
}

.oc-badge-new {
    background: var(--accent-emerald);
}

.oc-features {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
}

.oc-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

    .oc-feature i {
        color: var(--accent-emerald);
        font-size: 0.65rem;
    }

.oc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}

.oc-price {
    display: flex;
    flex-direction: column;
}

.oc-price-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.oc-price-unit {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.oc-add-btn {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}

    .oc-add-btn:hover {
        transform: scale(1.1);
        box-shadow: var(--shadow-glow);
    }

/* ─────────────────────────────────────────────────────────────────
   19. LIVE INDICATOR
   ───────────────────────────────────────────────────────────────── */
.live-indicator {
    position: absolute;
    bottom: 5%;
    left: 15%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(21, 21, 33, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    z-index: 20;
    animation: pulse-subtle 2s ease-in-out infinite;
}

@keyframes pulse-subtle {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-emerald);
    border-radius: 50%;
    animation: live-blink 1s ease-in-out infinite;
}

@keyframes live-blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.live-text {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* ─────────────────────────────────────────────────────────────────
   20. TESTIMONIAL
   ───────────────────────────────────────────────────────────────── */
.hero-testimonial {
    position: absolute;
    top: 100%;
    left: 5%;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(21, 21, 33, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    max-width: 220px;
    z-index: 20;
    animation: float-card 6s ease-in-out -1s infinite;
}

.testimonial-avatar {
    position: relative;
    flex-shrink: 0;
}

    .testimonial-avatar img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        object-fit: cover;
    }

.testimonial-badge {
    position: absolute;
    bottom: -3px;
    left: -3px;
    width: 16px;
    height: 16px;
    background: var(--secondary-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-card);
}

    .testimonial-badge i {
        font-size: 0.5rem;
        color: white;
    }

.testimonial-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 0.35rem;
}

    .testimonial-rating i {
        font-size: 0.65rem;
        color: var(--accent-amber);
    }

.testimonial-text {
    font-size: 0.75rem;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 0.35rem;
}

.testimonial-name {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* ─────────────────────────────────────────────────────────────────
   21. SCROLL INDICATOR
   ───────────────────────────────────────────────────────────────── */
.hero-scroll {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.scroll-trigger {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary-500), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-400);
    border-radius: 50%;
    animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
    0% {
        top: 0;
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

/* ─────────────────────────────────────────────────────────────────
   22. HERO WAVE
   ───────────────────────────────────────────────────────────────── */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

    .hero-wave svg {
        display: block;
        width: 100%;
        height: 80px;
    }

    .hero-wave .shape-fill {
        fill: var(--bg-darker);
    }

.hero-wave1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

    .hero-wave1 svg {
        display: block;
        width: 100%;
        height: 80px;
    }

    .hero-wave1 .shape-fill {
        fill: var(--bg-darker);
    }

/* ─────────────────────────────────────────────────────────────────
   23. ANIMATIONS
   ───────────────────────────────────────────────────────────────── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
/* ═══════════════════════════════════════════════════════════════════
   LOTUS AI STORE - MAIN CSS
   Part 3: Categories & Products Section Styles
   ═══════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────
   24. SECTION COMMON STYLES
   ───────────────────────────────────────────────────────────────── */
.section {
    padding: 80px 0;
    position: relative;
}

@media (min-width: 992px) {
    .section {
        padding: 100px 0;
    }
}

.section-gradient {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.section-darker {
    background: var(--bg-darker);
}

.section-dark {
    background: var(--bg-dark);
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-header-nummber {
    text-align: center;
    margin: 0 auto 3rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-400);
    margin-bottom: 1rem;
}

    .section-badge i {
        font-size: 0.9rem;
    }

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

    .section-title span {
        background: var(--gradient-accent);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ─────────────────────────────────────────────────────────────────
   25. CATEGORIES SECTION
   ───────────────────────────────────────────────────────────────── */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 476px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

@media (min-width: 992px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Category Card */
.category-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
    overflow: hidden;
    transition: all var(--transition-normal);
    cursor: pointer;
}

    .category-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--gradient-primary);
        transform: scaleX(0);
        transition: transform var(--transition-normal);
    }

    .category-card:hover {
        border-color: var(--primary-400);
        transform: translateY(-8px);
        box-shadow: var(--shadow-glow);
    }

        .category-card:hover::before {
            transform: scaleX(1);
        }

.category-count {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.7rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-full);
}

.category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-icon i {
    font-size: 1.5rem;
    color: white;
}

.category-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
}

.category-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-400);
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-normal);
}

.category-card:hover .category-link {
    opacity: 1;
    transform: translateY(0);
}

.category-link i {
    font-size: 0.75rem;
    transition: transform var(--transition-fast);
}

.category-link:hover i {
    transform: translateX(-3px);
}

/* ─────────────────────────────────────────────────────────────────
   26. PRODUCTS SECTION
   ───────────────────────────────────────────────────────────────── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 476px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Product Card */
.product-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-normal);
}

    .product-card:hover {
        border-color: var(--primary-400);
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

/* Product Image */
.product-image {
    position: relative;
    height: 180px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .product-image::before {
        content: '';
        position: absolute;
        inset: 0;
        background: var(--bg-card);
        opacity: 0.3;
    }

.product-image-icon {
    position: relative;
    z-index: 1;
    font-size: 4rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.8;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    z-index: 2;
}

.product-badge-sale {
    background: var(--accent-rose);
    color: white;
}

.product-badge-new {
    background: var(--accent-emerald);
    color: white;
}

.product-badge-hot {
    background: var(--accent-amber);
    color: var(--bg-dark);
}

.product-wishlist {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    z-index: 2;
    transition: all var(--transition-fast);
}

    .product-wishlist:hover {
        background: rgba(168, 85, 247, 0.3);
        color: var(--primary-400);
    }

    .product-wishlist.active {
        background: rgba(239, 68, 68, 0.2);
        color: var(--accent-rose);
    }

        .product-wishlist.active i::before {
            content: '\f004';
        }

/* Product Content */
.product-content {
    padding: 1.25rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

    .product-rating i {
        font-size: 0.75rem;
        color: var(--accent-amber);
    }

        .product-rating i:last-of-type {
            color: var(--text-muted);
        }

    .product-rating span {
        font-size: 0.75rem;
        color: var(--text-muted);
        margin-right: 0.25rem;
    }

.product-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--primary-400);
    background: rgba(168, 85, 247, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.product-feature {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
    padding: 0.3rem 0.6rem;
    border-radius: var(--radius-sm);
}

    .product-feature i {
        color: var(--accent-emerald);
        font-size: 0.65rem;
    }

/* Product Footer */
.product-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.product-price {
    display: flex;
    flex-direction: column;
}

.product-price-old {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 0.15rem;
}

.product-price-current {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
}

.product-price-unit {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

.product-btn {
    width: 42px;
    height: 42px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

    .product-btn:hover {
        transform: scale(1.1);
        box-shadow: var(--shadow-glow);
    }

/* Product Card Hover Effects */
.product-card:hover .product-image-icon {
    animation: bounce-icon 0.6s ease;
}

@keyframes bounce-icon {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

/* ─────────────────────────────────────────────────────────────────
   27. VIEW ALL PRODUCTS BUTTON
   ───────────────────────────────────────────────────────────────── */
.text-center.mt-5 .btn-hero-primary {
    padding: 0.85rem 2rem;
}

.text-center.mt-5 .btn-content {
    font-size: 0.95rem;
}

/* ─────────────────────────────────────────────────────────────────
   28. ANIMATIONS FOR CARDS
   ───────────────────────────────────────────────────────────────── */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    [data-animate].animated {
        opacity: 1;
        transform: translateY(0);
    }

/* Stagger Animation Delays */
.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

.stagger-6 {
    transition-delay: 0.6s;
}

.stagger-7 {
    transition-delay: 0.7s;
}

.stagger-8 {
    transition-delay: 0.8s;
}

/* ─────────────────────────────────────────────────────────────────
   29. FEATURES SECTION (Preview)
   ───────────────────────────────────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 476px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Feature Card */
.feature-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    text-align: center;
    transition: all var(--transition-normal);
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 3px;
        background: var(--gradient-primary);
        border-radius: 0 0 var(--radius-full) var(--radius-full);
        opacity: 0;
        transition: opacity var(--transition-normal);
    }

    .feature-card:hover {
        border-color: var(--primary-400);
        transform: translateY(-8px);
        box-shadow: var(--shadow-glow);
    }

        .feature-card:hover::before {
            opacity: 1;
        }

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
    transform: rotateY(180deg);
}

.feature-icon i {
    font-size: 1.75rem;
    color: white;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ─────────────────────────────────────────────────────────────────
   30. RESPONSIVE ADJUSTMENTS FOR HERO (Mobile)
   ───────────────────────────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .hero-section {
        padding-top: calc(var(--header-total-height) + 20px);
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .hero-stats {
        gap: 0.75rem;
    }

    .stat-card {
        min-width: calc(50% - 0.5rem);
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .trust-row {
        gap: 1rem;
    }
}

@media (max-width: 575.98px) {
    .hero-badge {
        padding: 0.4rem 0.75rem 0.4rem 1rem;
    }

    .badge-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .badge-text {
        font-size: 0.75rem;
    }

    .stat-card {
        min-width: 100%;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        text-align: right;
    }

    .stat-icon {
        margin-bottom: 0;
    }

    .stat-content {
        flex: 1;
    }

    .trust-item {
        flex: 1;
        min-width: 50%;
        justify-content: center;
    }

    /* Categories Mobile */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .category-card {
        padding: 1rem;
    }

    .category-icon {
        width: 48px;
        height: 48px;
    }

        .category-icon i {
            font-size: 1.25rem;
        }

    .category-title {
        font-size: 0.9rem;
    }

    .category-desc {
        font-size: 0.7rem;
        margin-bottom: 0;
    }

    .category-link {
        display: none;
    }

    /* Products Mobile */
    .products-grid {
        gap: 1rem;
    }

    .product-image {
        height: 150px;
    }

    .product-image-icon {
        font-size: 3rem;
    }

    .product-content {
        padding: 1rem;
    }

    .product-title {
        font-size: 0.95rem;
    }

    .product-price-current {
        font-size: 1.1rem;
    }
}

/* ─────────────────────────────────────────────────────────────────
   31. EXTRA UTILITIES
   ───────────────────────────────────────────────────────────────── */
.w-100 {
    width: 100%;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.me-1 {
    margin-right: 0.25rem;
}

.me-2 {
    margin-right: 0.5rem;
}

.ms-1 {
    margin-left: 0.25rem;
}

.ms-2 {
    margin-left: 0.5rem;
}

.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 1rem;
}

.gap-4 {
    gap: 1.5rem;
}

.gap-md-4 {
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .gap-md-4 {
        gap: 1.5rem;
    }
}
/* ═══════════════════════════════════════════════════════════════════
   LOTUS AI STORE - MAIN CSS
   Part 4: Footer, Modals, Advanced Animations & Scroll Effects
   ═══════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────
   32. FOOTER STYLES
   ───────────────────────────────────────────────────────────────── */
.site-footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding-top: 60px;
}

/* Footer Top */
.footer-top {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

@media (min-width: 476px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-top {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

/* Footer About */
.footer-about {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
}

    .footer-logo-icon svg {
        width: 100%;
        height: 100%;
    }

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-about p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

    .footer-social a {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-secondary);
        font-size: 1rem;
        transition: all var(--transition-fast);
    }

        .footer-social a:hover {
            background: var(--gradient-primary);
            border-color: transparent;
            color: white;
            transform: translateY(-3px);
        }

/* Footer Links */
.footer-links h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

    .footer-links h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 30px;
        height: 3px;
        background: var(--gradient-primary);
        border-radius: var(--radius-full);
    }

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

    .footer-links ul li a {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9rem;
        color: var(--text-secondary);
        transition: all var(--transition-fast);
    }

        .footer-links ul li a::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--primary-500);
            border-radius: 50%;
            opacity: 0;
            transform: scale(0);
            transition: all var(--transition-fast);
        }

        .footer-links ul li a:hover {
            color: var(--primary-400);
            padding-right: 0.5rem;
        }

            .footer-links ul li a:hover::before {
                opacity: 1;
                transform: scale(1);
            }

/* Footer Contact */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

    .footer-contact-item:last-child {
        margin-bottom: 0;
    }

    .footer-contact-item i {
        width: 36px;
        height: 36px;
        background: rgba(168, 85, 247, 0.1);
        border-radius: var(--radius-md);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-400);
        font-size: 0.9rem;
        flex-shrink: 0;
    }

    .footer-contact-item div {
        display: flex;
        flex-direction: column;
    }

    .footer-contact-item span:first-child {
        font-size: 0.75rem;
        color: var(--text-muted);
        margin-bottom: 0.15rem;
    }

    .footer-contact-item span:last-child {
        font-size: 0.9rem;
        color: var(--text-secondary);
    }

/* Footer Newsletter */
.footer-newsletter {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
}

    .footer-newsletter h4 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 0.5rem;
    }

    .footer-newsletter p {
        font-size: 0.85rem;
        color: var(--text-secondary);
        margin-bottom: 1rem;
    }

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

    .newsletter-form input {
        flex: 1;
        padding: 0.75rem 1rem;
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid var(--border-color);
        border-radius: var(--radius-md);
        color: var(--text-primary);
        font-size: 0.9rem;
        transition: border-color var(--transition-fast);
    }

        .newsletter-form input::placeholder {
            color: var(--text-muted);
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: var(--primary-400);
        }

    .newsletter-form button {
        padding: 0.75rem 1.25rem;
        background: var(--gradient-primary);
        border-radius: var(--radius-md);
        color: white;
        font-size: 0.9rem;
        font-weight: 500;
        white-space: nowrap;
        transition: all var(--transition-fast);
    }

        .newsletter-form button:hover {
            box-shadow: var(--shadow-glow);
            transform: translateY(-2px);
        }

/* Footer Bottom */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: right;
    }
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
}

    .footer-copyright a {
        color: var(--primary-400);
        font-weight: 500;
    }

.footer-payment {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .footer-payment span {
        font-size: 0.8rem;
        color: var(--text-muted);
    }

.payment-icons {
    display: flex;
    gap: 0.5rem;
}

    .payment-icons i {
        width: 32px;
        height: 32px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-muted);
        font-size: 1rem;
    }

/* ─────────────────────────────────────────────────────────────────
   33. MODAL STYLES
   ───────────────────────────────────────────────────────────────── */
.modal-backdrop {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .modal-title i {
        color: var(--primary-400);
    }

.btn-close {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
    opacity: 1;
    transition: all var(--transition-fast);
}

    .btn-close:hover {
        background: rgba(239, 68, 68, 0.1);
        color: var(--accent-rose);
    }

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-color);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

    .form-control::placeholder {
        color: var(--text-muted);
    }

    .form-control:focus {
        outline: none;
        border-color: var(--primary-400);
        box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
    }

    .form-control.is-invalid {
        border-color: var(--accent-rose);
    }

.invalid-feedback {
    display: none;
    font-size: 0.8rem;
    color: var(--accent-rose);
    margin-top: 0.35rem;
}

.form-control.is-invalid + .invalid-feedback {
    display: block;
}

/* Input with Icon */
.input-icon-wrapper {
    position: relative;
}

    .input-icon-wrapper .form-control {
        padding-right: 2.75rem;
    }

    .input-icon-wrapper .input-icon {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-muted);
        font-size: 1rem;
        pointer-events: none;
    }

    .input-icon-wrapper .form-control:focus + .input-icon {
        color: var(--primary-400);
    }

/* Password Toggle */
.password-toggle {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    cursor: pointer;
    transition: color var(--transition-fast);
}

    .password-toggle:hover {
        color: var(--primary-400);
    }

/* Remember Me / Forgot */
.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

    .form-check input {
        width: 18px;
        height: 18px;
        accent-color: var(--primary-500);
        cursor: pointer;
    }

.form-check-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.forgot-link {
    font-size: 0.85rem;
    color: var(--primary-400);
    transition: color var(--transition-fast);
}

    .forgot-link:hover {
        color: var(--primary-300);
        text-decoration: underline;
    }

/* Form Submit Button */
.btn-submit {
    width: 100%;
    padding: 0.85rem;
    background: var(--gradient-primary);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
}

    .btn-submit:hover {
        box-shadow: var(--shadow-glow);
        transform: translateY(-2px);
    }

/* Divider */
.form-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

    .form-divider::before,
    .form-divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--border-color);
    }

    .form-divider span {
        font-size: 0.8rem;
        color: var(--text-muted);
    }

/* Social Login */
.social-login {
    display: flex;
    gap: 0.75rem;
}

.social-login-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

    .social-login-btn:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: var(--text-muted);
    }

    .social-login-btn.google:hover {
        border-color: #ea4335;
        color: #ea4335;
    }

    .social-login-btn.github:hover {
        border-color: #fff;
        color: #fff;
    }

/* Modal Footer */
.modal-auth-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    margin-top: 1rem;
}

    .modal-auth-footer p {
        font-size: 0.9rem;
        color: var(--text-secondary);
        margin-bottom: 0;
    }

    .modal-auth-footer a {
        color: var(--primary-400);
        font-weight: 500;
        transition: color var(--transition-fast);
    }

        .modal-auth-footer a:hover {
            color: var(--primary-300);
        }

/* ─────────────────────────────────────────────────────────────────
   34. ADVANCED ANIMATIONS
   ───────────────────────────────────────────────────────────────── */

/* Fade In Up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In Down */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In Right */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Fade In Left */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scale In */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Rotate In */
@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg) scale(0.5);
    }

    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

/* Bounce */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

/* Shake */
@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }

    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }

    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

/* Pulse Glow */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(168, 85, 247, 0.6);
    }
}

/* Text Reveal */
@keyframes textReveal {
    from {
        clip-path: inset(0 100% 0 0);
    }

    to {
        clip-path: inset(0 0 0 0);
    }
}

/* Slide In Stagger */
@keyframes slideInStagger {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Glow Pulse Border */
@keyframes glowPulseBorder {
    0%, 100% {
        border-color: rgba(168, 85, 247, 0.3);
    }

    50% {
        border-color: rgba(168, 85, 247, 0.8);
    }
}

/* ─────────────────────────────────────────────────────────────────
   35. SCROLL ANIMATIONS
   ───────────────────────────────────────────────────────────────── */

/* Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .scroll-reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }

/* Scroll Reveal Left */
.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .scroll-reveal-left.revealed {
        opacity: 1;
        transform: translateX(0);
    }

/* Scroll Reveal Right */
.scroll-reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .scroll-reveal-right.revealed {
        opacity: 1;
        transform: translateX(0);
    }

/* Scroll Reveal Scale */
.scroll-reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .scroll-reveal-scale.revealed {
        opacity: 1;
        transform: scale(1);
    }

/* ─────────────────────────────────────────────────────────────────
   36. LOADING STATES
   ───────────────────────────────────────────────────────────────── */

/* Loading Spinner */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(168, 85, 247, 0.2);
    border-top-color: var(--primary-500);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient( 90deg, rgba(255, 255, 255, 0.03) 25%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.03) 75% );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: var(--radius-md);
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.skeleton-text {
    height: 1rem;
    margin-bottom: 0.5rem;
}

    .skeleton-text:last-child {
        width: 70%;
    }

.skeleton-title {
    height: 1.5rem;
    width: 60%;
    margin-bottom: 1rem;
}

.skeleton-image {
    height: 180px;
}

.skeleton-btn {
    height: 42px;
    width: 100%;
}

/* ─────────────────────────────────────────────────────────────────
   37. TOAST NOTIFICATIONS
   ───────────────────────────────────────────────────────────────── */
.toast-container {
    position: fixed;
    top: calc(var(--header-total-height) + 20px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    pointer-events: none;
}

.toast {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-lg);
    pointer-events: auto;
    animation: toastIn 0.3s ease forwards;
    min-width: 300px;
    max-width: 400px;
}

    .toast.toast-out {
        animation: toastOut 0.3s ease forwards;
    }

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes toastOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.toast-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast-success .toast-icon {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-emerald);
}

.toast-error .toast-icon {
    background: rgba(244, 63, 94, 0.1);
    color: var(--accent-rose);
}

.toast-warning .toast-icon {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-amber);
}

.toast-info .toast-icon {
    background: rgba(59, 130, 246, 0.1);
    color: var(--secondary-400);
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
}

.toast-message {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.toast-close {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

    .toast-close:hover {
        background: rgba(239, 68, 68, 0.1);
        color: var(--accent-rose);
    }

/* ─────────────────────────────────────────────────────────────────
   38. BACK TO TOP BUTTON
   ───────────────────────────────────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    z-index: 99;
    cursor: pointer;
    border: none;
}

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .back-to-top:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-glow-strong);
    }

    .back-to-top::before {
        content: '';
        position: absolute;
        inset: -3px;
        background: var(--gradient-primary);
        border-radius: inherit;
        z-index: -1;
        opacity: 0;
        transition: opacity var(--transition-normal);
    }

    .back-to-top:hover::before {
        opacity: 0.5;
        filter: blur(10px);
    }
/* ═══════════════════════════════════════════════════════════════════
   LOTUS AI STORE - MAIN CSS
   Part 5 (Final): Media Queries, Utilities, Print & Fine-tuning
   ═══════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────
   39. RESPONSIVE - LARGE DESKTOP (1400px+)
   ───────────────────────────────────────────────────────────────── */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .ai-centerpiece {
        max-width: 550px;
    }

    .orbit-card {
        width: 240px;
    }
}

/* ─────────────────────────────────────────────────────────────────
   40. RESPONSIVE - LAPTOP (992px - 1199px)
   ───────────────────────────────────────────────────────────────── */
@media (min-width: 1329px)  {
    .nav-menu {
        gap: 0;
    }

    .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .ai-centerpiece {
        max-width: 450px;
    }

    .orbit-card {
        width: 180px;
    }

    .orbit-card-1 {
        right: 0;
    }

    .orbit-card-2 {
        left: -5%;
    }

    .orbit-card-3 {
        right: 5%;
    }

    .testimonial-card {
        max-width: 200px;
    }
}

/* ─────────────────────────────────────────────────────────────────
   41. RESPONSIVE - TABLET (768px - 991px)
   ───────────────────────────────────────────────────────────────── */
@media (min-width: 768px) and (max-width: 1329.98px) {
    .header-topbar {
        font-size: 0.75rem;
    }

    .topbar-info {
        gap: 0.75rem;
    }

    .topbar-divider {
        display: none;
    }

    .nav-menu {
        display: none;
    }

    .nav-actions {
        display: none !important;
    }

    .mobile-controls {
        display: flex !important;
    }

    .hero-section {
        padding-top: calc(var(--header-total-height) + 20px);
        min-height: auto;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .stat-card {
        min-width: calc(50% - 0.5rem);
    }

    .hero-cta {
        flex-direction: column;
    }

        .hero-cta .btn {
            width: 100%;
        }

    .trust-row {
        gap: 1rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-newsletter {
        grid-column: 1;
    }

    .footer-payment {
        flex-direction: column;
        gap: 0.75rem;
    }

}

/* ─────────────────────────────────────────────────────────────────
   42. RESPONSIVE - MOBILE LARGE (476px - 767px)
   ───────────────────────────────────────────────────────────────── */
@media (min-width: 476px) and (max-width: 767.98px) {
    .header-topbar {
        font-size: 0.75rem;
    }

    .topbar-info {
        gap: 0.75rem;
    }

    .topbar-divider {
        display: none;
    }

    .nav-menu {
        display: none;
    }

    .nav-actions {
        display: none !important;
    }

    .mobile-controls {
        display: flex !important;
    }

    .hero-section {
        padding-top: calc(var(--header-total-height) + 20px);
        min-height: auto;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .stat-card {
        min-width: calc(50% - 0.5rem);
    }

    .hero-cta {
        flex-direction: column;
    }

        .hero-cta .btn {
            width: 100%;
        }

    .trust-row {
        gap: 1rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-newsletter {
        grid-column: 1;
    }

    .footer-payment {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* ─────────────────────────────────────────────────────────────────
   43. RESPONSIVE - MOBILE SMALL (up to 575px)
   ───────────────────────────────────────────────────────────────── */
@media (max-width: 575.98px) {
    /* Header */
    .header-topbar {
        padding: 0.4rem 0;
        font-size: 0.75rem;
    }

    .topbar-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }

    .topbar-divider {
        display: none;
    }

    .topbar-actions {
        gap: 0.5rem;
    }

    .topbar-social {
        width: 28px;
        height: 28px;
    }

    .support-btn {
        padding: 0.25rem 0.6rem;
        font-size: 0.7rem;
    }

    .nav-inner {
        gap: 0.5rem;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
    }

    .logo-title {
        font-size: 1.1rem;
    }

    .logo-subtitle {
        font-size: 0.6rem;
    }

    .mobile-controls .btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }

    .mobile-toggle {
        width: 38px;
        height: 38px;
    }

    /* Hero */
    .hero-section {
        padding-top: calc(var(--header-total-height) + 10px);
        min-height: auto;
        padding-bottom: 30px;
    }

    .hero-badge {
        padding: 0.35rem 0.6rem 0.35rem 0.85rem;
        margin-bottom: 1rem;
    }

    .badge-icon {
        width: 26px;
        height: 26px;
        font-size: 0.75rem;
    }

    .badge-text {
        font-size: 0.7rem;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .stat-card {
        width: 100%;
        flex-direction: row;
        align-items: center;
        padding: 0.85rem;
    }

    .stat-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 0;
    }

    .stat-content {
        flex: 1;
        text-align: right;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }

    .trust-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .trust-item {
        width: 100%;
    }

    /* Sections */
    .section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    /* Categories */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .category-card {
        padding: 1rem 0.75rem;
    }

    .category-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0.75rem;
    }

        .category-icon i {
            font-size: 1.1rem;
        }

    .category-count {
        font-size: 0.6rem;
        top: 0.5rem;
        left: 0.5rem;
    }

    .category-title {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }

    .category-desc {
        font-size: 0.7rem;
        margin-bottom: 0;
    }

    .category-link {
        display: none;
    }

    /* Products */
    .products-grid {
        gap: 1rem;
    }

    .product-image {
        height: 140px;
    }

    .product-image-icon {
        font-size: 2.5rem;
    }

    .product-badge {
        padding: 0.2rem 0.5rem;
        font-size: 0.6rem;
    }

    .product-wishlist {
        width: 30px;
        height: 30px;
    }

    .product-content {
        padding: 1rem;
    }

    .product-rating {
        margin-bottom: 0.35rem;
    }

        .product-rating i {
            font-size: 0.65rem;
        }

        .product-rating span {
            font-size: 0.65rem;
        }

    .product-category {
        font-size: 0.65rem;
        padding: 0.15rem 0.5rem;
    }

    .product-title {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .product-features {
        margin-bottom: 0.75rem;
    }

    .product-feature {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }

    .product-price-current {
        font-size: 1rem;
    }

    .product-price-old {
        font-size: 0.7rem;
    }

    .product-price-unit {
        font-size: 0.65rem;
    }

    .product-btn {
        width: 36px;
        height: 36px;
    }

    /* Footer */
    .site-footer {
        padding-top: 40px;
    }

    .footer-top {
        gap: 1.5rem;
    }

    .footer-about {
        max-width: 100%;
    }

    .footer-links h4 {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .footer-links ul li a {
        font-size: 0.85rem;
    }

    .footer-newsletter {
        padding: 1.25rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

        .newsletter-form input {
            width: 100%;
        }

        .newsletter-form button {
            width: 100%;
        }

    .footer-bottom {
        padding: 1rem 0;
    }

    .footer-copyright {
        font-size: 0.75rem;
    }

    /* Modals */
    .modal-content {
        margin: 0.5rem;
    }

    .modal-body {
        padding: 1rem;
    }

    .social-login {
        flex-direction: column;
    }

    /* Back to Top */
    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 42px;
        height: 42px;
    }

    /* Toast */
    .toast {
        min-width: auto;
        max-width: calc(100vw - 40px);
        padding: 0.85rem 1rem;
    }

    .toast-icon {
        width: 32px;
        height: 32px;
    }
}

/* ─────────────────────────────────────────────────────────────────
   44. RESPONSIVE - LANDSCAPE MOBILE
   ───────────────────────────────────────────────────────────────── */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 100px 0 40px;
    }

    .hero-badge {
        margin-bottom: 0.75rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-stats {
        flex-direction: row;
    }

    .stat-card {
        flex: 1;
    }
}

/* ─────────────────────────────────────────────────────────────────
   45. PRINT STYLES
   ───────────────────────────────────────────────────────────────── */
@media print {
    .lotus-header,
    .hero-section,
    .hero-visual,
    .back-to-top,
    .toast-container,
    .mobile-menu,
    .mobile-overlay,
    .modal,
    .btn {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .section {
        padding: 20px 0;
    }

    .product-card {
        break-inside: avoid;
        border: 1px solid #ddd;
    }

    a {
        color: black;
        text-decoration: underline;
    }

        a[href^="http"]::after {
            content: " (" attr(href) ")";
            font-size: 0.8em;
        }
}

/* ─────────────────────────────────────────────────────────────────
   46. REDUCED MOTION (Accessibility)
   ───────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .particle,
    .ai-particle,
    .scroll-dot,
    .live-dot,
    .badge-pulse,
    .orb {
        animation: none !important;
    }
}

/* ─────────────────────────────────────────────────────────────────
   47. DARK/MODE PREFERENCE (For future light mode support)
   ───────────────────────────────────────────────────────────────── */
@media (prefers-color-scheme: light) {
    :root {
        /* Override for light mode if needed */
    }
}

/* ─────────────────────────────────────────────────────────────────
   48. HIGH CONTRAST MODE
   ───────────────────────────────────────────────────────────────── */
@media (prefers-contrast: high) {
    :root {
        --border-color: rgba(0, 0, 0, 0.3);
        --text-secondary: #333;
        --text-muted: #555;
    }

    .product-card,
    .category-card,
    .feature-card {
        border-width: 2px;
    }
}

/* ─────────────────────────────────────────────────────────────────
   49. FOCUS STYLES (Accessibility)
   ───────────────────────────────────────────────────────────────── */
:focus-visible {
    outline: 2px solid var(--primary-400);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary-400);
    outline-offset: 2px;
}

/* Remove outline for mouse users */
:focus:not(:focus-visible) {
    outline: none;
}

/* ─────────────────────────────────────────────────────────────────
   50. FINAL UTILITIES
   ───────────────────────────────────────────────────────────────── */

/* Display */
.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

.d-grid {
    display: grid !important;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-inline-flex {
    display: inline-flex !important;
}

/* Responsive Display */
@media (min-width: 476px) {
    .d-sm-none {
        display: none !important;
    }

    .d-sm-block {
        display: block !important;
    }

    .d-sm-flex {
        display: flex !important;
    }
}

@media (min-width: 768px) {
    .d-md-none {
        display: none !important;
    }

    .d-md-block {
        display: block !important;
    }

    .d-md-flex {
        display: flex !important;
    }
}

@media (min-width: 992px) {
    .d-lg-none {
        display: none !important;
    }

    .d-lg-block {
        display: block !important;
    }

    .d-lg-flex {
        display: flex !important;
    }
}

@media (min-width: 1200px) {
    .d-xl-none {
        display: none !important;
    }

    .d-xl-block {
        display: block !important;
    }

    .d-xl-flex {
        display: flex !important;
    }
}

/* Flex */
.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-nowrap {
    flex-wrap: nowrap !important;
}

.flex-column {
    flex-direction: column !important;
}

.flex-row {
    flex-direction: row !important;
}

.flex-grow-1 {
    flex-grow: 1 !important;
}

.flex-shrink-0 {
    flex-shrink: 0 !important;
}

/* Align Items */
.align-items-start {
    align-items: flex-start !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-end {
    align-items: flex-end !important;
}

.align-items-stretch {
    align-items: stretch !important;
}

/* Justify Content */
.justify-content-start {
    justify-content: flex-start !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-around {
    justify-content: space-around !important;
}

/* Text Align */
.text-right {
    text-align: right !important;
}

.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

/* Spacing */
.m-0 {
    margin: 0 !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.me-0 {
    margin-right: 0 !important;
}

.ms-0 {
    margin-left: 0 !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.me-1 {
    margin-right: 0.25rem !important;
}

.ms-1 {
    margin-left: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.p-0 {
    padding: 0 !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

/* Width & Height */
.w-25 {
    width: 25% !important;
}

.w-50 {
    width: 50% !important;
}

.w-75 {
    width: 75% !important;
}

.w-100 {
    width: 100% !important;
}

.w-auto {
    width: auto !important;
}

.h-25 {
    height: 25% !important;
}

.h-50 {
    height: 50% !important;
}

.h-75 {
    height: 75% !important;
}

.h-100 {
    height: 100% !important;
}

.h-auto {
    height: auto !important;
}

.min-vh-100 {
    min-height: 100vh !important;
}

.min-vw-100 {
    min-width: 100vw !important;
}

/* Overflow */
.overflow-hidden {
    overflow: hidden !important;
}

.overflow-auto {
    overflow: auto !important;
}

.overflow-visible {
    overflow: visible !important;
}

/* Position */
.position-relative {
    position: relative !important;
}

.position-absolute {
    position: absolute !important;
}

.position-fixed {
    position: fixed !important;
}

.position-sticky {
    position: sticky !important;
}

/* Z-Index */
.z-0 {
    z-index: 0 !important;
}

.z-1 {
    z-index: 1 !important;
}

.z-10 {
    z-index: 10 !important;
}

.z-20 {
    z-index: 20 !important;
}

.z-50 {
    z-index: 50 !important;
}

.z-100 {
    z-index: 100 !important;
}

.z-auto {
    z-index: auto !important;
}

/* Border */
.border {
    border: 1px solid var(--border-color) !important;
}

.border-0 {
    border: none !important;
}

.border-top {
    border-top: 1px solid var(--border-color) !important;
}

.border-bottom {
    border-bottom: 1px solid var(--border-color) !important;
}

.rounded {
    border-radius: var(--radius-md) !important;
}

.rounded-sm {
    border-radius: var(--radius-sm) !important;
}

.rounded-lg {
    border-radius: var(--radius-lg) !important;
}

.rounded-xl {
    border-radius: var(--radius-xl) !important;
}

.rounded-full {
    border-radius: var(--radius-full) !important;
}

.rounded-0 {
    border-radius: 0 !important;
}

/* Shadow */
.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

.shadow {
    box-shadow: var(--shadow-md) !important;
}

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

.shadow-none {
    box-shadow: none !important;
}

/* Cursor */
.cursor-pointer {
    cursor: pointer !important;
}

.cursor-default {
    cursor: default !important;
}

.cursor-not-allowed {
    cursor: not-allowed !important;
}

/* User Select */
.user-select-none {
    user-select: none !important;
}

.user-select-all {
    user-select: all !important;
}

/* Pointer Events */
.pointer-events-none {
    pointer-events: none !important;
}

.pointer-events-auto {
    pointer-events: auto !important;
}

/* Opacity */
.opacity-0 {
    opacity: 0 !important;
}

.opacity-25 {
    opacity: 0.25 !important;
}

.opacity-50 {
    opacity: 0.5 !important;
}

.opacity-75 {
    opacity: 0.75 !important;
}

.opacity-100 {
    opacity: 1 !important;
}

/* Transition */
.transition-none {
    transition: none !important;
}

.transition-all {
    transition: all var(--transition-normal) !important;
}

.transition-fast {
    transition: all var(--transition-fast) !important;
}

.transition-slow {
    transition: all var(--transition-slow) !important;
}

/* Transform */
.transform-scale-100 {
    transform: scale(1) !important;
}

.transform-scale-105 {
    transform: scale(1.05) !important;
}

.transform-scale-110 {
    transform: scale(1.1) !important;
}

.transform-rotate-45 {
    transform: rotate(45deg) !important;
}

.transform-rotate-90 {
    transform: rotate(90deg) !important;
}

/* ─────────────────────────────────────────────────────────────────
   51. LOADED STATE (Page Load Animation)
   ───────────────────────────────────────────────────────────────── */
body.loaded .hero-badge,
body.loaded .hero-title,
body.loaded .hero-subtitle,
body.loaded .hero-stats,
body.loaded .hero-cta,
body.loaded .trust-section {
    animation-play-state: running;
}

/* Preloader (if you want to add one) */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

    .preloader.hidden {
        opacity: 0;
        visibility: hidden;
    }

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(168, 85, 247, 0.2);
    border-top-color: var(--primary-500);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
/* ─────────────────────────────────────────────────────────────────
   KEY FEATURES SECTION
   ───────────────────────────────────────────────────────────────── */
.key-features-section {
    padding: 60px 0 80px;
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

    .key-features-section::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient( 90deg, transparent 0%, var(--primary-500) 50%, transparent 100% );
    }

/* Features Grid */
.key-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 991.98px) {
    .key-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .key-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Key Feature Card */
.key-feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

    .key-feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 3px;
        background: var(--gradient-primary);
        border-radius: 0 0 8px 8px;
        opacity: 0;
        transition: opacity var(--transition-normal);
    }

    .key-feature-card:hover {
        transform: translateY(-8px);
        border-color: rgba(168, 85, 247, 0.2);
        background: rgba(168, 85, 247, 0.03);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    }

        .key-feature-card:hover::before {
            opacity: 1;
        }

/* Icon */
.kf-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
    transition: all var(--transition-normal);
}

.key-feature-card:hover .kf-icon {
    transform: scale(1.1) rotate(5deg);
}

.kf-icon i {
    font-size: 1.5rem;
    color: white;
}

.kf-icon-green {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.kf-icon-amber {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.kf-icon-cyan {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

/* Title */
.kf-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

/* Description */
.kf-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Mobile */
@media (max-width: 575.98px) {
    .key-features-section {
        padding: 50px 0 60px;
    }

    .key-feature-card {
        padding: 1.5rem 1.25rem;
    }

    .kf-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
    }

        .kf-icon i {
            font-size: 1.3rem;
        }

    .kf-title {
        font-size: 1rem;
    }

    .kf-desc {
        font-size: 0.85rem;
    }
}
/* ═══════════════════════════════════════════════════════════════════
   PRODUCTS SECTION - COMPLETE CSS
   ═══════════════════════════════════════════════════════════════════ */

/* ── Section Container ── */
.products-section {
    padding: 80px 0 100px;
    position: relative;
    background: var(--bg-darker)
}

    .products-section::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
        pointer-events: none;
    }

    .products-section::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(236, 72, 153, 0.06) 0%, transparent 70%);
        pointer-events: none;
    }

/* ── Section Header ── */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-400);
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

    .section-badge i {
        color: #f97316;
        animation: pulse-fire 2s infinite;
    }

@keyframes pulse-fire {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 1.8rem;
    }
}


.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* ── Slider Wrapper ── */
.products-slider-wrapper {
    position: relative;
    padding: 0 60px;
}

@media (max-width: 1199.98px) {
    .products-slider-wrapper {
        padding: 0 50px;
    }
}

@media (max-width: 767.98px) {
    .products-slider-wrapper {
        padding: 0 15px;
    }
}

/* ── Navigation Arrows ── */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0.9;
}

    .slider-arrow:hover {
        background: linear-gradient(135deg, var(--primary-500) 0%, var(--accent-pink) 100%);
        border-color: transparent;
        color: white;
        opacity: 1;
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
    }

    .slider-arrow:active {
        transform: translateY(-50%) scale(0.95);
    }

    .slider-arrow:disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }

        .slider-arrow:disabled:hover {
            background: var(--bg-card);
            border-color: var(--border-color);
            color: var(--text-primary);
            transform: translateY(-50%);
            box-shadow: none;
        }

.slider-prev {
    right: -10px;
}

.slider-next {
    left: -10px;
}

@media (max-width: 767.98px) {
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }
}

/* ── Slider Container ── */
.products-slider {
    overflow: hidden;
    margin: 0 -10px;
    padding: 15px 0 25px;
    direction: ltr;
}

.products-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 5px 0;
}

/* ── Product Card ── */
.product-card {
    direction: rtl;
    flex: 0 0 calc(25% - 15px);
    min-width: 250px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

@media (max-width: 1399.98px) {
    .product-card {
        flex: 0 0 calc(25% - 15px);
    }
}

@media (max-width: 1199.98px) {
    .product-card {
        flex: 0 0 calc(33.333% - 14px);
        min-width: 260px;
    }
}

@media (max-width: 991.98px) {
    .product-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 575.98px) {
    .product-card {
        flex: 0 0 calc(100% - 20px);
        min-width: 260px;
    }
}

.product-card:hover {
    border-color: var(--primary-500);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 50px rgba(168, 85, 247, 0.1);
}

/* ── Product Image ── */
.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: var(--bg-primary);
}

.product-image-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

    .product-image-bg::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient( 135deg, color-mix(in srgb, var(--accent, #a855f7) 12%, transparent) 0%, transparent 100% );
    }

.product-card:hover .product-image-bg {
    transform: scale(1.08);
}

.product-image-bg i {
    font-size: 4.5rem;
    color: var(--accent, #a855f7);
    opacity: 0.5;
    filter: drop-shadow(0 10px 30px var(--accent, #a855f7));
    transition: all 0.4s ease;
}

.product-card:hover .product-image-bg i {
    animation: bounceIcon 0.6s ease;
    opacity: 0.7;
}

@keyframes bounceIcon {
    0%, 100% {
        transform: scale(1) translateY(0);
    }

    50% {
        transform: scale(1.15) translateY(-5px);
    }
}

/* ── Product Badges ── */
.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 14px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge-sale {
    background: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(244, 63, 94, 0.4);
}

.product-badge-new {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.product-badge-hot {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #1e1b4b;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.product-badge-popular {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

/* ── Wishlist Button ── */
.product-wishlist {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 2;
}

    .product-wishlist i {
        font-size: 1rem;
        color: var(--text-secondary);
        transition: all 0.3s ease;
    }

    .product-wishlist:hover {
        background: white;
        transform: scale(1.15);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    }

        .product-wishlist:hover i {
            color: #f43f5e;
        }

    .product-wishlist.active {
        background: #f43f5e;
    }

        .product-wishlist.active i {
            color: white;
            animation: heartBeat 0.5s ease;
        }

@keyframes heartBeat {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.3);
    }

    50% {
        transform: scale(1);
    }

    75% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

/* ── Product Content ── */
.product-content {
    padding: 20px;
}

/* ── Product Rating ── */
.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

    .product-rating i {
        font-size: 0.75rem;
        color: #fbbf24;
    }

        .product-rating i:not(.fa-star) {
            color: var(--border-color);
        }

    .product-rating span {
        font-size: 0.75rem;
        color: var(--text-muted);
        margin-right: 4px;
        font-family: 'Vazirmatn', sans-serif;
    }

/* ── Product Category ── */
.product-category {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--primary-400);
    background: rgba(168, 85, 247, 0.1);
    border-radius: 6px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── Product Title ── */
.product-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
}

/* ── Product Features ── */
.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

    .product-features span {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-size: 0.75rem;
        color: var(--text-secondary);
        padding: 4px 10px;
        background: var(--bg-secondary);
        border-radius: 6px;
    }

        .product-features span i {
            font-size: 0.65rem;
            color: #10b981;
        }

/* ── Product Footer ── */
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

/* ── Product Price ── */
.product-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.price-old {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-family: 'SHABNAM', sans-serif;
}

.price-current {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    font-family: 'SHABNAM', sans-serif;
}

.price-unit {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ── Add to Cart Button ── */
.product-add-btn {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--accent-pink) 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .product-add-btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .product-add-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
    }

        .product-add-btn:hover::before {
            opacity: 1;
        }

    .product-add-btn:active {
        transform: scale(0.95);
    }

    .product-add-btn.added {
        background: #10b981;
        animation: successPulse 0.5s ease;
    }

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}
.product-view-btn {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--accent-pink) 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .product-view-btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .product-view-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
    }

        .product-view-btn:hover::before {
            opacity: 1;
        }

    .product-view-btn:active {
        transform: scale(0.95);
    }

    .product-view-btn.added {
        background: #10b981;
        animation: successPulse 0.5s ease;
    }
/* ── Slider Dots ── */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    background: var(--border-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

    .slider-dot:hover {
        background: var(--primary-400);
        transform: scale(1.2);
    }

    .slider-dot.active {
        width: 32px;
        border-radius: 5px;
        background: var(--gradient-primary);
    }

@media (max-width: 767.98px) {
    .slider-dots {
        display: none;
    }
}

/* ── View All Button ── */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-lg-5 {
    margin-top: 2rem;
}

@media (min-width: 992px) {
    .mt-lg-5 {
        margin-top: 3rem;
    }
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .btn-view-all span {
        transition: transform 0.3s ease;
    }

    .btn-view-all i {
        font-size: 0.85rem;
        transition: all 0.3s ease;
    }

    .btn-view-all:hover {
        background: linear-gradient(135deg, var(--primary-500) 0%, var(--accent-pink) 100%);
        border-color: transparent;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
    }

        .btn-view-all:hover span {
            transform: translateX(-4px);
        }

        .btn-view-all:hover i {
            transform: translateX(-8px);
        }

/* ── Loading State ── */
.product-card.loading {
    pointer-events: none;
}

    .product-card.loading .product-image-bg {
        animation: shimmer 1.5s infinite;
    }

        .product-card.loading .product-image-bg i {
            opacity: 0.2;
        }

@keyframes shimmer {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/* ── Hover Effect on Entire Card ── */
.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    opacity: 0;
    background: linear-gradient( 135deg, rgba(168, 85, 247, 0.03) 0%, rgba(236, 72, 153, 0.03) 100% );
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.product-card:hover::after {
    opacity: 1;
}
/* ═══════════════════════════════════════════════════════════════
VIRTUAL NUMBERS SECTION STYLES
═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────
   Section Container
   ───────────────────────────────────────────── */
.virtual-numbers-section {
    background: var(--bg-darker);
}

    .virtual-numbers-section::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, var(--primary-500) 50%, transparent 100%);
    }
/* ─────────────────────────────────────────────
   Virtual Number Card
   ───────────────────────────────────────────── */
.virtual-number-card {
    background: white;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

    .virtual-number-card:hover {
        border-color: #06b6d4;
        box-shadow: 0 4px 16px rgba(6, 182, 212, 0.12);
        transform: translateX(-4px);
    }

[dir="rtl"] .virtual-number-card:hover {
    transform: translateX(4px);
}

/* ─────────────────────────────────────────────
   Flag
   ───────────────────────────────────────────── */
.vn-flag {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 16px;
    overflow: hidden;
}

[dir="rtl"] .vn-flag {
    margin-left: 0;
    margin-right: 16px;
}

.vn-flag .fi {
    font-size: 28px;
    line-height: 1;
}

/* ─────────────────────────────────────────────
   Info
   ───────────────────────────────────────────── */
.vn-info {
    padding-left: 4px;
}

[dir="rtl"] .vn-info {
    padding-left: 0;
    padding-right: 4px;
}

.vn-country {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.vn-price-note {
    font-size: 0.8rem;
    color: #64748b;
}

    .vn-price-note i {
        color: #10b981;
        margin-left: 4px;
        font-size: 0.75rem;
    }

[dir="rtl"] .vn-price-note i {
    margin-left: 0;
    margin-right: 4px;
}

/* ─────────────────────────────────────────────
   Price
   ───────────────────────────────────────────── */
.vn-price {
    text-align: left;
    margin-left: 20px;
}

[dir="rtl"] .vn-price {
    text-align: right;
    margin-left: 0;
    margin-right: 20px;
}

.price-value {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
}

.price-unit {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
}

/* ─────────────────────────────────────────────
   Buy Button
   ───────────────────────────────────────────── */
.vn-buy-btn {
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    border: none;
    color: white;
    transition: all 0.3s ease;
    white-space: nowrap;
}

    .vn-buy-btn:hover {
        background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4);
        color: white;
    }

    .vn-buy-btn:active {
        transform: translateY(0);
    }

/* ─────────────────────────────────────────────
   Responsive
   ───────────────────────────────────────────── */
@media (max-width: 476px) {
    .virtual-number-card {
        padding: 14px 16px;
    }

    .vn-flag {
        width: 40px;
        height: 40px;
        margin-left: 12px;
    }

    [dir="rtl"] .vn-flag {
        margin-left: 0;
        margin-right: 12px;
    }

    .vn-flag .fi {
        font-size: 22px;
    }

    .vn-country {
        font-size: 0.9rem;
    }

    .vn-price {
        margin-left: 12px;
    }

    [dir="rtl"] .vn-price {
        margin-left: 0;
        margin-right: 12px;
    }

    .price-value {
        font-size: 1rem;
    }

    .vn-buy-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

        .vn-buy-btn i {
            display: none;
        }

    .section-title {
        font-size: 1.3rem;
    }
}

/* ─────────────────────────────────────────────
   Bootstrap Button Override (if needed)
   ───────────────────────────────────────────── */
.btn-outline-primary {
    border-color: #06b6d4;
    color: #06b6d4;
}

    .btn-outline-primary:hover {
        background: #06b6d4;
        border-color: #06b6d4;
        color: white;
    }
/* ===================================
   Virtual Numbers Section - Neon Style
   =================================== */

.virtual-numbers-section {
    padding: 60px 0;
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

/* Section Header */
.neon-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(138, 43, 226, 0.1));
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 50px;
    color: #00ffff;
    font-size: 14px;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% {
        box-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
    }

    50% {
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #00ffff 50%, #8a2be2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.section-subtitle {
    color: #888;
    font-size: 1.1rem;
}

/* Search & Filter Bar */
.search-filter-bar {
    background: rgba(20, 20, 30, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 30px;
}

.search-input-wrapper {
    position: relative;
}

.search-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px !important;
    padding: 12px 15px 12px 45px !important;
    color: #fff !important;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

    .search-input:focus {
        border-color: var(--primary-500) !important;
        box-shadow: 0 0 15px rgb(255 0 247 / 25%);
        outline: none !important;
    }

    .search-input::placeholder {
        color: #666 !important;
    }

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #a387f3;
    font-size: 14px;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px 18px;
    color: #888;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .filter-btn:hover {
        background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
        border: 1px solid rgba(168, 85, 247, 0.3);
        color: var(--primary-400);
    }

    .filter-btn.active {
        background: rgb(169 0 255 / 10%);
        border-color: #9100ff;
        color: #9d00ff;
        box-shadow: 0 0 15px rgb(255 0 247 / 30%);
    }

/* Product Cards Grid */
.virtual-numbers-grid {
    position: relative;
    z-index: 1;
}

/* Neon Product Card */
.neon-product-card {
    position: relative;
    background: linear-gradient(145deg, #15151f 0%, #1a1a28 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .neon-product-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #00ffff, #8a2be2, #ff00ff);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .neon-product-card:hover::before {
        opacity: 1;
    }

    .neon-product-card:hover {
        transform: translateY(-10px);
        border-color: rgb(169 0 255 / 30%);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 255, 255, 0.1);
    }

/* Card Glow Effect */
.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgb(0 55 255 / 10%) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.neon-product-card:hover .card-glow {
    opacity: 1;
}

/* Card Header */
.card-header-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.country-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.flag-wrapper {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

    .flag-wrapper .fi {
        font-size: 28px;
    }

.online-dot {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: #00ff88;
    border-radius: 50%;
    border: 2px solid #15151f;
    animation: pulse-online 2s ease-in-out infinite;
}

@keyframes pulse-online {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.5);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(0, 255, 136, 0);
    }
}

.country-details {
    display: flex;
    flex-direction: column;
}

.country-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 2px;
}

.country-code {
    font-size: 0.8rem;
    color: #666;
    direction: ltr;
    text-align: left;
}

/* Badges */
.popular-badge,
.cheap-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
}

.popular-badge {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.15));
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #ffd700;
}

.cheap-badge {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 200, 100, 0.1));
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

/* Card Body */
.card-body-custom {
    padding: 15px 20px;
    flex-grow: 1;
}

.features-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #888;
}

    .feature-item i {
        color: #00ffff;
        font-size: 0.8rem;
    }

.price-section {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.price-currency {
    font-size: 0.9rem;
    color: #666;
}

.price-per {
    font-size: 0.8rem;
    color: #555;
    width: 100%;
    margin-top: -5px;
}

/* Card Footer */
.card-footer-custom {
    padding: 15px 20px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stock-info {
    margin-bottom: 12px;
}

.stock-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 6px;
}

.stock-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ffff, #8a2be2);
    border-radius: 2px;
    transition: width 0.5s ease;
}

.stock-text {
    font-size: 0.75rem;
    color: #666;
}

/* Buy Button - Neon Style */
.btn-buy-neon {
    width: 100%;
    position: relative;
    padding: 12px 20px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 12px;
    color: #0a0a0f !important;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .btn-buy-neon:hover {
        transform: scale(1.02);
        box-shadow: 0 5px 25px rgba(0, 255, 255, 0.4);
    }

    .btn-buy-neon:active {
        transform: scale(0.98);
    }

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-arrow {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.btn-buy-neon:hover .btn-arrow {
    transform: translateX(-5px);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-buy-neon:hover .btn-glow {
    left: 100%;
}

/* View All Button */
.btn-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid rgb(142 18 255 / 30%);
    border-radius: 50px;
    color: #a855f7;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .btn-view-all:hover {
        background: rgb(169 0 255 / 10%);
        border-color: #9100ff;
        color: #9d00ff;
        box-shadow: 0 0 30px rgb(192 0 255 / 30%);
        transform: translateY(-2px);
    }

    .btn-view-all .btn-glow {
        background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
    }

/* Card Variants */
.neon-product-card.popular {
    border-color: rgba(255, 215, 0, 0.2);
}

    .neon-product-card.popular::before {
        background: linear-gradient(90deg, #ffd700, #ff8c00, #ffd700);
    }

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .neon-product-card:hover {
        transform: translateY(-5px);
    }

    .card-header-custom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .search-filter-bar {
        padding: 15px;
    }

    .filter-buttons {
        justify-content: center;
    }
}

.max-w {
    max-width: 90px !important;
}

.banner-section {
    background-color: #080810;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .banner-section a {
        display: block;
        width: 100%;
    }

    .banner-section img {
        width: 100%;
        height: auto;
        display: block;
    }
/* ===================================
   About Section - Modern Neon Style
   =================================== */

.about-section {
    padding: 40px 0;
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

    /* Background Decoration */
    .about-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(157, 0, 255, 0.08) 0%, transparent 70%);
        pointer-events: none;
    }

    .about-section::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -10%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(0, 255, 255, 0.05) 0%, transparent 70%);
        pointer-events: none;
    }

/* ===================================
   Image Section
   =================================== */

.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image-main {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(157, 0, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(157, 0, 255, 0.15);
}

.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-image-main:hover .about-img {
    transform: scale(1.05);
}

/* Floating Stats */
.floating-stat {
    position: absolute;
    background: linear-gradient(145deg, #1a1a2e, #16162a);
    border: 1px solid rgba(157, 0, 255, 0.4);
    border-radius: 16px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(157, 0, 255, 0.2);
    animation: float 4s ease-in-out infinite;
    z-index: 10;
}

    .floating-stat::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, #9d00ff, transparent);
    }

.stat-1 {
    bottom: 30px;
    left: 10px;
    animation-delay: 0s;
}

.stat-2 {
    top: 30px;
    right: 10px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.stat-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(157, 0, 255, 0.2), rgba(157, 0, 255, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9d00ff;
    font-size: 1.2rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.75rem;
    color: #888;
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(145deg, #9d00ff, #7b00cc);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(157, 0, 255, 0.4), 0 0 50px rgba(157, 0, 255, 0.3);
    z-index: 15;
    animation: pulse-badge 3s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(157, 0, 255, 0.4), 0 0 50px rgba(157, 0, 255, 0.3);
    }

    50% {
        box-shadow: 0 10px 40px rgba(157, 0, 255, 0.6), 0 0 80px rgba(157, 0, 255, 0.4);
    }
}

.exp-number {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.exp-text {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    line-height: 1.3;
}

/* Image Decorations */
.image-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(157, 0, 255, 0.2);
}

.deco-1 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    right: -30px;
    animation: rotate 20s linear infinite;
}

.deco-2 {
    width: 100px;
    height: 100px;
    top: -20px;
    left: -20px;
    animation: rotate 15s linear infinite reverse;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ===================================
   Content Section
   =================================== */

.about-content {
    padding-left: 20px;
}

/* Section Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.badge-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #9d00ff, transparent);
}

.badge-text {
    font-size: 0.9rem;
    color: #9d00ff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Title */
.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 20px;
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, #9d00ff, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.about-description {
    font-size: 1.05rem;
    color: #999;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

    .feature-box:hover {
        background: rgba(157, 0, 255, 0.05);
        border-color: rgba(157, 0, 255, 0.3);
        transform: translateY(-3px);
    }

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, rgba(157, 0, 255, 0.15), rgba(157, 0, 255, 0.05));
    border: 1px solid rgba(157, 0, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9d00ff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    background: linear-gradient(135deg, #9d00ff, #7b00cc);
    color: #fff;
    box-shadow: 0 5px 20px rgba(157, 0, 255, 0.4);
}

.feature-text h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.85rem;
    color: #777;
    margin: 0;
}

/* Stats Row */
.stats-row {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 25px 30px;
    background: linear-gradient(145deg, rgba(157, 0, 255, 0.08), rgba(157, 0, 255, 0.02));
    border: 1px solid rgba(157, 0, 255, 0.2);
    border-radius: 16px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-suffix {
    font-size: 1.2rem;
    color: #9d00ff;
}

.stat-name {
    font-size: 0.85rem;
    color: #888;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(157, 0, 255, 0.3), transparent);
}

/* CTA Button */
.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #9d00ff, #7b00cc);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(157, 0, 255, 0.3);
}

    .btn-about:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(157, 0, 255, 0.5);
        color: #fff;
    }

    .btn-about i {
        transition: transform 0.3s ease;
    }

    .btn-about:hover i {
        transform: translateX(-5px);
    }

    .btn-about .btn-glow {
        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;
    }

    .btn-about:hover .btn-glow {
        left: 100%;
    }

/* ===================================
   Responsive
   =================================== */

@media (max-width: 992px) {
    .about-section {
        padding: 60px 0;
    }

    .about-image-wrapper {
        margin-bottom: 50px;
    }

    .about-title {
        font-size: 2rem;
    }

    .floating-stat {
        display: none;
    }

    .experience-badge {
        right: 10px;
        width: 80px;
        height: 80px;
    }

    .exp-number {
        font-size: 1.5rem;
    }

    .exp-text {
        font-size: 0.55rem;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-row {
        gap: 20px;
    }

    .stat-item {
        flex: 1 1 30%;
    }

    .stat-divider {
        display: none;
    }

    .about-content {
        padding-left: 0;
    }
}

@media (max-width: 476px) {
    .about-title {
        font-size: 1.6rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }
}
/* ===================================
   Features Section
   =================================== */

.features-section {
    padding: 80px 0;
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

/* Background */
.features-bg {
    position: absolute;
    top: 150px;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.feature-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.f-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(157, 0, 255, 0.15), transparent 70%);
    top: -100px;
    left: -100px;
}

.f-orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1), transparent 70%);
    bottom: 65px;
    right: -100px;
}

/* ===================================
   Section Header
   =================================== */

.section-header-f {
    margin-bottom: 50px;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(157, 0, 255, 0.1);
    border: 1px solid rgba(157, 0, 255, 0.3);
    border-radius: 50px;
    color: #9d00ff;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.header-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

    .header-title span {
        background: linear-gradient(135deg, #9d00ff, #ff00ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.header-subtitle {
    font-size: 1rem;
    color: #888;
}

/* ===================================
   Main Feature Cards
   =================================== */

.feature-main-card {
    position: relative;
    background: linear-gradient(145deg, #1a1a2e, #16162a);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 30px;
    height: 100%;
    transition: all 0.4s ease;
    overflow: hidden;
}

    .feature-main-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #9d00ff, #9600f1);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .feature-main-card:hover {
        transform: translateY(-8px);
        border-color: rgba(157, 0, 255, 0.3);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(157, 0, 255, 0.15);
    }

        .feature-main-card:hover::before {
            opacity: 1;
        }

/* AI Card Glow */
.ai-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(157, 0, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.ai-card:hover::after {
    opacity: 1;
}

/* VN Card */
.vn-card::before {
    background: linear-gradient(90deg, #00ffff, #00ccff);
}

.vn-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vn-card:hover::after {
    opacity: 1;
}

/* Card Header */
.fmc-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.fmc-icon-wrap {
    position: relative;
}

.fmc-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(157, 0, 255, 0.2), rgba(157, 0, 255, 0.1));
    border: 1px solid rgba(157, 0, 255, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9d00ff;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.fmc-icon-vn {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(0, 255, 255, 0.1));
    border-color: rgba(0, 255, 255, 0.3);
    color: #00ffff;
}

.feature-main-card:hover .fmc-icon {
    background: #9d00ff;
    color: #fff;
    box-shadow: 0 5px 25px rgba(157, 0, 255, 0.5);
    transform: scale(1.1);
}

.vn-card:hover .fmc-icon-vn {
    background: #00ffff;
    color: #0a0a0f;
    box-shadow: 0 5px 25px rgba(0, 255, 255, 0.5);
}

.fmc-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(157, 0, 255, 0.3), transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fmc-icon-glow-vn {
    background: radial-gradient(circle, rgba(0, 255, 255, 0.3), transparent 70%);
}

.feature-main-card:hover .fmc-icon-glow {
    opacity: 1;
}

.fmc-title-area {
    flex: 1;
}

    .fmc-title-area h4 {
        font-size: 1.2rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 3px;
    }

    .fmc-title-area p {
        font-size: 0.85rem;
        color: #888;
        margin: 0;
    }

.fmc-badge {
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(157, 0, 255, 0.2), rgba(157, 0, 255, 0.1));
    border: 1px solid rgba(157, 0, 255, 0.3);
    border-radius: 8px;
    color: #9d00ff;
    font-size: 0.75rem;
    font-weight: 600;
}

.fmc-badge-vn {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(0, 255, 255, 0.1));
    border-color: rgba(0, 255, 255, 0.3);
    color: #00ffff;
}

/* Card Content */
.fmc-content {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

    .fmc-content p {
        font-size: 0.95rem;
        color: #999;
        line-height: 1.7;
        margin: 0;
    }

/* Card Features */
.fmc-features {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.fcf-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: #ccc;
}

    .fcf-item i {
        color: #00ff88;
        font-size: 0.85rem;
    }

/* Card Button */
.fmc-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #9d00ff, #7b00cc);
    border-radius: 12px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.fmc-btn-vn {
    background: linear-gradient(135deg, #00ffff, #00cccc);
    color: #0a0a0f;
}

.fmc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(157, 0, 255, 0.4);
    color: #fff;
}

.fmc-btn-vn:hover {
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.4);
    color: #0a0a0f;
}

.fmc-btn i {
    transition: transform 0.3s ease;
}

.fmc-btn:hover i {
    transform: translateX(-5px);
}

/* ===================================
   Quick Benefits
   =================================== */

.quick-benefits {
    position: relative;
    z-index: 1;
}

.benefit-mini-card {
    text-align: center;
    padding: 25px 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    transition: all 0.3s ease;
    height: 100%;
}

    .benefit-mini-card:hover {
        background: rgba(157, 0, 255, 0.05);
        border-color: rgba(157, 0, 255, 0.2);
        transform: translateY(-5px);
    }

.bmc-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(157, 0, 255, 0.15), rgba(157, 0, 255, 0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9d00ff;
    font-size: 1.2rem;
    margin: 0 auto 12px;
    transition: all 0.3s ease;
}

.benefit-mini-card:hover .bmc-icon {
    background: #9d00ff;
    color: #fff;
    box-shadow: 0 5px 20px rgba(157, 0, 255, 0.4);
}

.bmc-icon h6 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.bmc-icon p {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
}

/* Fix h6 & p styling */
.benefit-mini-card h6 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.benefit-mini-card p {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
}

/* ===================================
   Responsive
   =================================== */

@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }

    .header-title {
        font-size: 1.6rem;
    }

    .feature-main-card {
        padding: 25px;
    }

    .fmc-header {
        flex-wrap: wrap;
    }

    .fmc-badge {
        position: absolute;
        top: 10px;
        left: 10px;
    }
}

.about-sec {
    transform: translateY(-8px);
    border-color: rgba(157, 0, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(157, 0, 255, 0.15);
    position: relative;
    background: linear-gradient(145deg, #1a1a2e, #16162a);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 30px;
    height: 100%;
    transition: all 0.4s ease;
    overflow: hidden;
}

    .about-sec::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #9d00ff, #ff00ff);
        opacity: 1;
        transition: opacity 0.3s ease;
    }
/* ===================================
   ZharfaTech Footer - Complete Styles
   Prefix: zt-footer-
   =================================== */

/* === Main Container === */

.zt-footer-main {
    background: var(--bg-darker, #0a0a0f);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(157, 0, 255, 0.15);
    font-family: inherit;
}

    /* Background Glow Effects */
    .zt-footer-main::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 5% 30%, rgba(157, 0, 255, 0.06) 0%, #00000000 50%), radial-gradient(circle at 95% 70%, rgb(110 0 255 / 4%) 0%, transparent 50%);
        pointer-events: none;
    }

/* === Container === */

.zt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* ===================================
   Newsletter Section
   =================================== */

.zt-footer-newsletter {
    padding: 50px 0 30px;
    position: relative;
    z-index: 2;
}

.zt-newsletter-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 35px 40px;
    background: linear-gradient(145deg, rgba(157, 0, 255, 0.08), rgba(157, 0, 255, 0.02));
    border: 1px solid rgba(157, 0, 255, 0.2);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

    .zt-newsletter-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, #9d00ff, #ff00ff, transparent);
    }

    .zt-newsletter-box::after {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(157, 0, 255, 0.1), transparent 70%);
        pointer-events: none;
    }

/* Newsletter Left */
.zt-newsletter-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 0;
}

.zt-newsletter-icon-box {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, rgba(157, 0, 255, 0.2), rgba(157, 0, 255, 0.1));
    border: 1px solid rgba(157, 0, 255, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9d00ff;
    font-size: 1.5rem;
    animation: zt-nl-pulse 3s ease-in-out infinite;
}

@keyframes zt-nl-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(157, 0, 255, 0.3);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(157, 0, 255, 0);
    }
}

.zt-newsletter-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.zt-newsletter-text p {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}

/* Newsletter Right */
.zt-newsletter-right {
    flex-shrink: 0;
}

.zt-newsletter-form {
    display: flex;
    gap: 12px;
}

.zt-newsletter-input-wrap {
    position: relative;
    flex: 1;
    max-width: 350px;
}

.zt-newsletter-input {
    width: 100%;
    padding: 14px 50px 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(157, 0, 255, 0.3);
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
    font-family: inherit;
}

    .zt-newsletter-input::placeholder {
        color: #666;
    }

    .zt-newsletter-input:focus {
        border-color: #9d00ff;
        box-shadow: 0 0 20px rgba(157, 0, 255, 0.2);
        background: rgba(255, 255, 255, 0.08);
    }

.zt-newsletter-input-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9d00ff;
    font-size: 1rem;
    pointer-events: none;
}

.zt-newsletter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #9d00ff, #7b00cc);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: inherit;
}

    .zt-newsletter-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(157, 0, 255, 0.4);
    }

    .zt-newsletter-btn i {
        transition: transform 0.3s ease;
    }

    .zt-newsletter-btn:hover i {
        transform: translateX(-5px);
    }

/* ===================================
   Footer Body
   =================================== */

.zt-footer-body {
    padding: 50px 0 40px;
    position: relative;
    z-index: 2;
}

.zt-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

/* === Column Titles === */

.zt-footer-col-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.zt-footer-title-bar {
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, #9d00ff, transparent);
    border-radius: 2px;
    flex-shrink: 0;
}

/* === Brand Column === */

.zt-footer-col-brand {
    height: 100%;
}

.zt-footer-brand-box {
    max-width: 350px;
}

.zt-footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.zt-footer-logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #9d00ff, #7b00cc);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    box-shadow: 0 5px 20px rgba(157, 0, 255, 0.3);
}

.zt-footer-logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}

.zt-footer-brand-desc {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Social Links */
.zt-footer-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.zt-footer-social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #888;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .zt-footer-social-link:hover {
        background: #9d00ff;
        border-color: #9d00ff;
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(157, 0, 255, 0.4);
    }

/* === Link Columns === */

.zt-footer-col-links,
.zt-footer-col-legal {
    height: 100%;
}

.zt-footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .zt-footer-link-list li {
        margin-bottom: 12px;
    }

        .zt-footer-link-list li:last-child {
            margin-bottom: 0;
        }

    .zt-footer-link-list a {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #888;
        text-decoration: none;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        padding: 4px 0;
    }

        .zt-footer-link-list a:hover {
            color: #9d00ff;
            transform: translateX(-5px);
        }

.zt-footer-link-arrow {
    font-size: 0.6rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.zt-footer-link-list a:hover .zt-footer-link-arrow {
    opacity: 1;
}

/* === Contact Column === */

.zt-footer-col-contact {
    height: 100%;
}

.zt-footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .zt-footer-contact-list li {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 20px;
    }

        .zt-footer-contact-list li:last-child {
            margin-bottom: 0;
        }

.zt-footer-contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(157, 0, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9d00ff;
    font-size: 0.95rem;
}

.zt-footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.zt-footer-contact-label {
    font-size: 0.8rem;
    color: #666;
}

.zt-footer-contact-value {
    font-size: 0.9rem;
    color: #ccc;
}

/* Trust Badges */
.zt-footer-trust-badges {
    display: flex;
    gap: 10px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.zt-footer-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    font-size: 0.75rem;
    color: #888;
    transition: all 0.3s ease;
}

    .zt-footer-trust-badge:hover {
        border-color: rgba(157, 0, 255, 0.3);
        color: #9d00ff;
    }

    .zt-footer-trust-badge i {
        color: #00ff88;
        font-size: 0.85rem;
    }

/* ===================================
   Footer Bottom Bar
   =================================== */

.zt-footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 0;
    position: relative;
    z-index: 2;
}

.zt-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

/* Copyright */
.zt-footer-copyright {
    font-size: 0.85rem;
    color: #666;
}

    .zt-footer-copyright p {
        margin: 0;
    }

.zt-footer-brand-highlight {
    color: #9d00ff;
    font-weight: 600;
}

/* Payment Methods */
.zt-footer-payment-methods {
    display: flex;
    align-items: center;
    gap: 15px;
}

.zt-footer-payment-label {
    font-size: 0.8rem;
    color: #555;
}

.zt-footer-payment-icons {
    display: flex;
    gap: 10px;
}

.zt-footer-payment-icon {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    font-size: 0.75rem;
    color: #888;
    transition: all 0.3s ease;
}

    .zt-footer-payment-icon:hover {
        border-color: rgba(157, 0, 255, 0.3);
        color: #9d00ff;
    }

    .zt-footer-payment-icon i {
        font-size: 1rem;
    }

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 992px) {
    .zt-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .zt-newsletter-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .zt-newsletter-left {
        flex-direction: column;
    }

    .zt-newsletter-form {
        width: 100%;
        flex-direction: column;
    }

    .zt-newsletter-input-wrap {
        max-width: 100%;
    }

    .zt-newsletter-input {
        padding-right: 20px;
    }

    .zt-newsletter-input-icon {
        display: none;
    }

    .zt-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .zt-footer-payment-methods {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .zt-footer-newsletter {
        padding: 30px 0 20px;
    }

    .zt-footer-body {
        padding: 30px 0 20px;
    }

    .zt-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .zt-footer-brand-box {
        max-width: 100%;
    }

    .zt-footer-logo-wrap {
        justify-content: center;
    }

    .zt-footer-socials {
        justify-content: center;
    }

    .zt-footer-trust-badges {
        justify-content: center;
    }

    .zt-footer-col-title {
        justify-content: center;
    }

    .zt-footer-link-list {
        text-align: center;
    }

        .zt-footer-link-list a {
            justify-content: center;
        }

    .zt-footer-contact-list li {
        justify-content: center;
        text-align: center;
    }

    .zt-footer-contact-icon {
        margin: 0;
    }
}

@media (max-width: 476px) {
    .zt-newsletter-box {
        padding: 25px 20px;
    }

    .zt-newsletter-text h3 {
        font-size: 1.1rem;
    }

    .zt-footer-socials {
        justify-content: center;
    }

    .zt-footer-trust-badges {
        justify-content: center;
    }
}
/* ===================================
   ZharfaTech Contact Section
   Prefix: zt-contact-
   =================================== */

.zt-contact-section {
    padding-bottom:80px;
    background: var(--bg-darker, #0a0a0f);
    position: relative;
    overflow: hidden;
}
    .zt-contact-section::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, var(--primary-500) 50%, transparent 100%);
    }
/* === Background Effects === */

.zt-contact-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.zt-contact-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.zt-contact-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(157, 0, 255, 0.12) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    animation: zt-contact-orb-float 15s ease-in-out infinite;
}

.zt-contact-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.08) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: zt-contact-orb-float 12s ease-in-out infinite reverse;
}

@keyframes zt-contact-orb-float {
    0%, 100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(30px, -30px);
    }

    50% {
        transform: translate(-20px, 20px);
    }

    75% {
        transform: translate(20px, 30px);
    }
}

.zt-contact-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(157, 0, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(157, 0, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.zt-contact-floating-icon {
    position: absolute;
    color: rgba(157, 0, 255, 0.1);
    font-size: 2rem;
    animation: zt-contact-float-icon 8s ease-in-out infinite;
}

.zt-cfi-1 {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.zt-cfi-2 {
    top: 60%;
    right: 8%;
    animation-delay: 3s;
}

.zt-cfi-3 {
    bottom: 25%;
    left: 15%;
    animation-delay: 5s;
}

@keyframes zt-contact-float-icon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.1;
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
        opacity: 0.2;
    }
}

/* === Container === */

.zt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* === Section Header === */

.zt-contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.zt-contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: rgba(157, 0, 255, 0.08);
    border: 1px solid rgba(157, 0, 255, 0.3);
    border-radius: 50px;
    margin-bottom: 20px;
}

.zt-contact-badge-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: zt-contact-blink 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px #00ff88;
}

@keyframes zt-contact-blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.zt-contact-badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #9d00ff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.zt-contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.4;
}

.zt-contact-title-gradient {
    display: block;
    background: linear-gradient(135deg, #9d00ff, #ff00ff, #00ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: zt-contact-gradient-shift 3s ease-in-out infinite;
}

@keyframes zt-contact-gradient-shift {
    0%, 100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

.zt-contact-subtitle {
    font-size: 1.05rem;
    color: #888;
    max-width: 500px;
    margin: 0 auto;
}

/* === Main Grid === */

.zt-contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 60px;
}

/* === Info Side === */

.zt-contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.zt-contact-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Info Cards */
.zt-contact-info-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 25px;
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.9), rgba(22, 22, 42, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.4s ease;
}

    .zt-contact-info-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

.zt-contact-card-whatsapp::before {
    background: linear-gradient(90deg, #25D366, #128C7E);
}

.zt-contact-card-email::before {
    background: linear-gradient(90deg, #9d00ff, #7b00cc);
}

.zt-contact-card-telegram::before {
    background: linear-gradient(90deg, #0088cc, #0066aa);
}

.zt-contact-info-card:hover {
    transform: translateX(8px);
    border-color: rgba(157, 0, 255, 0.2);
}

    .zt-contact-info-card:hover::before {
        opacity: 1;
    }

.zt-contact-card-icon-wrap {
    position: relative;
}

.zt-contact-card-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(37, 211, 102, 0.1));
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #25D366;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.zt-contact-card-icon-email {
    background: linear-gradient(135deg, rgba(157, 0, 255, 0.2), rgba(157, 0, 255, 0.1));
    border-color: rgba(157, 0, 255, 0.3);
    color: #9d00ff;
}

.zt-contact-card-icon-telegram {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.2), rgba(0, 136, 204, 0.1));
    border-color: rgba(0, 136, 204, 0.3);
    color: #0088cc;
}

.zt-contact-info-card:hover .zt-contact-card-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.zt-contact-info-card:hover .zt-contact-card-icon-email {
    box-shadow: 0 5px 20px rgba(157, 0, 255, 0.3);
}

.zt-contact-info-card:hover .zt-contact-card-icon-telegram {
    box-shadow: 0 5px 20px rgba(0, 136, 204, 0.3);
}

.zt-contact-card-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.3), transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zt-contact-card-icon-glow-email {
    background: radial-gradient(circle, rgba(157, 0, 255, 0.3), transparent 70%);
}

.zt-contact-card-icon-glow-telegram {
    background: radial-gradient(circle, rgba(0, 136, 204, 0.3), transparent 70%);
}

.zt-contact-info-card:hover .zt-contact-card-icon-glow {
    opacity: 1;
}

.zt-contact-card-content {
    flex: 1;
}

    .zt-contact-card-content h5 {
        font-size: 1.05rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 4px;
    }

    .zt-contact-card-content p {
        font-size: 0.85rem;
        color: #888;
        margin-bottom: 10px;
    }

.zt-contact-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #25D366;
    text-decoration: none;
    transition: all 0.3s ease;
}

.zt-contact-card-link-email {
    color: #9d00ff;
}

.zt-contact-card-link-telegram {
    color: #0088cc;
}

.zt-contact-card-link:hover {
    gap: 10px;
}

.zt-contact-card-decoration {
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(157, 0, 255, 0.05), transparent);
    border-radius: 50%;
    pointer-events: none;
}

/* Support Status */
.zt-contact-support-status {
    padding: 20px 25px;
    background: linear-gradient(145deg, rgba(0, 255, 136, 0.05), rgba(0, 255, 136, 0.02));
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 16px;
}

.zt-contact-status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.zt-contact-status-dot {
    width: 10px;
    height: 10px;
    background: #00ff88;
    border-radius: 50%;
    animation: zt-contact-status-pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px #00ff88;
}

@keyframes zt-contact-status-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.5);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(0, 255, 136, 0);
    }
}

.zt-contact-status-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #00ff88;
}

.zt-contact-status-desc {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}

/* Social Section */
.zt-contact-social-section {
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.zt-contact-social-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #888;
    margin-bottom: 15px;
}

.zt-contact-social-links {
    display: flex;
    gap: 10px;
}

.zt-contact-social-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #888;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .zt-contact-social-btn:hover {
        background: #9d00ff;
        border-color: #9d00ff;
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(157, 0, 255, 0.4);
    }

/* === Form Side === */

.zt-contact-form-side {
    position: relative;
}

.zt-contact-form-wrapper {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.95), rgba(22, 22, 42, 0.95));
    border: 1px solid rgba(157, 0, 255, 0.15);
    border-radius: 24px;
    padding: 35px;
    position: relative;
    overflow: hidden;
}

    .zt-contact-form-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #9d00ff, #ff00ff, #00ffff);
    }

    .zt-contact-form-wrapper::after {
        content: '';
        position: absolute;
        top: -50%;
        right: -30%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(157, 0, 255, 0.08), transparent 70%);
        pointer-events: none;
    }

.zt-contact-form-header {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.zt-contact-form-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .zt-contact-form-title i {
        color: #9d00ff;
    }

.zt-contact-form-desc {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}

/* Form Styles */
.zt-contact-form {
    position: relative;
    z-index: 1;
}

.zt-contact-form-group {
    margin-bottom: 22px;
}

.zt-contact-form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #aaa;
    margin-bottom: 10px;
}

    .zt-contact-form-label i {
        color: #9d00ff;
        font-size: 0.8rem;
    }

.zt-contact-form-input-wrap,
.zt-contact-form-select-wrap,
.zt-contact-form-textarea-wrap {
    position: relative;
}

.zt-contact-form-input,
.zt-contact-form-select,
.zt-contact-form-textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

    .zt-contact-form-input::placeholder,
    .zt-contact-form-textarea::placeholder {
        color: #555;
    }

    .zt-contact-form-input:focus,
    .zt-contact-form-select:focus,
    .zt-contact-form-textarea:focus {
        border-color: #9d00ff;
        background: rgba(255, 255, 255, 0.05);
        box-shadow: 0 0 20px rgba(157, 0, 255, 0.15);
    }

.zt-contact-form-input-border {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #9d00ff, #ff00ff);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.zt-contact-form-input:focus ~ .zt-contact-form-input-border,
.zt-contact-form-textarea:focus ~ .zt-contact-form-input-border {
    width: 100%;
}

/* Select Styles */
.zt-contact-form-select-wrap {
    position: relative;
}

.zt-contact-form-select {
    appearance: none;
    cursor: pointer;
    padding-right: 40px;
}

    .zt-contact-form-select option {
        background: #1a1a2e;
        color: #fff;
    }

.zt-contact-form-select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #9d00ff;
    font-size: 0.8rem;
    pointer-events: none;
}

/* Textarea */
.zt-contact-form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.zt-contact-form-submit {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 30px;
    background: linear-gradient(135deg, #9d00ff, #7b00cc);
    border: none;
    border-radius: 14px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(157, 0, 255, 0.3);
    margin-top: 10px;
}

    .zt-contact-form-submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(157, 0, 255, 0.5);
    }

.zt-contact-form-submit-text {
    position: relative;
    z-index: 2;
}

.zt-contact-form-submit-icon {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.zt-contact-form-submit:hover .zt-contact-form-submit-icon {
    transform: translateX(-5px);
}

.zt-contact-form-submit-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.zt-contact-form-submit:hover .zt-contact-form-submit-glow {
    left: 100%;
}

/* Form Footer */
.zt-contact-form-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: #666;
    position: relative;
    z-index: 1;
}

    .zt-contact-form-footer i {
        color: #00ff88;
    }

/* === Quick Support Cards === */

.zt-contact-quick-support {
    margin-top: 20px;
}

.zt-contact-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.zt-contact-quick-card {
    text-align: center;
    padding: 30px 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .zt-contact-quick-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #9d00ff, #ff00ff);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .zt-contact-quick-card:hover {
        transform: translateY(-8px);
        background: rgba(157, 0, 255, 0.05);
        border-color: rgba(157, 0, 255, 0.2);
    }

        .zt-contact-quick-card:hover::before {
            opacity: 1;
        }

.zt-contact-quick-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(157, 0, 255, 0.15), rgba(157, 0, 255, 0.05));
    border: 1px solid rgba(157, 0, 255, 0.2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9d00ff;
    font-size: 1.4rem;
    margin: 0 auto 18px;
    transition: all 0.3s ease;
}

.zt-contact-quick-card:hover .zt-contact-quick-icon {
    background: #9d00ff;
    color: #fff;
    box-shadow: 0 8px 25px rgba(157, 0, 255, 0.4);
    transform: scale(1.1);
}

.zt-contact-quick-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.zt-contact-quick-card p {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
}

.zt-contact-quick-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #9d00ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .zt-contact-quick-link:hover {
        gap: 10px;
        color: #ff00ff;
    }

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 992px) {
    .zt-contact-section {
        padding: 70px 0 60px;
    }

    .zt-contact-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .zt-contact-title {
        font-size: 2rem;
    }

    .zt-contact-quick-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .zt-contact-section {
        padding: 50px 0 40px;
    }

    .zt-contact-header {
        margin-bottom: 40px;
    }

    .zt-contact-title {
        font-size: 1.7rem;
    }

    .zt-contact-form-wrapper {
        padding: 25px 20px;
    }

    .zt-contact-info-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .zt-contact-card-link {
        justify-content: center;
    }

    .zt-contact-support-status,
    .zt-contact-social-section {
        text-align: center;
    }

    .zt-contact-status-indicator {
        justify-content: center;
    }

    .zt-contact-social-links {
        justify-content: center;
    }
}

@media (max-width: 476px) {
    .zt-contact-title {
        font-size: 1.5rem;
    }

    .zt-contact-subtitle {
        font-size: 0.95rem;
    }

    .zt-contact-form-submit {
        padding: 14px 25px;
    }
}

.recent-articles {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    direction: ltr;
    background-color: var(--bg-darker);
}


.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ========================================
           SECTION HEADER
        ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(157, 0, 255, 0.15), rgba(157, 0, 255, 0.05));
    border: 1px solid rgba(157, 0, 255, 0.3);
    border-radius: 50px;
    font-size: 13px;
    color: var(--neon-primary);
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

    .section-badge svg {
        width: 16px;
        height: 16px;
    }

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #a0a0b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========================================
           SLIDER CONTAINER
        ======================================== */
.articles-slider-wrapper {
    position: relative;
    overflow:hidden;
}

.articles-slider {
    display: flex;
    gap: 24px;
    user-select: none;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

    .articles-slider:active {
        cursor: grabbing;
    }

    .articles-slider.smooth {
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

/* ========================================
           ARTICLE CARD
        ======================================== */
.article-card {
    direction:rtl;
    flex: 0 0 calc(25% - 18px);
    min-width: 280px;
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(157, 0, 255, 0.1);
}

    .article-card::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 20px;
        padding: 1px;
        background: linear-gradient(135deg, rgba(157, 0, 255, 0.5), transparent 50%, rgba(0, 212, 255, 0.3));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .article-card:hover::before {
        opacity: 1;
    }

    .article-card:hover {
        transform: translateY(-8px);
        background: var(--bg-card-hover);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 60px rgba(157, 0, 255, 0.15);
    }

/* Card Image */
.article-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

    .article-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

.article-card:hover .article-image img {
    transform: scale(1.08);
}

.article-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, var(--bg-card), transparent);
}

/* Category Badge on Image */
.article-category {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    padding: 6px 14px;
    background: rgba(157, 0, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 4px 15px rgba(157, 0, 255, 0.4);
}

/* Card Content */
.article-content {
    padding: 24px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

    .meta-item svg {
        width: 14px;
        height: 14px;
        opacity: 0.7;
    }

.article-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 12px;
    color: var(--text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.article-card:hover .article-title {
    color: var(--neon-primary);
}

.article-excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 20px;
}

/* Read More Link */
.article-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .article-link svg {
        width: 18px;
        height: 18px;
        transition: transform 0.3s ease;
    }

.article-card:hover .article-link {
    gap: 12px;
}

    .article-card:hover .article-link svg {
        transform: translateX(-4px);
    }

/* ========================================
           NAVIGATION BUTTONS
        ======================================== */
.slider-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
}

.nav-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(157, 0, 255, 0.3);
    background: var(--bg-card);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

    .nav-btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, var(--neon-primary), var(--neon-secondary));
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .nav-btn:hover::before {
        opacity: 1;
    }

    .nav-btn svg {
        width: 20px;
        height: 20px;
        position: relative;
        z-index: 1;
        transition: transform 0.3s ease;
    }

    .nav-btn:hover {
        border-color: var(--neon-primary);
        box-shadow: 0 0 20px rgba(157, 0, 255, 0.3), inset 0 0 20px rgba(157, 0, 255, 0.1);
    }

        .nav-btn:hover svg {
            transform: scale(1.1);
        }

    .nav-btn:active {
        transform: scale(0.95);
    }

/* ========================================
           DOTS INDICATOR
        ======================================== */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .dot.active {
        width: 32px;
        border-radius: 4px;
        background: var(--neon-primary);
        box-shadow: 0 0 15px rgba(157, 0, 255, 0.5);
    }

/* ========================================
           DRAG HINT
        ======================================== */
.drag-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 13px;
    color: var(--text-muted);
    opacity: 0.6;
}

    .drag-hint svg {
        width: 18px;
        height: 18px;
    }

/* ========================================
           RESPONSIVE
        ======================================== */
@media (max-width: 1200px) {
    .article-card {
        flex: 0 0 calc(33.333% - 16px);
    }
}

@media (max-width: 900px) {
    .article-card {
        flex: 0 0 calc(50% - 12px);
    }

    .article-image {
        height: 160px;
    }
}

@media (max-width: 600px) {
    .recent-articles {
        padding: 60px 0;
    }

    .article-card {
        flex: 0 0 calc(100% );
        min-width: 260px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .slider-nav {
        margin-top: 36px;
    }
}

/* ========================================
           ANIMATIONS
        ======================================== */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(157, 0, 255, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(157, 0, 255, 0.5);
    }
}

.nav-btn.active {
    animation: pulse-glow 2s infinite;
}
/* =========================================
   ویوو محصولات - استایل‌های اصلی
   ========================================= */

/* تعریف متغیرهای رنگی برای اطمینان از هماهنگی */
:root {
    --vv-neon-color: #9d00ff;
    --vv-neon-glow: rgba(157, 0, 255, 0.4);
    --vv-bg-darker: #0f0f13; /* فرض بر این است که این متغیر در کل سایت تعریف شده، اما اینجا فیل‌بک گذاشتیم */
    --vv-text-main: #ffffff;
    --vv-text-muted: #a0a0b0;
    --vv-card-bg: #1a1a20; /* رنگ پس‌زمینه کارت‌ها یا بخش‌ها اگر نیاز باشد */
    --vv-border-radius: 16px;
}

/* ریست اولیه برای ویوو */
.vv-wrapper * {
    box-sizing: border-box;
}

.vv-wrapper {
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg-darker);
    color: var(--vv-text-main);
    font-family: inherit; /* فونت پیش‌فرض سایت را ارث‌بری می‌کند */
}

/* کانتینر مرکزی */
.vv-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

/* =========================================
   بخش Hero و بریک‌کرامب مدرن
   ========================================= */


.vv-hero-section {
    position: relative;
    padding: 4rem 0 3rem 0;
    margin-bottom: 2rem;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* پس‌زمینه و افکت‌ها */
.vv-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* الگوی چهارخانه (Grid) */
.vv-grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(157, 0, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(157, 0, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

/* گلوله‌های نوری شناور (Glowing Orbs) */
.vv-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatOrb 10s infinite ease-in-out;
}

.vv-glow-1 {
    width: 300px;
    height: 300px;
    background: var(--vv-neon-color, #9d00ff);
    top: -100px;
    right: -50px;
}

.vv-glow-2 {
    width: 200px;
    height: 200px;
    background: #00d4ff; /* رنگ آبی نئونی مکمل */
    bottom: -50px;
    left: 10%;
    animation-delay: 5s;
}


/* محتوای اصلی */
.vv-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* بریک‌کرامب شیشه‌ای */
.vv-breadcrumb-glass {
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.vv-breadcrumbs-list {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    gap: 0.5rem;
}

.vv-breadcrumb-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.3s;
}

    .vv-breadcrumb-link:hover {
        color: var(--vv-neon-color, #9d00ff);
    }

.vv-breadcrumb-separator {
    font-size: 0.7rem;
    opacity: 0.5;
}

.vv-breadcrumb-item.vv-active span {
    color: var(--vv-neon-color, #9d00ff);
    font-weight: 600;
}

/* متن‌های اصلی */
.vv-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(157, 0, 255, 0.1);
    border: 1px solid rgba(157, 0, 255, 0.3);
    border-radius: 20px;
    color: #d4b5ff;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: pulseBadge 3s infinite;
}

@keyframes pulseBadge {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(157, 0, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(157, 0, 255, 0);
    }
}

.vv-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0.5rem 0;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 0 20px rgba(157, 0, 255, 0.3);
}

.text-neon {
    background: linear-gradient(135deg, #fff 0%, var(--vv-neon-color, #9d00ff) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vv-hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ریسپانسیو برای موبایل */
@media (max-width: 768px) {
    .vv-hero-title {
        font-size: 2.2rem;
    }

    .vv-hero-desc {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .vv-glow-orb {
        opacity: 0.2; /* کاهش شدت نور در موبایل برای خوانایی */
    }
}

/* =========================================
   2. بخش جستجو (Search)
   ========================================= */
.vv-search-section {
    margin-bottom: 2.5rem;
}

.vv-search-box {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.vv-search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--vv-text-muted);
    pointer-events: none;
}

.vv-search-input {
    width: 100%;
    padding: 1rem 3.5rem 1rem 1rem; /* فضای خالی سمت چپ برای آیکون */
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: var(--vv-border-radius);
    color: var(--vv-text-main);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.vv-search-input::placeholder {
    color: var(--vv-text-muted);
}

.vv-search-input:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--vv-neon-color);
    box-shadow: 0 0 15px var(--vv-neon-glow);
}

/* =========================================
   3. بخش فیلترها و دسته‌بندی‌ها (Filters & Categories)
   ========================================= */
.vv-filters-section {
    padding-bottom: 2rem;
}


.vv-filters-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
    
@media (min-width: 768px) {
    .vv-filters-grid {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* دکمه‌های دسته‌بندی */
.vv-categories-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.vv-cat-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--vv-text-muted);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.vv-cat-btn:hover {
    border-color: var(--vv-neon-color);
    color: var(--vv-text-main);
}

.vv-cat-btn.active {
    background-color: var(--vv-neon-color);
    border-color: var(--vv-neon-color);
    color: #fff;
    box-shadow: 0 0 10px var(--vv-neon-glow);
}

/* اکشن‌های فیلتر (دکمه فیلتر و مرتب‌سازی) */
.vv-filter-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.vv-filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--vv-text-main);
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.vv-filter-btn:hover {
    background: rgba(157, 0, 255, 0.1);
    border-color: var(--vv-neon-color);
}

.vv-sort-select {
    background: transparent;
    border: none;
    color: var(--vv-text-muted);
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
    padding: 0.5rem;
}

/* =========================================
   4. گرید محصولات (Product Grid)
   ========================================= */
.vv-products-section {
    padding-bottom: 4rem;
}
.vv-products-section::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-500) 50%, transparent 100%);
}

.vv-products-grid {
    display: grid;
    /* تنظیم دقیق برای 4 محصول در هر ردیف */
    grid-template-columns: repeat(4, 1fr); 
    gap: 2rem;
}

/* ریسپانسیو گرید */
@media (max-width: 1200px) {
    .vv-products-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 محصول در تبلت بزرگ */
    }
}

@media (max-width: 900px) {
    .vv-products-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 محصول در تبلت کوچک */
    }
}

@media (max-width: 600px) {
    .vv-products-grid {
        grid-template-columns: 1fr; /* 1 محصول در موبایل */
    }
}

/* 
   نکته مهم: 
   کلاس‌های داخلی .product-card دست‌نخورده باقی مانده‌اند.
   فقط اطمینان حاصل می‌کنیم که خود کارت در گرید درست قرار گیرد.
*/
/* =========================================
   5. پیجینیشن (Pagination)
   ========================================= */
.vv-pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.vv-pagination-list {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
}

.vv-page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--vv-text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.vv-page-link:hover:not(.vv-ellipsis) {
    background: rgba(157, 0, 255, 0.1);
    color: var(--vv-text-main);
    border-color: var(--vv-neon-color);
}

.vv-page-link.vv-active-page {
    background: var(--vv-neon-color);
    color: #fff;
    box-shadow: 0 0 15px var(--vv-neon-glow);
}

.vv-page-link.vv-ellipsis {
    background: transparent;
    border: none;
    color: var(--vv-text-muted);
    cursor: default;
}

/* آیکون‌های چپ و راست در پیجینیشن */
.vv-page-link i {
    font-size: 0.8rem;
}
.product-image-width{
    max-width:100px !important;
    height:auto;
}
.product-before {
    border-color: rgba(157, 0, 255, 0.3) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(157, 0, 255, 0.15) !important;
}
.product-before::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #9d00ff, #9600f1);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.ai-prod-gallery {
    position: relative;
    width: 100%;
}

/* کانتینر تصویر اصلی */
.ai-prod-main-image-wrapper {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border: 1px solid #440070;
    border-radius: 20px;
}

/* تصویر اصلی */
.ai-prod-img-main {
    width: 100%;
    height: 100%;
    object-fit: contain; /* یا cover بسته به نیاز */
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* نرمی زوم */
    transform-origin: center;
}

/* افکت زوم هنگام هاور */
.ai-prod-main-image-wrapper:hover .ai-prod-img-main {
    transform: scale(1.05); /* زوم ۱۰ درصدی */
}

/* --- فلش‌های ناوبری --- */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0; /* مخفی در حالت عادی */
    transition: all 0.3s ease;
    z-index: 10;
    color: #333;
    font-size: 18px;
}

    .nav-arrow:hover {
        background-color: white;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

/* نمایش فلش‌ها فقط وقتی موس روی کانتینر است */
.ai-prod-main-image-wrapper:hover .nav-arrow {
    opacity: 1;
}

.arrow-right {
    left: 15px;
}

.arrow-left {
    right: 15px;
}

/* --- برچسب‌ها (Badges) --- */
.product-badges {
    position: absolute;
    top: 15px;
    right: 15px; /* سمت راست بالا */
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
}

.badge-item {
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.badge-sale {
    background: linear-gradient(135deg, rgb(255 0 0 / 10%), rgb(200 0 0 / 10%));
    border: 1px solid rgb(255 0 0 / 30%);
    color: #ff0000;
}
/* قرمز برای تخفیف */
.badge-hot {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.15));
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #ffd700;
}
/* نارنجی برای پرفروش */
.badge-stock {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 200, 100, 0.1));
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
}
/* سبز برای موجود */

/* --- تصاویر کوچک (Thumbnails) --- */
.ai-prod-thumbnails img {
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 1px solid #440070;
}

    .ai-prod-thumbnails img.active,
    .ai-prod-thumbnails img:hover {
        opacity: 1;
        border-color: #8900e1; /* رنگ فعال */
        transform: translateY(-2px);
    }
.star-width{
    width:1.25rem;
}
.comments-font{
    font-size:14px;
}
.ai-prod-title-span1 {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ai-prod-radio-card input:checked + label {
    border-color: #9d00ffa1 !important;
    background: #9d00ff14 !important;
    box-shadow: 0 0 15px rgb(157 0 255 / 18%), inset 0 0 10px rgb(157 0 255 / 0%);
    transition: all 0.3s ease;
}

/* استایل پایه کارت */
.ai-prod-plan-card {
    background-color: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    color: #fff !important;
    border-radius: 16px;
    padding: 10px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: visible;
}

    .ai-prod-plan-card:hover {
        border-color: #6f08b759 !important;
        background-color: #22163d5e !important;
        transform: translateY(-3px);
    }

/* استایل بج (Badge) نئونی برای گزینه ویژه */
.recommended .badge.bg-gradient-custom {
    background: #6f08b7 !important;
    border: none;
    margin: -10px 10px 0 0 !important;
    box-shadow: 0 0 10px var(--neon-primary);
    animation: pulse-badge 2s infinite;
}

.badge {
    font-weight: normal;
    font-size: 0.75rem;
}

/* انیمیشن برای بج ویژه */
@keyframes pulse-badge {
    0% {
        box-shadow: 0 0 0 0 rgba(157, 0, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(157, 0, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(157, 0, 255, 0);
    }
}

/* رنگ متن قیمت */
.price-display {
    font-size: 1.1rem;
    text-shadow: 0 0 5px rgba(0, 206, 209, 0.3); /* کمی درخشش آبی/سبز برای قیمت */
}

/* فونت‌ها و چیدمان */
.ai-prod-plan-card h4 {
    font-size: 15px;
    letter-spacing: 0.5px;
}

.ai-prod-plan-card small {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* مخفی کردن دکمه رادیویی اصلی */
.ai-prod-radio-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.ai-plan-text {
    color: #546077 !important;
}
.feature-ai-main-card {
    position: relative;
    background: linear-gradient(145deg, #1a1a2e, #16162a);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 30px;
    height: 100%;
    transition: all 0.4s ease;
    overflow: hidden;
}
.ai-prod-price-box {
    display:flex;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}
.ai-prod-qty-input {
    border-top: 1px solid #9d00ffa1;
    border-bottom: 1px solid #9d00ffa1;
}
.ai-prod-qty-input-right {
    border-bottom: 1px solid #9d00ffa1;
    border-right: 1px solid #9d00ffa1;
    border-top: 1px solid #9d00ffa1;
    transform: translateY(0px) !important;
}
.ai-prod-qty-input-left {
    border-bottom: 1px solid #9d00ffa1;
    border-left: 1px solid #9d00ffa1;
    border-top: 1px solid #9d00ffa1;
    transform: translateY(0px) !important;
}
.alert-info {
    position: relative;
    background: linear-gradient(145deg, #1a1a2e, #40116c80);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    height: 100%;
    transition: all 0.4s ease;
}
.alert-contant {
    border-radius: 10px;
    padding: 15px;
    border-right: 4px solid #9d00ffa1;

}
.custom-table {
    background: transparent;
    border-collapse: separate;
    border-spacing: 0 10px;
}

    .custom-table tbody tr {
        background: rgba(255, 255, 255, 0.03);
        transition: all 0.3s ease;
        border-radius:10px;
    }

        .custom-table tbody tr:hover {
            background: rgba(0, 212, 255, 0.1);
            transform: scale(1.01);
        }

    .custom-table th {
        color: #FFFFFF;
        font-weight: 500;
        width: 40%;
        padding: 15px;
    }

    .custom-table td {
        color: #fff;
        font-weight: 600;
        padding: 15px;
    }

/* استایل نظرات */
.review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

    .review-card:hover {
        transform: translateY(-3px);
        border-color: rgb(64 17 108);
    }

.star-rating i {
    color: #ffc107;
    text-shadow: 0 0 5px rgba(255, 193, 7, 0.4);
}
/* استایل فرم ارسال نظر */
.review-form {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-top: 30px;
}

.form-control-custom {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 8px;
    padding: 10px 15px;
    transition: all 0.3s;
}

    .form-control-custom:focus {
        background: rgba(255, 255, 255, 0.1);
        border-color: #0dcaf0;
        box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.25);
        color: #fff;
    }

    .form-control-custom::placeholder {
        color: rgba(255, 255, 255, 0.4);
    }

/* دکمه ارسال */
.btn-submit-review {
    background: linear-gradient(45deg, #0dcaf0, #0d6efd);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

    .btn-submit-review:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(13, 202, 240, 0.4);
    }

/* استایل ستاره‌های امتیازدهی در فرم */
.rating-input i {
    cursor: pointer;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.2s;
    margin-right: 5px;
}

    .rating-input i.active,
    .rating-input i:hover {
        color: #ffc107;
        text-shadow: 0 0 8px rgba(255, 193, 7, 0.6);
    }

/* استایل کلی بخش */
.vn-details-wrapper {
    min-height: 80vh; /* برای وسط چین کردن عمودی */
    display: flex;
    align-items: center;
}

/* کارت محصول */
.vn-card {
    background-color: var(--vn-card-bg);
    border: 1px solid rgba(157, 0, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .vn-card:hover {
        box-shadow: 0 15px 40px rgba(157, 0, 255, 0.15);
        border-color: rgba(157, 0, 255, 0.3);
    }

/* افکت نور پس‌زمینه کارت */
.vn-glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(157, 0, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* پرچم و عنوان */
.vn-flag-img {
    transition: transform 0.3s ease;
}

.vn-flag-box:hover .vn-flag-img {
    transform: scale(1.1);
}

.vn-country-name {
    font-size: 1.1rem;
}

/* موجودی */
.vn-stock-badge {
    font-size: 0.85rem;
    font-weight: 500;
}

/* عنوان محصول */
.vn-title {
    letter-spacing: -0.5px;
    z-index: 1;
    position: relative;
}

/* قیمت */
.vn-price-value {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.vn-currency {
    font-size: 0.9rem;
    vertical-align: middle;
}

/* توضیحات */
.vn-description {
    z-index: 1;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
}

/* ویژگی‌ها */
.vn-feature-item {
    transition: all 0.3s ease;
    border-color: rgba(157, 0, 255, 0.1) !important;
}

    .vn-feature-item:hover {
        background-color: rgba(157, 0, 255, 0.1) !important;
        border-color: var(--vn-primary) !important;
        transform: translateY(-3px);
    }

    .vn-feature-item i {
        font-size: 1.2rem;
    }

    .vn-feature-item .small {
        font-size: 0.75rem;
        color: #d1d1d1;
    }

/* دکمه خرید نئونی */
.vn-buy-btn {
    background: linear-gradient(45deg, #7a00cc, #9d00ff, #b544ff);
    border: none;
    color: white;
    box-shadow: 0 0 15px var(--vn-primary-glow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .vn-buy-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 25px var(--vn-primary-glow), 0 0 50px rgba(157, 0, 255, 0.3);
        color: #fff;
    }

    .vn-buy-btn:active {
        transform: translateY(0);
    }

/* ریسپانسیو برای موبایل */
@media (max-width: 476px) {
    .vn-card {
        padding: 2rem 1.5rem;
    }

    .vn-title {
        font-size: 1.5rem;
    }

    .vn-price-value {
        font-size: 1.75rem;
    }

    .vn-flag-box {
        font-size: 0.9rem;
    }
}

/* استایل‌های اختصاصی نئونی */
.neon-border {
    border: 1px solid rgba(157, 0, 255, 0.3);
    border-radius: 15px;
    background-color: var(--bg-card);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

    .neon-border:hover {
        border-color: var(--neon-primary);
        box-shadow: 0 0 15px var(--neon-glow);
    }

.neon-text {
    color: var(--neon-primary);
    text-shadow: 0 0 5px var(--neon-glow);
}

.neon-btn {
    background: transparent;
    border: 1px solid var(--neon-primary);
    color: var(--neon-primary);
    border-radius: 50px;
    padding: 5px 20px;
    transition: all 0.3s;
}

    .neon-btn:hover {
        background: var(--neon-primary);
        color: white;
        box-shadow: 0 0 10px var(--neon-glow);
    }

/* استایل هدر مقاله */
.article-header-img {
    border-radius: 15px 15px 0 0;
    border: 1px solid rgba(157, 0, 255, 0.2);
    border-bottom: none;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: var(--text-muted);
}

    .article-meta i {
        margin-left: 5px;
        color: var(--neon-primary);
    }

.article-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 20px;
    color: #fff;
}

/* استایل بدنه مقاله */
.article-body {
    padding: 0 20px 30px 20px;
    line-height: 1.8;
    color: #d1d1d1;
    text-align: justify;
}

/* تگ‌ها */
.tags-container span {
    display: inline-block;
    background: rgba(157, 0, 255, 0.1);
    color: var(--neon-primary);
    padding: 5px 12px;
    border-radius: 8px;
    margin: 5px 5px 5px 0;
    font-size: 0.85rem;
    border: 1px solid rgba(157, 0, 255, 0.2);
    cursor: pointer;
    transition: 0.3s;
}

    .tags-container span:hover {
        background: var(--neon-primary);
        color: white;
        box-shadow: 0 0 8px var(--neon-glow);
    }

/* سایدبار */
.sidebar-widget {
    margin-bottom: 25px;
    padding: 20px;
    border-radius: 15px;
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.widget-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--neon-primary);
    display: inline-block;
    color: #fff;
}

.recent-post-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    text-decoration: none;
    transition: 0.3s;
}

    .recent-post-item:hover {
        transform: translateX(-5px);
    }

.recent-post-img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    margin-left: 10px;
    border: 1px solid rgba(157, 0, 255, 0.3);
}

.recent-post-info h6 {
    font-size: 0.9rem;
    margin: 0;
    color: #fff;
    line-height: 1.4;
}

.recent-post-info small {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.useful-link {
    display: block;
    padding: 8px 0;
    color: var(--text-muted);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

    .useful-link:last-child {
        border-bottom: none;
    }

    .useful-link:hover {
        color: var(--neon-primary);
        padding-right: 10px;
    }

    .useful-link i {
        margin-left: 8px;
        font-size: 0.8rem;
    }
.ab-hero {
    background: linear-gradient(180deg, rgba(157,0,255,0.1) 0%, rgba(18,18,18,0) 100%);
    padding: 80px 0 40px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 50px;
}

.ab-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 10px var(--neon-glow);
    margin-bottom: 15px;
}

.ab-hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* بخش معرفی (تصویر + متن) */
.ab-content-section {
    padding: 20px;
}

.ab-card {
    background-color: var(--bg-card);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .ab-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        border-color: rgba(157, 0, 255, 0.3);
    }

.ab-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--neon-primary);
    box-shadow: 0 0 15px var(--neon-glow);
}

    .ab-img-wrapper img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s ease;
    }

    .ab-img-wrapper:hover img {
        transform: scale(1.05);
    }

.ab-section-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 0;
}

    .ab-section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 50px;
        height: 4px;
        background: var(--neon-primary);
        border-radius: 2px;
        box-shadow: 0 0 8px var(--neon-glow);
    }

.timeline-item {
    position: relative;
    padding-right: 30px;
    border-right: 2px solid rgba(157, 0, 255, 0.2);
    padding-bottom: 10px;
}

    /* حذف بوردر برای آیتم آخر */
    .timeline-item:last-child {
        border-right: none;
    }

.timeline-dot {
    position: absolute;
    right: -11px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 2px solid var(--neon-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    z-index: 2;
    box-shadow: 0 0 10px rgba(157, 0, 255, 0.3);
}

.neon-text {
    color: var(--neon-primary);
    text-shadow: 0 0 5px var(--neon-glow);
}

/* ویژگی‌ها (Features) */
.ab-feature-box {
    text-align: center;
    padding: 25px;
    background: rgba(255,255,255,0.02);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

    .ab-feature-box:hover {
        background: rgba(157, 0, 255, 0.05);
        border-color: var(--neon-primary);
    }

.ab-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(157, 0, 255, 0.1);
    color: var(--neon-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    border: 1px solid var(--neon-primary);
    box-shadow: 0 0 10px rgba(157, 0, 255, 0.2);
    transition: 0.3s;
}

.ab-feature-box:hover .ab-icon-box {
    background: var(--neon-primary);
    color: #fff;
    box-shadow: 0 0 20px var(--neon-glow);
}

/* تیم ما */
.ab-team-card {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
    text-align: center;
}

    .ab-team-card:hover {
        border-color: var(--neon-primary);
        transform: translateY(-5px);
    }

.ab-team-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 3px solid var(--neon-primary);
}

.ab-team-info {
    padding: 20px;
}

.ab-team-role {
    color: var(--neon-primary);
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.ab-social-links a {
    color: var(--text-muted);
    margin: 0 8px;
    font-size: 1.1rem;
    transition: 0.3s;
}

    .ab-social-links a:hover {
        color: var(--neon-primary);
        text-shadow: 0 0 5px var(--neon-glow);
    }

/* آمار */
.ab-stats-section {
    background: linear-gradient(90deg, #1a0b2e 0%, #121212 100%);
    padding: 60px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(157, 0, 255, 0.2);
    border-bottom: 1px solid rgba(157, 0, 255, 0.2);
}

.ab-stat-item h3 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 10px var(--neon-glow);
}

.ab-stat-item p {
    color: var(--text-muted);
    margin: 0;
}

/* دکمه‌ها */
.ab-btn {
    background: transparent;
    color: var(--neon-primary);
    border: 2px solid var(--neon-primary);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: 20px;
}

    .ab-btn:hover {
        background: var(--neon-primary);
        color: #fff;
        box-shadow: 0 0 20px var(--neon-glow);
    }
/* پس‌زمینه متحرک و زیبا */
.auth-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.4;
}

.shape-1 {
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: var(--neon-primary);
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    bottom: -10%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: #00d2ff;
    animation: float 8s ease-in-out infinite reverse;
}

/* کلاس‌های اختصاصی با پیشوند auth- */
.auth-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--neon-primary), #00d2ff);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    margin: 0 auto 15px;
    box-shadow: 0 0 20px var(--neon-glow);
}

.auth-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
}

.auth-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* استایل فرم */
.auth-input-group {
    position: relative;
    margin-bottom: 20px;
}

.auth-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 45px 15px 15px; /* فضای آیکون سمت راست */
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .auth-input:focus {
        background: rgba(255, 255, 255, 0.08);
        border-color: var(--neon-primary);
        box-shadow: 0 0 15px rgba(157, 0, 255, 0.2);
        outline: none;
    }

.auth-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: var(--text-muted);
    transition: 0.3s;
}

.auth-input:focus + .auth-icon {
    color: var(--neon-primary);
}

.auth-btn {
    width: 100%;
    background: var(--neon-primary);
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(157, 0, 255, 0.3);
    margin-top: 10px;
}

    .auth-btn:hover {
        background: #b026ff;
        box-shadow: 0 0 25px var(--neon-glow);
        transform: translateY(-2px);
    }

/* لینک‌های کمکی */
.auth-links {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.auth-link {
    color: var(--neon-primary);
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

    .auth-link:hover {
        color: #b026ff;
        text-shadow: 0 0 5px var(--neon-glow);
    }

/* جداکننده */
.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 25px 0;
    color: var(--text-muted);
    font-size: 0.85rem;
}

    .auth-divider::before,
    .auth-divider::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .auth-divider span {
        padding: 0 10px;
    }

/* دکمه‌های اجتماعی */
.social-btn {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 10px;
}

    .social-btn:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.3);
    }

    .social-btn.google:hover {
        border-color: #db4437;
        box-shadow: 0 0 10px rgba(219, 68, 55, 0.2);
    }

    .social-btn.github:hover {
        border-color: #6e5494;
        box-shadow: 0 0 10px rgba(110, 84, 148, 0.2);
    }

/* ریسپانسیو */
@media (max-width: 476px) {
    .auth-card {
        margin: 20px;
        padding: 30px 20px;
    }
}
/* افکت شیشه‌ای (Glassmorphism) برای باکس‌ها */
.glass-panel {
    background: rgb(20 20 20 / 15%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* --- سایدبار --- */
.user-panel-sidebar {
    padding: 2rem;
    height: 100%;
    border: 1px dashed #333;
}

/* آواتار */
.user-avatar-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
}

.user-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--primary-neon);
    box-shadow: 0 0 20px rgba(157, 0, 255, 0.4);
    transition: all 0.3s ease;
}

    .user-avatar:hover {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(157, 0, 255, 0.6);
    }

.user-status {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 18px;
    height: 18px;
    background-color: #2ecc71;
    border: 2px solid var(--bg-panel);
    border-radius: 50%;
}

/* لینک‌های منو */
.user-panel-nav .nav-link {
    color: #a0a0a0;
    border-radius: 10px;
    padding: 0.8rem 1.2rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

    .user-panel-nav .nav-link i {
        width: 25px;
        color: var(--secondary-neon);
        transition: color 0.3s;
    }

    .user-panel-nav .nav-link:hover {
        background: rgba(157, 0, 255, 0.1);
        color: #fff;
        padding-right: 1.5rem; /* افکت حرکت به چپ */
        border-color: rgba(157, 0, 255, 0.2);
    }

    .user-panel-nav .nav-link.active {
        background: rgba(157, 0, 255, 0.1);
        color: #fff;
        padding-right: 1.5rem;
        border-color: rgba(157, 0, 255, 0.2);
    }

        .user-panel-nav .nav-link.active i {
            color: var(--primary-neon);
            text-shadow: 0 0 8px var(--primary-neon);
        }

/* --- بخش محتوا --- */
.user-panel-content {
    padding: 2rem;
    border: 1px dashed #333;
}

/* کارت‌های آماری */
.neon-card {
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

    .neon-card:hover {
        transform: translateY(-5px);
    }

/* کارت اصلی (بنفش) */
.card-primary {
    border-top: 2px solid var(--primary-neon);
    box-shadow: 0 4px 15px rgba(157, 0, 255, 0.1);
}

    .card-primary:hover {
        box-shadow: 0 8px 25px rgba(157, 0, 255, 0.3);
    }

/* کارت ثانویه (آبی فیروزه‌ای) */
.card-secondary {
    border-top: 2px solid var(--secondary-neon);
    box-shadow: 0 4px 15px rgba(0, 242, 234, 0.1);
}

    .card-secondary:hover {
        box-shadow: 0 8px 25px rgba(0, 242, 234, 0.3);
    }

.neon-number {
    font-weight: 700;
    font-size: 2rem;
    background: linear-gradient(45deg, #fff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-neon-primary {
    color: var(--primary-neon) !important;
    text-shadow: 0 0 10px rgba(157, 0, 255, 0.5);
}

.text-neon-secondary {
    color: var(--secondary-neon) !important;
    text-shadow: 0 0 10px rgb(222 0 242 / 50%);
    
}

/* بخش نمودار و لیست */
.dark-chart-box {
    background: rgb(20 20 20 / 15%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

    /* افکت درخشش روی نمودار */
    .dark-chart-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--primary-neon), transparent);
        opacity: 0.5;
    }

/* لیست فعالیت‌ها */
.activity-item {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.2s;
}

    .activity-item:hover {
        background: rgba(255,255,255,0.02);
    }

    .activity-item:last-child {
        border-bottom: none;
    }

/* --- ریسپانسیو --- */
@media (max-width: 991px) {
    .user-panel-sidebar {
        margin-bottom: 2rem;
    }

    .user-panel-nav .nav-link {
        justify-content: center;
    }
}
/* ─────────────────────────────────────────────────────────────────
   12. HERO BACKGROUND
   ───────────────────────────────────────────────────────────────── */
.user-hero-bg {
    border-radius: 16px;
    position: absolute;
    inset: 0;
    z-index: -10;
    overflow: hidden;
}

/* Grid Pattern */
.user-bg-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(168, 85, 247, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(168, 85, 247, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* Orbs */
.user-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.user-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary-600);
    top: -100px;
    right: 0;
    animation-delay: 0s;
}

.user-orb-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary-600);
    bottom: -10px;
    left: 0px;
    animation-delay: -7s;
}

.user-orb-3 {
    width: 400px;
    height: 400px;
    background: var(--accent-cyan);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
    opacity: 0.2;
}

.user-orb-4 {
    width: 400px;
    height: 400px;
    background: var(--accent-cyan);
    top: -10%;
    left: -10%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
    opacity: 0.2;
}

/* Noise Texture */
.user-bg-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

/* Particles */
.user-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.user-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-400);
    border-radius: 50%;
    opacity: 0;
    animation: particle-rise 10s ease-in-out infinite;
}

    .user-particle:nth-child(1) {
        left: 10%;
        animation-delay: 0s;
    }

    .user-particle:nth-child(2) {
        left: 20%;
        animation-delay: -1s;
    }

    .user-particle:nth-child(3) {
        left: 30%;
        animation-delay: -2s;
    }

    .user-particle:nth-child(4) {
        left: 45%;
        animation-delay: -3s;
    }

    .user-particle:nth-child(5) {
        left: 55%;
        animation-delay: -4s;
    }

    .user-particle:nth-child(6) {
        left: 65%;
        animation-delay: -5s;
    }

    .user-particle:nth-child(7) {
        left: 75%;
        animation-delay: -6s;
    }

    .user-particle:nth-child(8) {
        left: 85%;
        animation-delay: -7s;
    }

    .user-particle:nth-child(9) {
        left: 92%;
        animation-delay: -8s;
    }

    .user-particle:nth-child(10) {
        left: 5%;
        animation-delay: -9s;
    }

    .user-particle:nth-child(11) {
        left: 40%;
        animation-delay: -2.5s;
    }

    .user-particle:nth-child(12) {
        left: 80%;
        animation-delay: -6.5s;
    }

@keyframes user-particle-rise {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}
.user-panel-plan {
    background: rgb(157 0 255 / 15%);
    border: 1px dashed var(--primary-neon);
    backdrop-filter: blur(10px);
}
/* --- استایل‌های اختصاصی برای جدول‌های مدرن و نئونی --- */

/* 1. کانتینر جدول برای گرد کردن گوشه‌ها و اسکرول نرم */
.table-responsive {
    border-radius: 16px;
    overflow: hidden; /* گوشه‌های تیز رو می‌بره */
    border: 1px solid rgba(157, 0, 255, 0.3); /* حاشیه نئونی ملایم */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); /* سایه عمیق */
    background: rgba(30, 30, 30, 0.4); /* پس‌زمینه نیمه‌شفاف */
    backdrop-filter: blur(10px); /* افکت بلور */
    -webkit-backdrop-filter: blur(10px);
}

/* 2. استایل کلی جدول */
.table-neon {
    margin-bottom: 0;
    color: #e0e0e0;
    border-collapse: separate;
    border-spacing: 0;
}

    /* 3. هدر جدول (سرستون‌ها) */
    .table-neon thead th {
        background: rgba(157, 0, 255, 0.15); /* پس‌زمینه بنفش تیره */
        color: #ffffff;
        border-bottom: 2px solid rgba(157, 0, 255, 0.5);
        font-weight: 600;
        text-transform: uppercase;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
        padding: 1rem 1.5rem;
        white-space: nowrap;
    }

    /* 4. سلول‌های بدنه جدول */
    .table-neon tbody td {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 1rem 1.5rem;
        vertical-align: middle;
        transition: all 0.3s ease;
    }

    /* 5. افکت هاور (وقتی موس روی ردیف میره) */
    .table-neon tbody tr:hover td {
        background: rgba(157, 0, 255, 0.08); /* روشن شدن جزئی ردیف */
        color: #fff;
        box-shadow: inset 3px 0 0 var(--primary-neon); /* خط نئونی سمت راست */
    }

    /* 6. ردیف آخر جدول (معمولاً جمع کل) */
    .table-neon tbody tr:last-child td {
        border-bottom: none;
        background: rgba(0, 242, 234, 0.05); /* هاله آبی فیروزه‌ای ملایم */
    }

    /* 7. دکمه‌های داخل جدول (مثلاً حذف) */
    .table-neon .btn-action {
        width: 32px;
        height: 32px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.3s ease;
        border: 1px solid transparent;
    }

        .table-neon .btn-action:hover {
            transform: scale(1.1);
            background: rgba(255, 0, 0, 0.1);
            border-color: #ff4d4d;
            color: #ff4d4d;
            box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
        }

    /* 8. اینپوت‌های تغییر تعداد در جدول */
    .table-neon .input-group-sm .form-control {
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #fff;
        text-align: center;
        border-radius: 6px;
    }

        .table-neon .input-group-sm .form-control:focus {
            background: rgba(0, 0, 0, 0.5);
            border-color: var(--primary-neon);
            box-shadow: 0 0 8px rgba(157, 0, 255, 0.3);
            color: #fff;
        }

/* 9. آیکون محصولات */
.product-img {
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.avatar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
}

    .avatar-overlay:hover {
        opacity: 1;
    }
/* --- استایل کارت‌های علاقه‌مندی --- */

/* کانتینر کارت */
.product-wishlist-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

    .product-wishlist-card:hover {
        transform: translateY(-5px);
        border-color: var(--primary-neon);
        box-shadow: 0 10px 30px rgba(157, 0, 255, 0.2);
    }

/* دکمه انتقال به سبد خرید */
.btn-register {
    background: linear-gradient(90deg, #9d00ff, #7a00cc);
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s;
}

    .btn-register:hover {
        background: linear-gradient(90deg, #b026ff, #9d00ff);
        box-shadow: 0 0 15px rgba(157, 0, 255, 0.5);
        color: white;
    }

/* دکمه حذف */
.btn-outline-danger {
    border-color: rgba(255, 59, 48, 0.3);
    color: #ff3b30;
    transition: all 0.3s;
}

    .btn-outline-danger:hover {
        background: rgba(255, 59, 48, 0.1);
        border-color: #ff3b30;
        color: #ff3b30;
        box-shadow: 0 0 10px rgba(255, 59, 48, 0.3);
    }

/* افکت ناموجود */
.out-of-stock-overlay {
    backdrop-filter: blur(2px); /* تاریک کردن پس‌زمینه */
}
/* --- FAQ Section Styles (Neon Dark Theme) --- */

.lotus-faq-section {
    position: relative;
    background: var(--bg-darker, #0a0a0f);
    z-index: 1;
}

/* استایل آیتم‌های آکاردئون */
.lotus-accordion-item {
    background: rgba(20, 20, 25, 0.6); /* رنگ تیره شیشه‌ای */
    border: 1px solid rgba(157, 0, 255, 0.2); /* حاشیه بنفش کم‌رنگ */
    border-radius: 16px !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

    .lotus-accordion-item:hover {
        border-color: rgba(157, 0, 255, 0.6);
        box-shadow: 0 0 15px rgba(157, 0, 255, 0.1);
    }

/* استایل دکمه‌های آکاردئون */
.lotus-accordion-btn {
    background: transparent;
    color: #e0e0e0 !important;
    font-weight: 500;
    padding: 1.25rem 1.5rem;
    font-size: 1.1rem;
    border: none;
    width: 100%;
    text-align: right;
}

    .lotus-accordion-btn:not(.collapsed) {
        background: rgba(157, 0, 255, 0.1); /* پس‌زمینه هنگام باز شدن */
        color: #ffffff !important;
        box-shadow: none;
    }

/* آیکون‌های داخل دکمه */
.faq-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(157, 0, 255, 0.15);
    color: #9d00ff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.lotus-accordion-btn:not(.collapsed) .faq-icon-wrap {
    background: #9d00ff;
    color: #fff;
    box-shadow: 0 0 10px #9d00ff;
}

/* فلش تغییر وضعیت */
.accordion-button::after {
    margin-right: auto; /* جابجایی فلش به چپ (چون RTL است) */
    margin-left: 0;
    filter: invert(1); /* سفید کردن فلش */
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
    filter: invert(1);
}

/* استایل متن پاسخ‌ها */
.lotus-accordion-body {
    color: #b0b0b0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
}
