/* ============================================
   ANASDRIVE - PREMIUM FIVEM STORE
   Style Sheet v1.0
   ============================================ */


/* RESET & BASE */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary:        #6c63ff;
    --primary-dark:   #5a52d5;
    --primary-light:  #8b85ff;
    --primary-glow:   rgba(108, 99, 255, 0.3);
    --secondary:      #ff6584;
    --accent:         #43e97b;
    --warning:        #ffc107;
    --bg-primary:     #0a0a0f;
    --bg-secondary:   #0d0d18;
    --bg-card:        #111120;
    --bg-card-hover:  #16162a;
    --border:         rgba(108, 99, 255, 0.12);
    --border-hover:   rgba(108, 99, 255, 0.4);
    --text-primary:   #ffffff;
    --text-secondary: #9898b8;
    --text-muted:     #5c5c7a;
    --radius-sm:      8px;
    --radius-md:      12px;
    --radius-lg:      20px;
    --radius-xl:      28px;
    --transition:     all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-glow:    0 0 40px rgba(108, 99, 255, 0.2);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* SELECTION */
::selection { background: rgba(108,99,255,0.3); color: white; }


/* ============================================
   BACKGROUND
   ============================================ */
.bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(108, 99, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108, 99, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.bg-orbs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
    animation: orbFloat 10s ease-in-out infinite;
}

.orb-1 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, #6c63ff 0%, transparent 70%);
    top: -300px; left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #ff6584 0%, transparent 70%);
    bottom: -200px; right: -150px;
    animation-delay: 4s;
}

.orb-3 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, #43e97b 0%, transparent 70%);
    top: 40%; left: 55%;
    animation-delay: 7s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(30px, -40px) scale(1.05); }
    66%       { transform: translate(-20px, 20px) scale(0.95); }
}

/* ============================================
   NOTICE BAR
   ============================================ */
.notice-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1100;
    background: linear-gradient(90deg, var(--primary) 0%, #9d4edd 50%, var(--secondary) 100%);
    background-size: 200% 100%;
    animation: gradientShift 4s linear infinite;
    text-align: center;
    padding: 9px 3rem;
    font-size: 0.83rem;
    font-weight: 600;
    color: white;
}

@keyframes gradientShift {
    0%   { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.notice-bar a {
    color: white;
    font-weight: 800;
    text-decoration: underline;
    margin-left: 8px;
}

.notice-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 22px; height: 22px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.notice-close:hover { background: rgba(255,255,255,0.35); }

/* ============================================
   NAVBAR
   ============================================ */
nav {
    position: fixed;
    top: 37px; left: 0; right: 0;
    z-index: 1000;
    padding: 0 2.5rem;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 10, 15, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

nav.scrolled {
    top: 0 !important;
    background: rgba(10, 10, 15, 0.97);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom-color: rgba(108, 99, 255, 0.2);
}

/* LOGO */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 0 20px var(--primary-glow);
    transition: var(--transition);
}

.nav-logo:hover .nav-logo-icon {
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 0 0 30px var(--primary-glow);
}

.nav-logo-text {
    font-size: 1.35rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.88rem;
    padding: 7px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--text-primary);
    background: rgba(108, 99, 255, 0.08);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-shrink: 0;
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.hamburger:hover { background: rgba(108,99,255,0.1); }

.hamburger span {
    width: 24px; height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: var(--transition);
}

.btn:hover::after { background: rgba(255,255,255,0.06); }

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 99, 255, 0.5);
}

.btn-primary:active { transform: translateY(0); }

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-hover);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: rgba(108, 99, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-large {
    padding: 15px 36px;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 2rem 80px;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(108, 99, 255, 0.5);
    animation: particleRise linear infinite;
}

@keyframes particleRise {
    0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 0.5; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

.hero-content {
    max-width: 860px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(108, 99, 255, 0.1);
    border: 1px solid rgba(108, 99, 255, 0.25);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.82rem;
    color: var(--primary-light);
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 1.8rem;
    animation: fadeInDown 0.7s ease both;
}

.dot {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 8px var(--accent); }
    50%       { transform: scale(1.3); box-shadow: 0 0 16px var(--accent); }
}

.hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 1.4rem;
    letter-spacing: -1px;
    animation: fadeInUp 0.7s ease 0.15s both;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: gradientText 4s linear infinite;
}

