/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   KUWAL STUDIO â€” PREMIUM DESIGN SYSTEM
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

:root {
    /* Palette */
    --bg-primary: #050507;
    --bg-secondary: #0a0b10;
    --bg-card: rgba(14, 15, 22, 0.65);
    --bg-card-solid: #0e0f16;
    --bg-elevated: rgba(22, 23, 34, 0.7);

    --primary: #7c3aed;
    --primary-rgb: 124, 58, 237;
    --primary-glow: rgba(124, 58, 237, 0.45);
    --primary-light: #a78bfa;
    --primary-ultra-light: #ddd6fe;
    --secondary: #06b6d4;
    --secondary-rgb: 6, 182, 212;

    --text-main: #f1f5f9;
    --text-muted: #64748b;
    --text-soft: #94a3b8;

    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(124, 58, 237, 0.35);
    --border-strong: rgba(255, 255, 255, 0.12);

    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 40px;
    --space-2xl: 64px;
    --space-3xl: 96px;

    /* Shape */
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-pill: 999px;

    /* Shadow */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.45);
    --shadow-glow: 0 0 20px var(--primary-glow);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition: all 0.3s var(--ease-out);
    --transition-fast: all 0.2s var(--ease-out);
    --transition-slow: all 0.5s var(--ease-out);
}

/* â”€â”€â”€ RESET â”€â”€â”€ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    overflow-x: visible;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-main);
    line-height: 1.65;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ambient glow */
body::before {
    content: '';
    position: fixed;
    top: -40%;
    left: -30%;
    width: 160%;
    height: 160%;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(124, 58, 237, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(6, 182, 212, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* â”€â”€â”€ SCROLLBAR â”€â”€â”€ */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(124, 58, 237, 0.25);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* â”€â”€â”€ SELECTION â”€â”€â”€ */
::selection {
    background: rgba(124, 58, 237, 0.35);
    color: #fff;
}

/* â”€â”€â”€ TYPOGRAPHY â”€â”€â”€ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 0.75rem;
    color: #fff;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h3 {
    font-size: 1.35rem;
}

p {
    color: var(--text-soft);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* â”€â”€â”€ UTILITY â”€â”€â”€ */
.hidden {
    display: none !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-spacing {
    padding: 80px 0;
}

/* â”€â”€â”€ BUTTONS â”€â”€â”€ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    font-family: inherit;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: var(--transition-fast);
}

.btn:hover::after {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #6d28d9 100%);
    color: white;
    box-shadow: 0 4px 16px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--primary-glow);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-strong);
    color: var(--text-main);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: #fff;
    background: rgba(124, 58, 237, 0.08);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.82rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

/* â”€â”€â”€ CARDS â”€â”€â”€ */
.card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    transition: var(--transition);
    position: relative;
}

.card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HEADER / NAVIGATION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

header {
    padding: 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 7, 0.7);
    backdrop-filter: blur(24px) saturate(1.8);
    -webkit-backdrop-filter: blur(24px) saturate(1.8);
    z-index: -1;
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.3), transparent);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    position: relative;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.03em;
    z-index: 10;
}

.logo span {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 4px;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}

.nav-links a.active {
    color: #fff;
    background: rgba(124, 58, 237, 0.12);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

/* Auth buttons area */
.auth-buttons {
    display: flex;
    align-items: center;
    z-index: 10;
}

.lang-dropdown {
    position: relative;
    z-index: 50;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 8px 12px;
    height: 38px;
    border-radius: 10px;
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    outline: none;
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-hover);
}

.lang-toggle .flag-icon {
    width: 22px;
    height: auto;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.lang-toggle i {
    font-size: 0.7rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
    margin-left: 4px;
}

.lang-dropdown:hover .lang-toggle i {
    transform: rotate(180deg);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 180px;
    background: var(--bg-card-solid);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 8px;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
    backdrop-filter: blur(16px);
}

.lang-dropdown:hover .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--text-soft);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
    text-decoration: none;
}

