/*
Theme Name: Dance Mogul Store - Cyberpunk Edition
Theme URI: https://store.dancemogul.com
Description: Dance Mogul Store - Full cyberpunk WooCommerce child theme with neon cyan and magenta aesthetics for online store. "Inspiring Self-Empowerment"
Author: Dance Mogul Magazine
Author URI: https://dancemogul.com
Template: storefront
Version: 1.0.0
Text Domain: dance-mogul-store-child
WC requires at least: 6.0
WC tested up to: 8.5
*/

/*
===============================================
DANCE MOGUL STORE - CYBERPUNK WOOCOMMERCE THEME
Theme: Cyberpunk WooCommerce Child Theme
Purpose: Full cyberpunk aesthetic for online store
Colors: Neon Cyan (#00ffff), Magenta (#ff00ff), Dark backgrounds
Features: Product glow effects, cart animations, checkout styling
Branding: DANCE MOGUL logo in top left corner
===============================================
*/

/* ============================================
   CSS VARIABLES - CYBERPUNK COLOR PALETTE
   ============================================ */
:root {
    /* Primary Cyberpunk Colors */
    --dm-cyan: #00ffff;
    --dm-magenta: #ff00ff;
    --dm-white: #ffffff;
    
    /* Color Variations */
    --dm-cyan-light: #5fffff;
    --dm-cyan-dark: #00cccc;
    --dm-magenta-light: #ff5fff;
    --dm-magenta-dark: #cc00cc;
    
    /* Backgrounds */
    --dark-bg: #0a0a0a;
    --dark-bg-2: #1a1a1a;
    --dark-bg-3: #2a2a2a;
    
    /* Accent Colors */
    --accent-cyan: rgba(0, 255, 255, 0.2);
    --accent-magenta: rgba(255, 0, 255, 0.2);
    --accent-glow: rgba(0, 255, 255, 0.3);
    
    /* Glass Effect */
    --glass-bg: rgba(20, 20, 30, 0.8);
    --glass-border: rgba(0, 255, 255, 0.3);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-muted: #9e9e9e;
    
    /* WooCommerce Specific */
    --woo-success: #00ffff;
    --woo-error: #ff00ff;
    --woo-info: #00ffff;
}

/* ============================================
   GLOBAL STYLES & BACKGROUND
   ============================================ */
body {
    background: var(--dark-bg);
    color: var(--text-primary);
    position: relative;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
}

/* Animated Cyberpunk Grid Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        linear-gradient(90deg, var(--dark-bg) 0%, var(--dark-bg-2) 50%, var(--dark-bg) 100%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 255, 0.05) 2px,
            rgba(0, 255, 255, 0.05) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 0, 255, 0.05) 2px,
            rgba(255, 0, 255, 0.05) 4px
        );
    background-size: 100% 100%, 50px 50px, 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { background-position: 0 0, 0 0, 0 0; }
    100% { background-position: 0 0, 50px 50px, -50px -50px; }
}

/* ============================================
   DANCE MOGUL LOGO IN TOP LEFT
   ============================================ */
body::after {
    content: 'DANCE MOGUL';
    position: fixed;
    top: 20px;
    left: 30px;
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Arial Black', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #ffffff;
    text-shadow: 
        0 0 10px var(--dm-cyan), 
        0 0 20px var(--dm-cyan), 
        0 0 30px var(--dm-cyan),
        0 0 40px var(--dm-magenta);
    z-index: 10001;
    animation: neonPulse 3s infinite;
    pointer-events: none;
}