@keyframes gradientText {
    0%   { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto 2.2rem;
    line-height: 1.8;
    animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease 0.45s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-top: 4rem;
    padding: 2rem 2.5rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.7s ease 0.6s both;
    flex-wrap: wrap;
}

.stat-item { text-align: center; padding: 0.5rem 2.5rem; }

.stat-number {
    font-size: 1.9rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
    flex-shrink: 0;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 1s both;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50%       { transform: scaleY(0.5); opacity: 0.5; }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    position: relative;
    z-index: 1;
    padding: 90px 2rem;
}

.section-alt {
    background: rgba(255,255,255,0.015);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    background: rgba(108, 99, 255, 0.1);
    border: 1px solid rgba(108, 99, 255, 0.25);
    border-radius: 50px;
    padding: 5px 16px;
    font-size: 0.75rem;
    color: var(--primary-light);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}

.section-header h2 {
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 0.8rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto;
}

/* ============================================
   CATEGORIES
   ============================================ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
    gap: 1rem;
}

.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: var(--transition);
}

.category-card:hover {
    border-color: var(--primary);
    background: var(--bg-card-hover);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(108, 99, 255, 0.12);
}

.category-card:hover::before { transform: scaleX(1); }

.category-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.category-card:hover .category-icon { transform: scale(1.1) rotate(-5deg); }

.category-name {
    font-weight: 700;
    font-size: 0.92rem;
    margin-bottom: 4px;
}

.category-count {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.category-arrow {
    color: var(--primary);
    font-size: 0.8rem;
    opacity: 0;
    transform: translateX(-5px);
    transition: var(--transition);
}

.category-card:hover .category-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   EXTERNAL BUY BUTTON
   ============================================ */
.btn-buy-external {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #6c63ff, #5a52d5);
    border: none;
    color: white !important;
    padding: 9px 18px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(108,99,255,0.35);
}

.btn-buy-external:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 18px rgba(108,99,255,0.5);
    color: white !important;
}

/* Product image zoom on hover */
.product-card:hover .product-image img {
    transform: scale(1.08);
}

/* Product image container */
.product-image {
    overflow: hidden;
}

/* ============================================
   FILTER TABS
   ============================================ */
.filter-tabs {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 9px 22px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.filter-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(108,99,255,0.05);
}

.filter-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.35);
}

/* ============================================
   PRODUCTS GRID
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    border-color: rgba(108, 99, 255, 0.35);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(108, 99, 255, 0.12);
}

.product-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.3s ease;

}

.product-image-bg {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    transition: var(--transition);
}

.product-card:hover .product-image-bg { transform: scale(1.05); }

.product-badge {
    position: absolute;
    top: 12px; left: 12px;
    padding: 4px 11px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    z-index: 2;
}

.badge-hot  { background: rgba(255,101,132,0.2); color: #ff6584; border: 1px solid rgba(255,101,132,0.4); }
.badge-new  { background: rgba(67,233,123,0.2);  color: #43e97b; border: 1px solid rgba(67,233,123,0.4); }
.badge-sale { background: rgba(255,193,7,0.2);   color: #ffc107; border: 1px solid rgba(255,193,7,0.4); }

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,15,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 3;
}

.product-card:hover .product-overlay { opacity: 1; }

.product-info { padding: 1.4rem; }

.product-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.product-category {
    font-size: 0.72rem;
    color: var(--primary-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.product-stars {
    font-size: 0.75rem;
    color: var(--warning);
}

.product-stars span { color: var(--text-muted); }

.product-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 7px;
    line-height: 1.3;
}

.product-desc {
    font-size: 0.83rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price { display: flex; flex-direction: column; gap: 2px; }

.price-current {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-light);
}

.price-old {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-save {
    font-size: 0.7rem;
    color: var(--accent);
    font-weight: 700;
}

.btn-buy {
    background: rgba(108, 99, 255, 0.12);
    border: 1px solid rgba(108, 99, 255, 0.3);
    color: var(--primary-light);
    padding: 9px 18px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.btn-buy:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 5px 15px var(--primary-glow);
    transform: scale(1.04);
}

.view-all {
    text-align: center;
    margin-top: 3rem;
}

/* ============================================
   FEATURES
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.4rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(108,99,255,0.03), transparent);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: rgba(108,99,255,0.3);
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(108,99,255,0.1);
}

.feature-card:hover::after { opacity: 1; }

.feature-icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon { transform: scale(1.1); }

.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ============================================
   CLOTHING PACKS - PRICING STYLES
   ============================================ */

.pricing-badge {
    display: inline-block;
    background: rgba(108,99,255,0.12);
    border: 1px solid rgba(108,99,255,0.2);
    border-radius: 50px;
    padding: 4px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 0.8rem;
}