.lang-item:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    transform: translateX(4px);
}

.lang-item.active {
    background: rgba(124, 58, 237, 0.15);
    color: var(--primary-light);
}

.lang-item .flag-icon {
    width: 20px;
    height: auto;
    border-radius: 3px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

footer {
    margin-top: auto;
    border-top: 1px solid var(--border);
    padding: 48px 0 28px;
    background: var(--bg-secondary);
    color: var(--text-muted);
    font-size: 0.88rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.35), transparent);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO SECTION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.hero {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
    z-index: -1;
    filter: blur(50px);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 30%, var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-soft);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* â”€â”€â”€ FEATURES GRID â”€â”€â”€ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 80px 0;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 32px;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.5), transparent);
    opacity: 0;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* â”€â”€â”€ STATS PANEL â”€â”€â”€ */
.stats-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: rgba(10, 11, 16, 0.85);
    backdrop-filter: blur(16px);
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stats-item {
    text-align: center;
}

.stats-item-bordered {
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PRODUCTS PAGE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 40px;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
}

.section-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.shop-page .products-grid {
    grid-template-columns: repeat(4, minmax(0, 320px));
    gap: 14px;
    margin-top: 18px;
    justify-content: center;
}

@media (max-width: 1100px) {
    .shop-page .products-grid {
        grid-template-columns: repeat(3, minmax(0, 320px));
    }
}

@media (max-width: 768px) {
    .shop-page .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* â”€â”€â”€ PRODUCT CARD BASE â”€â”€â”€ */
.product-card {
    --accent: var(--card-accent, var(--primary));
    --transition: all 0.45s var(--ease-out);
    transition: var(--transition);
    will-change: transform, border-color, box-shadow;
    position: relative;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 100%;
}

.product-card .btn {
    position: relative;
    z-index: 10;
}

.product-card:hover {
    border-color: var(--accent) !important;
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(var(--primary-rgb), 0.1);
    z-index: 20;
}

.product-card .product-image {
    position: relative;
    height: 220px;
    background: rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-card .product-price-badge {
    position: absolute;
    background: var(--accent);
    color: white;
    padding: 6px 14px;
    border-radius: var(--radius);
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    z-index: 5;
    transition: var(--transition-fast);
    pointer-events: none;
    letter-spacing: 0.02em;
}

/* Price Positions */
.product-card.price-top-right .product-price-badge {
    top: 15px !important;
    right: 15px !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
}

.product-card.price-top-left .product-price-badge {
    top: 15px !important;
    left: 15px !important;
    bottom: auto !important;
    right: auto !important;
    transform: none !important;
}

.product-card.price-top-center .product-price-badge {
    top: 15px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    bottom: auto !important;
    right: auto !important;
}

.product-card.price-bottom-right .product-price-badge {
    bottom: 15px !important;
    right: 15px !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
}

.product-card.price-bottom-left .product-price-badge {
    bottom: 15px !important;
    left: 15px !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;
}

.product-card.price-bottom-center .product-price-badge {
    bottom: 15px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: auto !important;
    right: auto !important;
}

.product-card.price-center-left .product-price-badge {
    top: 50% !important;
    left: 15px !important;
    transform: translateY(-50%) !important;
    bottom: auto !important;
    right: auto !important;
}

.product-card.price-center-right .product-price-badge {
    top: 50% !important;
    right: 15px !important;
    transform: translateY(-50%) !important;
    bottom: auto !important;
    left: auto !important;
}

.product-card.price-center .product-price-badge {
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    right: auto !important;
    bottom: auto !important;
}

.product-card.price-center:hover .product-price-badge {
    transform: translate(-50%, -50%) scale(1.1) !important;
}

.product-card .product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.product-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    transition: var(--transition-fast);
    letter-spacing: -0.01em;
}

.product-card:hover h3 {
    color: var(--accent);
}

.product-card .product-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* â”€â”€â”€ DESIGN VARIANTS â”€â”€â”€ */

/* 3. Featured */
.product-card.design-featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.08) 0%, var(--bg-card) 100%);
    padding: 28px;
}