@keyframes neonPulse {
    0%, 100% {
        text-shadow: 0 0 10px var(--dm-cyan), 0 0 20px var(--dm-cyan), 0 0 30px var(--dm-cyan);
    }
    50% {
        text-shadow: 0 0 15px var(--dm-cyan), 0 0 30px var(--dm-cyan), 0 0 45px var(--dm-magenta);
    }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6,
.entry-title,
.product-title,
.woocommerce-loop-product__title {
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

h1, .entry-title a,
.woocommerce-loop-product__title {
    background: linear-gradient(135deg, var(--dm-cyan), var(--dm-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

p, .entry-content,
.woocommerce-product-details__short-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

a {
    color: var(--dm-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--dm-magenta);
    text-shadow: 0 0 10px var(--dm-magenta);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header,
.storefront-primary-navigation {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 255, 255, 0.2);
}

.main-navigation a,
.site-header a {
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.main-navigation a:hover {
    color: var(--dm-cyan);
    text-shadow: 0 0 15px var(--dm-cyan);
}

/* ============================================
   WOOCOMMERCE PRODUCTS
   ============================================ */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.woocommerce ul.products li.product::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.woocommerce ul.products li.product:hover {
    border-color: var(--dm-cyan);
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.3),
        0 0 60px rgba(255, 0, 255, 0.2);
    transform: translateY(-10px);
}

.woocommerce ul.products li.product:hover::before {
    opacity: 0.1;
}

/* Product Images */
.woocommerce ul.products li.product img,
.woocommerce div.product div.images img {
    border-radius: 10px;
    border: 2px solid var(--glass-border);
    transition: all 0.3s ease;
}

.woocommerce ul.products li.product:hover img {
    border-color: var(--dm-cyan);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
    transform: scale(1.05);
}

/* Product Titles */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin: 15px 0;
}

/* Product Prices */
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: var(--dm-cyan);
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 0 10px var(--dm-cyan);
}

.woocommerce ul.products li.product .price del,
.woocommerce div.product p.price del {
    color: var(--text-muted);
    opacity: 0.6;
}

/* ============================================
   ADD TO CART BUTTONS
   ============================================ */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt {
    background: linear-gradient(135deg, var(--dm-cyan), var(--dm-magenta));
    color: #000000;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    box-shadow: 
        0 0 30px var(--dm-cyan),
        0 0 50px var(--dm-magenta);
    transform: scale(1.1) translateY(-3px);
}

/* ============================================
   PRODUCT SINGLE PAGE
   ============================================ */
.woocommerce div.product {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
}

.woocommerce div.product .product_title {
    background: linear-gradient(135deg, var(--dm-cyan), var(--dm-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Product Meta */
.woocommerce div.product .product_meta {
    background: rgba(0, 255, 255, 0.1);
    border-left: 3px solid var(--dm-cyan);
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
}

.woocommerce div.product .product_meta a {
    color: var(--dm-cyan);
}

/* ============================================
   SHOPPING CART
   ============================================ */
.woocommerce-cart table.cart {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
}

.woocommerce-cart table.cart td {
    border-top: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.woocommerce-cart table.cart th {
    background: var(--dark-bg-2);
    color: var(--dm-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    border: none;
}

/* Cart Totals */
.cart-collaterals .cart_totals {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    border-radius: 15px;
    padding: 30px;
}

.cart-collaterals .cart_totals h2 {
    background: linear-gradient(135deg, var(--dm-cyan), var(--dm-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cart-collaterals .cart_totals table {
    border: 1px solid var(--glass-border);
}

.cart-collaterals .cart_totals th,
.cart-collaterals .cart_totals td {
    color: var(--text-primary);
    border-top: 1px solid var(--glass-border);
}

.cart-collaterals .cart_totals .order-total {
    color: var(--dm-cyan);
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 0 10px var(--dm-cyan);
}

/* ============================================
   CHECKOUT PAGE
   ============================================ */
.woocommerce-checkout #payment {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    border-radius: 15px;
    padding: 20px;
}

.woocommerce-checkout #payment ul.payment_methods {
    border-bottom: 1px solid var(--glass-border);
}

.woocommerce-checkout #payment div.payment_box {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--dm-cyan);
    border-radius: 5px;
    color: var(--text-primary);
}

.woocommerce-checkout #payment div.payment_box::before {
    border-color: transparent transparent var(--dm-cyan);
}

/* Order Review */
.woocommerce-checkout-review-order {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    border-radius: 15px;
    padding: 20px;
}

.woocommerce-checkout-review-order table {
    color: var(--text-primary);
}

.woocommerce-checkout-review-order .order-total {
    color: var(--dm-cyan);
    font-size: 1.5rem;
    text-shadow: 0 0 10px var(--dm-cyan);
}

/* ============================================
   FORM INPUTS
   ============================================ */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-primary);
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    outline: none;
    border-color: var(--dm-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
    background: var(--dark-bg-2);
}

.woocommerce form .form-row label {
    color: var(--text-primary);
}

/* ============================================
   NOTICES & MESSAGES
   ============================================ */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-left-color: var(--dm-cyan);
    color: var(--text-primary);
    border-radius: 5px;
}

.woocommerce-message::before,
.woocommerce-info::before {
    color: var(--dm-cyan);
}

.woocommerce-error {
    border-left-color: var(--dm-magenta);
}

.woocommerce-error::before {
    color: var(--dm-magenta);
}

/* ============================================
   PRODUCT CATEGORIES
   ============================================ */
.woocommerce .product-category {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.woocommerce .product-category:hover {
    border-color: var(--dm-cyan);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    transform: translateY(-5px);
}

.woocommerce .product-category h3 {
    color: var(--dm-cyan);
    text-shadow: 0 0 10px var(--dm-cyan);
}

/* ============================================
   WIDGETS (SIDEBAR)
   ============================================ */
.widget {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.widget:hover {
    border-color: var(--dm-magenta);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.widget-title {
    color: var(--text-primary);
    border-bottom: 2px solid var(--dm-cyan);
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.widget ul li {
    color: var(--text-primary);
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0;
}

.widget ul li:hover {
    padding-left: 10px;
    border-left: 3px solid var(--dm-cyan);
}

/* ============================================
   PAGINATION
   ============================================ */
.woocommerce nav.woocommerce-pagination ul {
    border: none;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    margin: 0 5px;
    border-radius: 5px;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    color: var(--text-primary);
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: linear-gradient(135deg, var(--dm-cyan), var(--dm-magenta));
    color: #000000;
    border-color: var(--dm-cyan);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 30px;
    margin-top: 60px;
    color: var(--text-secondary);
}

.site-footer .widget-title {
    color: var(--dm-cyan);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    body::after {
        font-size: 1.5rem;
        top: 15px;
        left: 20px;
        letter-spacing: 2px;
    }
    
    .woocommerce div.product {
        padding: 20px;
    }
    
    .woocommerce ul.products li.product {
        width: 100%;
        margin: 0 0 20px;
    }
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 12px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--dm-cyan), var(--dm-magenta));
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--dm-magenta), var(--dm-cyan));
}

/* ============================================
   LOADING & ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.woocommerce ul.products li.product {
    animation: fadeInUp 0.6s ease-out;
}
