/*
Theme Name: AlexaStore
Theme URI: https://example.com/alexastore
Author: AlexaStore Designer
Description: A futuristic dark-blue WordPress theme for an electro shop, Slovak translation, WooCommerce and Elementor ready.
Version: 1.0.0
Text Domain: alexastore
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: dark, e-commerce, elementor, futuristic, blue, slovak, woocommerce, responsive-layout
*/

/* --- GLOBAL STYLES --- */
:root {
    --bg-dark: #0b1026;
    --bg-darker: #05070e;
    --neon-blue: #00aaff;
    --neon-blue-glow: rgba(0, 170, 255, 0.4);
    --gold: #f8e71c;
    --text-white: #ffffff;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    background-color: var(--bg-darker);
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.15), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.12), transparent 50%),
        url('assets/images/stars-bg.svg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: var(--text-white);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Removal of the "smoke" animation as requested, replaced with static large atmospheric objects */
body::before {
    content: "";
    position: fixed;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at 70% 30%, rgba(0, 170, 255, 0.05), transparent 60%);
    pointer-events: none;
    z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

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

a:hover {
    color: #fff;
}

/* Button */
.btn-neon {
    background: linear-gradient(90deg, #00aaff, #0077ff);
    color: #fff;
    border-radius: 30px;
    padding: 12px 30px;
    display: inline-block;
    font-weight: bold;
    box-shadow: 0 4px 15px var(--neon-blue-glow);
    border: none;
    cursor: pointer;
}

.btn-neon:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--neon-blue-glow);
}
```

/* Glassmorphism utility */
.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

/* Category Grid (IMG_6021 & IMG_6025) */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    padding: 20px;
}

.category-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.category-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px var(--neon-blue-glow);
}

/* WooCommerce Product Card */
.product {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.price {
    color: var(--text-white);
    font-weight: bold;
    font-size: 1.2em;
}

.onsale {
    background: var(--gold);
    color: #000;
    padding: 2px 8px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.8em;
}

/* Mobile Bottom Nav */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 70px;
        background: rgba(11, 16, 38, 0.85);
        backdrop-filter: blur(15px);
        border-top: 1px solid var(--glass-border);
        justify-content: space-around;
        align-items: center;
        z-index: 9999;
    }

    .nav-item {
        text-align: center;
        color: rgba(255, 255, 255, 0.6);
        font-size: 10px;
        text-decoration: none;
    }

    .nav-item.active {
        color: var(--neon-blue);
    }

    .nav-item i {
        display: block;
        font-size: 20px;
        margin-bottom: 4px;
    }
}