.product-card.design-featured .product-image {
    height: 320px;
}

.product-card.design-featured h3 {
    font-size: 1.7rem;
    color: var(--accent);
}

/* 4. Overlay */
.product-card.design-overlay {
    padding: 0;
    overflow: hidden;
    height: 400px;
}

.product-card.design-overlay .product-image {
    height: 100%;
    margin-bottom: 0;
    border-radius: 0;
}

.product-card.design-overlay .product-info {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, transparent 60%);
    z-index: 5;
}

.product-card.design-overlay h3 {
    color: var(--accent);
    font-size: 1.5rem;
}

/* 5. Compact */
.product-card.design-compact {
    padding: 14px;
}

.product-card.design-compact .product-image {
    height: 140px;
    margin-bottom: 12px;
}

.product-card.design-compact h3 {
    font-size: 1.05rem;
}

.product-card.design-compact .product-description {
    font-size: 0.82rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

/* 6. Banner */
.product-card.design-banner {
    grid-column: 1 / -1;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    background: rgba(var(--primary-rgb), 0.03);
    padding: 36px 48px;
    border-left: 4px solid var(--accent);
}

.product-card.design-banner .product-image {
    width: 300px;
    height: 180px;
    margin-bottom: 0;
    border-radius: var(--radius);
}

.product-card.design-banner .product-info {
    flex: 1;
}

/* 7. Floating */
.product-card.design-floating {
    margin-top: 60px;
    padding: 110px 24px 28px;
    overflow: visible;
}

.product-card.design-floating .product-image {
    position: absolute;
    top: -50px;
    left: 20px;
    right: 20px;
    height: 180px;
    width: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 10;
    border-radius: var(--radius-lg);
}

/* 8. Split */
.product-card.design-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    overflow: hidden;
}

.product-card.design-split .product-image {
    border-radius: 0;
    height: 100%;
    margin-bottom: 0;
}

.product-card.design-split .product-info {
    padding: 28px;
    border-left: 1px solid var(--border);
}

/* 9. Image-Focus */
.product-card.design-image-focus {
    padding: 12px;
}

.product-card.design-image-focus .product-image {
    height: 360px;
    margin-bottom: 14px;
    border-radius: var(--radius);
}

.product-card.design-image-focus .product-info {
    text-align: center;
}

/* 10. Minimalist */
.product-card.design-minimalist {
    flex-direction: column-reverse;
    text-align: center;
    padding: 28px 20px;
}

.product-card.design-minimalist .product-image {
    height: 80px;
    width: 80px;
    margin: 16px auto 0;
    border-radius: 50%;
    border: 3px solid var(--accent);
}

/* 11. Skewed */
.product-card.design-skewed {
    transform: skewX(-3deg);
    padding: 24px;
}

.product-card.design-skewed>* {
    transform: skewX(3deg);
}

.product-card.design-skewed .product-image {
    border-radius: 0;
    border-left: 4px solid var(--accent);
}

/* 12. Double Border */
.product-card.design-double-border {
    padding: 12px;
    border: 2px solid var(--accent);
}

.product-card.design-double-border::after {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: inherit;
    pointer-events: none;
}

/* 13. Neon Glow */
.product-card.design-neon-glow {
    border-color: rgba(var(--primary-rgb), 0.25);
    background: rgba(0, 0, 0, 0.4);
}

.product-card.design-neon-glow:hover {
    box-shadow: 0 0 30px var(--accent), inset 0 0 8px var(--accent);
    border-color: #fff;
}

/* 14. Glass Card */
.product-card.design-glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-card.design-glass-card:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* 15. Retro */
.product-card.design-retro-style {
    border-radius: 0;
    border: 4px solid #fff;
    background: #000;
    box-shadow: 8px 8px 0 var(--accent);
}