.pricing-card.featured .pricing-badge {
    background: rgba(255,193,7,0.12);
    border-color: rgba(255,193,7,0.25);
    color: var(--warning);
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
    padding: 13px;
    font-weight: 700;
    font-size: 0.9rem;
}

.pricing-card .btn i {
    margin-right: 6px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }
    
    .pricing-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 1.5rem;
    }
}
/* ============================================
   PRICING
   ============================================ */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 2.5rem;
}

.toggle-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.toggle-label.active { color: var(--text-primary); }

.save-badge {
    background: rgba(67,233,123,0.15);
    color: var(--accent);
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 26px;
    cursor: pointer;
}

.toggle-switch input { opacity: 0; width: 0; height: 0; }

.toggle-slider {
    position: absolute;
    inset: 0;
    background: rgba(108,99,255,0.2);
    border: 1px solid var(--border-hover);
    border-radius: 50px;
    transition: var(--transition);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    height: 18px; width: 18px;
    left: 3px; top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: 0 0 10px var(--primary-glow);
}

.toggle-switch input:checked + .toggle-slider { background: rgba(108,99,255,0.3); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateY(-50%) translateX(24px); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 920px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    border-color: rgba(108,99,255,0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(108,99,255,0.1);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(160deg, rgba(108,99,255,0.07) 0%, var(--bg-card) 60%);
    box-shadow: 0 0 50px rgba(108,99,255,0.12);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.pricing-popular {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.pricing-icon { font-size: 2.2rem; margin-bottom: 0.5rem; }

.pricing-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin: 1rem 0;
}

.gradient-price {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-price sup {
    font-size: 1.4rem;
    vertical-align: super;
    margin-right: 2px;
}

.pricing-period {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin: 1.8rem 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 0.87rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child { border-bottom: none; }

.check { color: var(--accent); font-size: 0.8rem; }
.cross { color: var(--text-muted); font-size: 0.8rem; }

.pricing-card .btn {
    width: 100%;
    justify-content: center;
    padding: 13px;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews-summary {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem 2.5rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.review-score { text-align: center; }

.score-big {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.score-stars { color: var(--warning); font-size: 1.2rem; margin: 4px 0; }
.score-count { font-size: 0.8rem; color: var(--text-muted); }

.score-bars { flex: 1; min-width: 200px; }

.score-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.bar {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.05);
    border-radius: 3px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.4rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 12px; right: 20px;
    font-size: 4rem;
    color: rgba(108,99,255,0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    border-color: rgba(108,99,255,0.25);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(108,99,255,0.08);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    flex-shrink: 0;
}

.testimonial-info { flex: 1; }
.testimonial-info h4 { font-size: 0.92rem; font-weight: 700; }
.testimonial-info span { font-size: 0.78rem; color: var(--text-muted); }

.testimonial-verified {
    font-size: 0.72rem;
    color: var(--accent);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.testimonial-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-stars { color: var(--warning); font-size: 0.85rem; margin-top: 0.9rem; }
.testimonial-date { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }

/* ============================================
   DISCORD
   ============================================ */
.discord-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(88,101,242,0.08), var(--bg-card));
    border: 1px solid rgba(88,101,242,0.3);
    border-radius: var(--radius-xl);
    padding: 2.5rem 3rem;
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: wrap;
    transition: var(--transition);
}

.discord-box:hover {
    border-color: rgba(88,101,242,0.5);
    box-shadow: 0 0 40px rgba(88,101,242,0.1);
}

.discord-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.discord-logo {
    width: 65px; height: 65px;
    background: #5865F2;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 25px rgba(88,101,242,0.4);
    flex-shrink: 0;
}

.discord-info h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 6px; }

.discord-stats {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 0.7rem;
}

.online-dot {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent);
    animation: pulse 2s ease-in-out infinite;
}

.discord-tags {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.discord-tags span {
    background: rgba(88,101,242,0.1);
    border: 1px solid rgba(88,101,242,0.2);
    color: var(--text-secondary);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.discord-join-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #5865F2;
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    flex-shrink: 0;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(88,101,242,0.35);
}

.discord-join-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(88,101,242,0.5);
    background: #4752c4;
}

/* ============================================
   CTA
   ============================================ */
.cta-section { padding: 80px 2rem; }

.cta-box {
    background: var(--bg-card);
    border: 1px solid rgba(108,99,255,0.3);
    border-radius: var(--radius-xl);
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: -50%; left: 50%;
    transform: translateX(-50%);
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(108,99,255,0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: ctaGlow 4s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50%       { transform: translateX(-50%) scale(1.2); }
}

.cta-content { position: relative; z-index: 1; }

.cta-badge {
    display: inline-block;
    background: rgba(255,193,7,0.1);
    border: 1px solid rgba(255,193,7,0.3);
    color: var(--warning);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.code-highlight {
    color: var(--primary-light);
    background: rgba(108,99,255,0.1);
    border: 1px solid rgba(108,99,255,0.25);
    padding: 2px 10px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
}

.footer-top {
    padding: 70px 2rem 50px;
    background: var(--bg-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand .nav-logo { margin-bottom: 0; }

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.87rem;
    line-height: 1.8;
    margin: 1.2rem 0 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.social-link {
    width: 38px; height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(108,99,255,0.08);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.88rem;
}

.social-link:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--primary-glow);
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.3rem;
    color: var(--text-primary);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col ul a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.87rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul a::before {
    content: '';
    width: 4px; height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.footer-col ul a:hover::before { opacity: 1; }

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.83rem;
}

.footer-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-badge {
    background: rgba(108,99,255,0.08);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ============================================
   CART SIDEBAR
   ============================================ */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1200;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.cart-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.cart-sidebar {
    position: fixed;
    top: 0; right: 0;
    width: 360px;
    height: 100vh;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border);
    z-index: 1300;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open { transform: translateX(0); }

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.cart-header h3 {
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-header button {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    width: 34px; height: 34px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.cart-header button:hover {
    background: rgba(255,101,132,0.1);
    border-color: var(--secondary);
    color: var(--secondary);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.2rem;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    gap: 0.8rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 0.7rem;
    transition: var(--transition);
}

.cart-item:hover { border-color: rgba(108,99,255,0.2); }

.cart-item-icon {
    width: 44px; height: 44px;
    background: rgba(108,99,255,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.cart-item-info { flex: 1; }
.cart-item-info strong { display: block; font-size: 0.87rem; margin-bottom: 2px; }
.cart-item-info span { font-size: 0.78rem; color: var(--primary-light); font-weight: 600; }

.cart-item-remove {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 5px;
    transition: var(--transition);
    border-radius: 6px;
    font-size: 0.85rem;
}

.cart-item-remove:hover { color: var(--secondary); background: rgba(255,101,132,0.1); }

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.cart-total strong {
    font-size: 1.2rem;
    color: var(--primary-light);
}

/* CART FLOAT BUTTON */
.cart-float {
    position: fixed;
    bottom: 90px; right: 25px;
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    z-index: 990;
    box-shadow: 0 8px 25px var(--primary-glow);
    transition: var(--transition);
    font-size: 1.1rem;
}

.cart-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px var(--primary-glow);
}

.cart-count {
    position: absolute;
    top: -5px; right: -5px;
    background: var(--secondary);
    color: white;
    width: 20px; height: 20px;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: cartBounce 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes cartBounce {
    0%   { transform: scale(0); }
    100% { transform: scale(1); }
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 25px; right: 25px;
    width: 44px; height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-sm);
    color: var(--primary-light);
    cursor: pointer;
    z-index: 989;
    opacity: 0;
    transform: translateY(15px);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px var(--primary-glow);
}

/* ============================================
   PAGE PREVIEW WIDGET
   ============================================ */
.page-preview-widget {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
    transition: var(--transition);
}

.page-preview-widget:hover {
    border-color: var(--border-hover);
    box-shadow: 0 15px 35px rgba(108,99,255,0.08);
}

.page-selector {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.page-select {
    flex: 1;
    min-width: 200px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: var(--transition);
    cursor: pointer;
}

.page-select:focus {
    border-color: var(--primary);
    background: rgba(108,99,255,0.04);
}

.page-select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

.page-preview-content {
    min-height: 150px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(108,99,255,0.06);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: var(--transition);
}

.preview-placeholder {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
}

.preview-placeholder .preview-icon {
    font-size: 3rem;
    margin-bottom: 0.8rem;
}

.preview-placeholder h3 {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.preview-placeholder p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.preview-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    color: var(--text-muted);
}

.preview-loading .spinner {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.preview-error {
    text-align: center;
    padding: 2rem;
    color: var(--danger);
}

.preview-error .error-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.preview-content {
    animation: fadeInUp 0.4s ease;
}

.preview-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.preview-content .preview-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.preview-content .preview-body {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
    max-height: 200px;
    overflow: hidden;
    position: relative;
}

.preview-content .preview-body::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--bg-card));
}

.preview-content .preview-body p {
    margin-bottom: 0.8rem;
}

.preview-content .preview-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 0.5rem 0;
}

.preview-seo {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.preview-seo .seo-tag {
    background: rgba(108,99,255,0.08);
    border: 1px solid rgba(108,99,255,0.12);
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 0.72rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.preview-seo .seo-tag.active {
    color: var(--accent);
    border-color: rgba(67,233,123,0.3);
}

.preview-seo .seo-tag .seo-label {
    font-weight: 600;
    color: var(--text-secondary);
}

.preview-actions {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

/* Preview responsive */
@media (max-width: 768px) {
    .page-selector {
        flex-direction: column;
        align-items: stretch;
    }
    .page-selector .btn {
        justify-content: center;
    }
    .page-preview-widget {
        padding: 1.2rem;
    }
    .preview-content .preview-body {
        max-height: 150px;
    }
}

.badge-active {
    background: rgba(67,233,123,0.1);
    color: var(--accent);
    border: 1px solid rgba(67,233,123,0.25);
}

.badge-inactive {
    background: rgba(255,71,87,0.1);
    color: var(--danger);
    border: 1px solid rgba(255,71,87,0.25);
}

/* ============================================
   TOAST
   ============================================ */
.toast {
    position: fixed;
    bottom: 30px; left: 30px;
    background: var(--bg-card);
    border: 1px solid rgba(67,233,123,0.3);
    border-radius: var(--radius-md);
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2000;
    transform: translateX(calc(-100% - 40px));
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 300px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.toast.show { transform: translateX(0); }

.toast-icon {
    width: 36px; height: 36px;
    background: rgba(67,233,123,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.toast-text { flex: 1; }
.toast-text strong { display: block; font-size: 0.88rem; margin-bottom: 2px; }
.toast-text span { font-size: 0.78rem; color: var(--text-muted); }

.toast-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    font-size: 0.8rem;
    transition: var(--transition);
}

.toast-close:hover { color: var(--text-primary); }

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 20px; left: 50%;
    transform: translateX(-50%) translateY(150px);
    background: var(--bg-card);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-lg);
    padding: 1.2rem 1.8rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 1500;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    max-width: 600px;
    width: calc(100% - 40px);
    flex-wrap: wrap;
    justify-content: space-between;
}

.cookie-banner.show { transform: translateX(-50%) translateY(0); }

.cookie-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.cookie-buttons {
    display: flex;
    gap: 0.7rem;
    flex-shrink: 0;
}

.cookie-buttons .btn { padding: 8px 18px; font-size: 0.82rem; }
.cookie-banner.hidden {
    transform: translateX(-50%) translateY(150px);
    opacity: 0;
    pointer-events: none;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(25px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* STAGGER CHILDREN */
.fade-in:nth-child(1) { transition-delay: 0.05s; }
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.15s; }
.fade-in:nth-child(4) { transition-delay: 0.2s; }
.fade-in:nth-child(5) { transition-delay: 0.25s; }
.fade-in:nth-child(6) { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    nav { padding: 0 1.2rem; }

    .nav-links { display: none; }

    .hamburger { display: flex; }

    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 68px; left: 0; right: 0;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(24px);
        padding: 1.5rem;
        border-bottom: 1px solid var(--border);
        gap: 0.3rem;
        z-index: 999;
    }

    .nav-links.mobile-open a {
        padding: 12px 16px;
        width: 100%;
        border-radius: var(--radius-sm);
    }

    .hero { padding: 130px 1.5rem 70px; }

    .hero-stats {
        gap: 0;
        padding: 1.5rem;
    }

    .stat-item { padding: 0.5rem 1.2rem; }
    .stat-divider { height: 30px; }

    .section { padding: 60px 1.2rem; }

    .discord-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .discord-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .discord-tags { justify-content: center; }

    .cta-box { padding: 3rem 1.5rem; }

    .cart-sidebar { width: 100%; }

    .toast { left: 15px; right: 15px; max-width: none; }

    .pricing-grid { grid-template-columns: 1fr; max-width: 380px; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }

    .hero h1 { font-size: 2.2rem; }

    .stat-divider { display: none; }
    .stat-item { border-bottom: 1px solid var(--border); padding: 0.8rem; width: 50%; }
    .stat-item:last-child, .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }

    .products-grid { grid-template-columns: 1fr; }

    .categories-grid { grid-template-columns: repeat(2, 1fr); }

    .reviews-summary { padding: 1.5rem; gap: 1.5rem; }

    .footer-bottom-inner { flex-direction: column; text-align: center; }
}