/*
Theme Name: Nekora Premium
Theme URI: https://nekora.net/
Author: Antigravity AI
Author URI: https://google.com/
Description: A highly professional, attention-seeking premium dark theme with neon accents and smooth animations. Tailored for creators and services.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nekora-premium
Tags: dark, neon, premium, creator, services, woocommerce
*/

/* Reset & Base */
:root {
    --bg-dark: #0F0F13;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --text-main: #ffffff;
    --text-muted: #A1A1AA;
    --accent-primary: #8B5CF6;
    /* Vibrant Purple */
    --accent-secondary: #EC4899;
    /* Neon Pink */
    --accent-glow: rgba(139, 92, 246, 0.5);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    max-width: 100%;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    color: var(--text-main);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-primary);
}

/* Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Buttons */
.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    z-index: 1;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition-smooth);
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--accent-glow);
}

.btn-premium:hover::before {
    opacity: 1;
}

/* Glass Cards */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(139, 92, 246, 0.1);
    background: var(--bg-card-hover);
}

/* Stat Items */
.stat-item {
    transition: transform var(--transition-smooth), filter var(--transition-smooth);
    cursor: default;
}

.stat-item:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px var(--accent-glow));
}

.stat-item:hover .stat-number {
    color: var(--accent-secondary) !important;
    transition: color var(--transition-smooth);
}

/* Global Header */
.site-header {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    padding: 15px 35px;
    z-index: 1000;
    transition: all var(--transition-smooth);
    background: rgba(15, 15, 19, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
}

.site-header.scrolled {
    top: 15px;
    background: rgba(15, 15, 19, 0.85);
    padding: 12px 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.4);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    position: relative;
    padding: 10px 0;
    transition: color var(--transition-fast);
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    transition: width var(--transition-fast);
    border-radius: 2px;
}

.main-navigation a:hover {
    color: var(--text-main);
}

.main-navigation a:hover::after {
    width: 100%;
}

/* Footer */
.site-footer {
    background: #0a0a0c;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 30px;
    margin-top: 80px;
}


/* Responsive Design */
@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background: var(--text-main);
        border-radius: 10px;
        transition: all var(--transition-smooth);
    }

    .main-navigation {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-dark);
        z-index: 1000;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        visibility: hidden;
        opacity: 0;
        transition: all var(--transition-smooth);
    }

    .main-navigation.is-active {
        visibility: visible;
        opacity: 1;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .main-navigation a {
        font-size: 1.5rem;
    }

    .header-actions {
        display: none;
    }

    .menu-toggle.is-active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.is-active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

@media (min-width: 992px) {
    .menu-toggle {
        display: none;
    }
}

/* Body Scroll Lock */
body.no-scroll {
    overflow: hidden;
}

.menu-toggle.is-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}


@media (min-width: 992px) {
    .menu-toggle {
        display: none;
    }
}

/* Body Scroll Lock */
body.no-scroll {
    overflow: hidden;
}

/* Custom Cursor Effect */
@media (pointer: fine) {
    * {
        cursor: none !important;
    }

    .custom-cursor-dot {
        position: fixed;
        top: 0;
        left: 0;
        width: 8px;
        height: 8px;
        background-color: var(--accent-primary, #8B5CF6);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
        z-index: 10000;
        transition: width 0.2s, height 0.2s, background-color 0.2s;
    }

    .custom-cursor-outline {
        position: fixed;
        top: 0;
        left: 0;
        width: 32px;
        height: 32px;
        border: 1px solid rgba(139, 92, 246, 0.5);
        background-color: rgba(139, 92, 246, 0.05); /* subtle neon glow interior */
        border-radius: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
        z-index: 9999;
        transition: width 0.2s, height 0.2s, background-color 0.2s, border-color 0.2s;
        box-shadow: 0 0 10px rgba(139, 92, 246, 0.2);
    }

    .custom-cursor-dot.hover {
        width: 0;
        height: 0;
    }

    .custom-cursor-outline.hover {
        width: 50px;
        height: 50px;
        background-color: rgba(139, 92, 246, 0.15);
        border-color: var(--accent-secondary, #EC4899);
        box-shadow: 0 0 20px rgba(236, 72, 153, 0.4);
    }
}

/* Hide Default Web Scrollbars */
::-webkit-scrollbar {
    display: none;
}

body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
/* Add to Cart Feedback Animation */
.header-cart-btn { transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important; }
.cart-bump { animation: cart-bump-anim 0.5s ease; }
@keyframes cart-bump-anim {
    0% { transform: scale(1); box-shadow: none; border-color: rgba(255,255,255,0.1); }
    50% { transform: scale(1.3); box-shadow: 0 0 25px #a855f7, 0 0 50px #ec4899; border-color: #ec4899; }
    100% { transform: scale(1); box-shadow: none; border-color: rgba(255,255,255,0.1); }
}
/* Custom Commission Form Styles */
.nekora-custom-fields {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 40px;
}

.nekora-custom-fields h4 {
    color: var(--accent-primary);
    font-size: 0.9rem;
    margin-bottom: 25px !important;
}

.nekora-custom-fields input,
.nekora-custom-fields select {
    transition: all 0.3s ease;
}

.nekora-custom-fields input:focus,
.nekora-custom-fields select:focus {
    background: rgba(139, 92, 246, 0.05) !important;
    transform: translateY(-2px);
}

/* ============================================================
   Footer — Premium Responsive
   ============================================================ */
.footer-premium {
    background: rgba(10, 10, 12, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer-accent-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    box-shadow: 0 0 20px var(--accent-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    align-items: start;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
}

.footer-logo { margin-bottom: 20px; }
.footer-logo a { display: inline-block; }

.footer-logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    object-position: left center;
}

.footer-tagline {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 300px;
    font-size: 0.95rem;
}

.footer-social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
    font-size: 0.95rem;
    flex-shrink: 0;
}
.social-icon:hover { transform: translateY(-3px); color: white; }

.footer-col-title {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}
.footer-links-list a:hover { color: var(--accent-primary); }

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.site-info { color: var(--text-muted); font-size: 0.9rem; }
.footer-brand-name { color: white; font-weight: 700; }