.product-card.design-retro-style .btn {
    border-radius: 0;
    background: var(--accent);
    border: none;
}

/* Responsive product cards */
@media (max-width: 992px) {

    .product-card.design-featured,
    .product-card.design-banner,
    .product-card.design-list {
        grid-column: span 1;
        flex-direction: column;
        padding: 24px;
    }

    .product-card.design-banner .product-image,
    .product-card.design-list .product-image {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .product-card.design-split {
        grid-template-columns: 1fr;
    }

    .product-card.design-split .product-info {
        border-left: none;
        border-top: 1px solid var(--border);
    }
}

/* 16. Token Package */
.product-card.design-token-package {
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.35);
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.12) 0%, rgba(0, 0, 0, 0.6) 100%);
    padding: 36px 24px;
    z-index: 1;
}

.product-card.design-token-package::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 45%, rgba(255, 215, 0, 0.25) 50%, transparent 55%);
    background-size: 250% 250%;
    transition: 0.8s;
    z-index: -1;
    pointer-events: none;
}

.product-card.design-token-package:hover::before {
    background-position: 100% 100%;
}

.product-card.design-token-package::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(45deg, #ffd700, #ffae00, #ffd700);
    z-index: -2;
    opacity: 0;
    transition: 0.5s;
    filter: blur(15px);
}

.product-card.design-token-package:hover::after {
    opacity: 0.4;
}

.product-card.design-token-package .product-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    padding: 15px;
    border: 2px solid #ffd700;
    box-shadow: 0 0 24px rgba(255, 215, 0, 0.25);
    animation: goldFloat 4s ease-in-out infinite;
    overflow: visible;
    position: static !important;
}

.product-card.design-token-package .product-image img {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
    object-fit: contain;
}

@keyframes goldFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.product-card.design-token-package h3 {
    color: #ffd700;
    font-size: 1.5rem;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    margin-bottom: 12px;
}

.product-card.design-token-package .product-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
}

.product-card.design-token-package .btn-primary {
    background: linear-gradient(45deg, #ffd700, #ffae00);
    color: #000;
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.35);
}

.product-card.design-token-package .btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(255, 215, 0, 0.5);
}

.product-card.design-token-package .product-price-badge {
    background: #000;
    color: #ffd700;
    border: 1px solid #ffd700;
    z-index: 10;
}

/* 17. Gradient Border */
.product-card.design-gradient-border {
    border: none;
    background: #0d0d12;
    padding: 2px;
}

.product-card.design-gradient-border::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(45deg, var(--accent), #ff0080, #7928ca, var(--accent));
    background-size: 300% 300%;
    animation: borderGradient 4s linear infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

@keyframes borderGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* 18. Brutalism */
.product-card.design-brutalism {
    border: 4px solid #fff;
    border-radius: 0;
    background: #000;
    box-shadow: 10px 10px 0 var(--accent);
}

.product-card.design-brutalism:hover {
    transform: translate(-4px, -4px);
    box-shadow: 14px 14px 0 var(--accent);
}

/* 19. Cyberpunk */
.product-card.design-cyberpunk {
    border-radius: 0;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
    border: 1px solid var(--accent);
    background: rgba(0, 0, 0, 0.8);
}

.product-card.design-cyberpunk::after {
    content: "SYSTEM_ACCESS";
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 0.55rem;
    color: var(--accent);
    font-family: monospace;
}

/* 20. Minimalist V2 */
.product-card.design-minimalist-v2 {
    border: none;
    background: transparent;
    padding: 0;
}

.product-card.design-minimalist-v2:hover {
    transform: scale(1.02);
    box-shadow: none;
}

.product-card.design-minimalist-v2 .product-image {
    height: 240px;
    border-radius: var(--radius-xl);
    background: #1a1a24;
}

/* 21. Stacked */
.product-card.design-cards-stack {
    overflow: visible;
}

.product-card.design-cards-stack::before,
.product-card.design-cards-stack::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: inherit;
    z-index: -1;
}

.product-card.design-cards-stack::before {
    transform: rotate(3deg);
}

.product-card.design-cards-stack::after {
    transform: rotate(-3deg);
}

.product-card.design-cards-stack:hover::before {
    transform: rotate(6deg);
}

.product-card.design-cards-stack:hover::after {
    transform: rotate(-6deg);
}

/* 22. 3D Parallax */
.product-card.design-3d-parallax {
    perspective: 1000px;
}

.product-card.design-3d-parallax:hover {
    transform: rotateX(8deg) rotateY(-8deg) translateY(-6px);
}

/* 23. Border Reveal */
.product-card.design-border-reveal {
    border: 1px solid transparent;
    padding: 20px;
}

.product-card.design-border-reveal::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid var(--accent);
    clip-path: inset(100% 0 0 0);
    transition: 0.6s ease;
    border-radius: inherit;
}

.product-card.design-border-reveal:hover::before {
    clip-path: inset(0 0 0 0);
}

/* 24. Image Full Hover */
.product-card.design-image-full-hover {
    height: 400px;
}

.product-card.design-image-full-hover .product-image {
    height: 100%;
}

.product-card.design-image-full-hover .product-info {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    padding: 24px;
}

.product-card.design-image-full-hover:hover .product-info {
    bottom: 0;
}

/* 25. Glass List */
.product-card.design-glass-list {
    grid-column: 1 / -1;
    flex-direction: row;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
}

.product-card.design-glass-list .product-image {
    width: 200px;
    height: 120px;
    margin-right: 24px;
}

/* 26. Morphing */
.product-card.design-morphing .product-image {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morphing 6s infinite alternate;
}

@keyframes morphing {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    100% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SUPPORT PAGE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.support-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.support-header h1 {
    font-size: 2rem;
    margin: 0;
}

/* Status Badges */
.badge {
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.badge-open {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-answered {
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary);
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.badge-closed {
    background: rgba(156, 163, 175, 0.1);
    color: var(--text-muted);
    border: 1px solid rgba(156, 163, 175, 0.2);
}

/* Chat Interface */
.chat-container {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl);
    display: flex;
    flex-direction: column;
    height: 75vh;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: radial-gradient(circle at 50% 10%, rgba(124, 58, 237, 0.03) 0%, transparent 60%);
}

.chat-bubble {
    max-width: 75%;
    padding: 14px 20px;
    border-radius: 18px;
    font-size: 0.93rem;
    line-height: 1.6;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.chat-bubble.me {
    align-self: flex-end;
    background: linear-gradient(135deg, var(--primary), #6d28d9);
    color: white;
    border-bottom-right-radius: 4px;
}

.chat-bubble.other {
    align-self: flex-start;
    background: var(--bg-elevated);
    color: var(--text-main);
    border: 1px solid var(--border);
    border-bottom-left-radius: 4px;
}

.chat-meta {
    font-size: 0.72rem;
    opacity: 0.6;
    margin-top: 6px;
    display: block;
    text-align: right;
}

.chat-input-area {
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border);
}

.chat-input-area form {
    display: flex;
    gap: 12px;
}

.chat-input {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 18px;
    color: white;
    font-family: inherit;
}

.chat-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}

/* â”€â”€â”€ ADMIN LAYOUT (in main CSS) â”€â”€â”€ */
.admin-layout {
    display: flex;
    height: calc(100vh - 80px);
    overflow: hidden;
}

.admin-sidebar {
    width: 250px;
    background: var(--bg-card-solid);
    border-right: 1px solid var(--border);
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all 0.4s var(--ease-out);
    z-index: 999;
}

.admin-sidebar h3 {
    margin-bottom: 24px;
    color: var(--primary);
    font-size: 1.05rem;
    padding-left: 10px;
}

.admin-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.admin-nav a {
    padding: 11px 14px;
    border-radius: var(--radius);
    color: var(--text-muted);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.admin-nav a i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.admin-nav a:hover,
.admin-nav a.active {
    background: rgba(124, 58, 237, 0.08);
    color: #fff;
}

.admin-nav a.active {
    border-left: 3px solid var(--primary);
    padding-left: 11px;
}

.admin-content {
    flex: 1;
    padding: 36px;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.01);
}

/* Responsive Table */
.responsive-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    text-align: left;
}

.responsive-table thead {
    background: rgba(255, 255, 255, 0.02);
}

.responsive-table th {
    padding: 16px 20px;
    font-size: 0.75rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    border-bottom: 1px solid var(--border);
}

.responsive-table td {
    padding: 14px 20px;
    font-size: 0.93rem;
    color: var(--text-main);
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.responsive-table tr:last-child td {
    border-bottom: none;
}

.responsive-table tr:hover {
    background: rgba(255, 255, 255, 0.015);
}

/* Mobile Table */
@media (max-width: 768px) {
    .responsive-table thead {
        display: none;
    }

    .responsive-table,
    .responsive-table tbody,
    .responsive-table tr,
    .responsive-table td {
        display: block;
        width: 100%;
    }

    .responsive-table tr {
        margin-bottom: 16px;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        overflow: hidden;
    }

    .responsive-table td {
        text-align: right;
        padding: 12px 15px;
        padding-left: 45%;
        position: relative;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .responsive-table td:last-child {
        border-bottom: none;
        background: rgba(255, 255, 255, 0.02);
        padding-left: 20px;
        text-align: center;
    }

    .responsive-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: calc(45% - 20px);
        white-space: nowrap;
        text-align: left;
        font-weight: 700;
        color: var(--text-muted);
        font-size: 0.72rem;
        text-transform: uppercase;
    }
}

/* Admin mobile toggle */
.admin-mobile-toggle {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 6px 20px var(--primary-glow);
    cursor: pointer;
    z-index: 1001;
}

.admin-mobile-toggle:active {
    transform: scale(0.92);
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 998;
}

.sidebar-overlay.active {
    display: block;
}

@media (max-width: 992px) {
    .admin-sidebar {
        position: fixed;
        left: -100%;
        top: 0;
        height: 100vh;
        background: #0a0a0b;
        backdrop-filter: blur(15px);
        box-shadow: 16px 0 32px rgba(0, 0, 0, 0.5);
    }

    .admin-sidebar.active {
        left: 0;
    }

    .admin-mobile-toggle {
        display: flex;
    }

    .admin-content {
        padding: 20px;
    }
}

/* Admin Modal Helpers */
.admin-modal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.admin-modal-column {
    background: rgba(255, 255, 255, 0.02);
    padding: 28px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.admin-modal-section-title {
    font-size: 0.8rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    margin: 0;
}

/* Support Ticket View */
.support-ticket-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 24px;
    height: calc(100vh - 160px);
    align-items: stretch;
}

.support-chat-card {
    display: flex;
    flex-direction: column;
    padding: 0 !important;
    overflow: hidden;
    height: 100%;
}

.support-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.support-messages-area {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgba(0, 0, 0, 0.12);
}

.message-wrapper {
    display: flex;
    flex-direction: column;
    max-width: 85%;
}

.msg-me {
    align-self: flex-end;
    align-items: flex-end;
}

.msg-other {
    align-self: flex-start;
    align-items: flex-start;
}

.message-bubble {
    padding: 14px 20px;
    border-radius: 18px;
    font-size: 0.93rem;
    line-height: 1.55;
    box-shadow: var(--shadow-sm);
}

.msg-me .message-bubble {
    background: var(--primary);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.msg-other .message-bubble {
    background: var(--bg-card);
    color: var(--text-main);
    border: 1px solid var(--border);
    border-bottom-left-radius: 4px;
}

.message-meta {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 6px;
    font-weight: 500;
}

.support-reply-area {
    padding: 20px 24px;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
}

.support-sidebar-info {
    height: 100%;
    padding: 0 !important;
    overflow-y: auto;
}

@media (max-width: 992px) {
    .support-ticket-container {
        grid-template-columns: 1fr;
        height: auto;
        min-height: calc(100vh - 160px);
    }

    .support-chat-card {
        height: 600px;
    }

    .support-sidebar-info {
        height: auto;
    }

    .admin-modal-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .support-chat-card {
        height: 500px;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MOBILE RESPONSIVENESS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.mobile-toggle {
    display: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: #fff;
    z-index: 1001;
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .nav-wrapper {
        position: relative;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-container {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        transform: translateX(100%);
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: rgba(5, 5, 7, 0.97);
        backdrop-filter: blur(28px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 36px;
        transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.25s;
        z-index: 1000;
        visibility: hidden;
        pointer-events: none;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-container.active {
        transform: translateX(0);
        visibility: visible;
        pointer-events: all;
    }

    .nav-links {
        position: static;
        transform: none;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 12px 24px;
    }

    .auth-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 250px;
        gap: 14px;
    }

    .auth-buttons .lang-switcher,
    .auth-buttons .lang-select-wrap {
        width: 100%;
    }

    .auth-buttons .btn {
        width: 100%;
        margin-left: 0 !important;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .stats-panel {
        grid-template-columns: 1fr;
        padding: 20px;
        margin-top: 20px;
    }

    .stats-item-bordered {
        border-left: none;
        border-right: none;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        padding: 20px 0;
        margin: 16px 0;
    }

    .features-grid,
    .products-grid,
    .tokens-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .container {
        padding: 0 16px;
    }

    .dashboard-header-inner {
        flex-direction: column !important;
        text-align: center;
    }

    .dashboard-header-inner>div:last-child {
        justify-content: center;
        width: 100%;
    }

    .my-products-grid {
        grid-template-columns: 1fr !important;
    }

    .billing-form-grid {
        grid-template-columns: 1fr !important;
    }

    .my-product-layout {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .product-header-flex {
        flex-direction: column !important;
        text-align: center;
        gap: 20px !important;
    }

    .resources-grid {
        grid-template-columns: 1fr !important;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MODALS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.modal {
    display: flex;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal.hidden {
    opacity: 0;
    pointer-events: none;
    display: none;
}

.modal-content {
    background-color: var(--bg-card-solid);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    width: 90%;
    max-width: 600px;
    padding: 28px;
    position: relative;
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s var(--ease-spring);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(20px) scale(0.95);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.modal-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--text-main);
}

.close-modal {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.4rem;
    cursor: pointer;
    transition: var(--transition-fast);
    line-height: 1;
    padding: 4px 6px;
    border-radius: var(--radius-sm);
}

.close-modal:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
}

.modal-overlay .modal-content {
    transform: scale(0.9) translateY(24px);
    transition: 0.3s var(--ease-spring);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ANIMATIONS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.5);
    }

    100% {
        box-shadow: 0 0 0 12px rgba(124, 58, 237, 0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.animate-fade-in {
    animation: fadeInUp 0.5s var(--ease-out) both;
}

.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}




.mobile-toggle.active {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 1100;
}

body.nav-active .support-widget {
    display: none !important;
}
/* Profile Area Enhancements */
.profile-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 14px 6px 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.profile-wrapper:hover {
    background: rgba(124, 58, 237, 0.08);
    border-color: rgba(124, 58, 237, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(124, 58, 237, 0.3);
}

.profile-avatar {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), #6d28d9);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.profile-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.profile-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.profile-wrapper:hover .profile-text {
    color: white;
}

@media (max-width: 480px) {
    .profile-wrapper {
        padding: 6px 12px 6px 8px;
        gap: 8px;
        border-radius: 12px;
    }
}
