/*
Theme Name: Cyber Premium
Theme URI: https://example.com/cyber-premium
Description: A futuristic, high-end WordPress theme with glassmorphism and neon aesthetics.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cyber-premium
Tags: modern, dark, neon, responsive
*/

:root {
    /* Cyber Premium Palette */
    --bg-dark: #0a0a0f;
    --bg-panel: rgba(20, 20, 30, 0.7);
    --primary: #00f3ff;
    --secondary: #bc13fe;
    --accent: #ff0055;
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --glass-border: rgba(255, 255, 255, 0.1);
    --glow-primary: 0 0 20px rgba(0, 243, 255, 0.5);
    --glow-secondary: 0 0 20px rgba(188, 19, 254, 0.5);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(188, 19, 254, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 243, 255, 0.1) 0%, transparent 40%);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 a, h2 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

h1 a:hover, h2 a:hover {
    color: var(--primary);
    text-shadow: var(--glow-primary);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary);
    text-shadow: 0 0 10px rgba(188, 19, 254, 0.4);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 243, 255, 0.3);
}

/* Navigation */
.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-navigation a {
    color: var(--text-main);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--primary);
}

.main-navigation a:hover::after {
    width: 100%;
}

/* Post Card (Glassmorphism) */
.post {
    background: var(--bg-panel);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.5;
}

.post:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
                inset 0 0 20px rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 243, 255, 0.3);
}

.entry-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.entry-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
}

.entry-content {
    font-size: 1.1rem;
    color: var(--text-main);
}

.entry-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.read-more-btn {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
}

.read-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary);
    z-index: -1;
    transition: width 0.3s ease;
}

.read-more-btn:hover {
    color: #000;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
}

.read-more-btn:hover::before {
    width: 100%;
}

/* Footer */
.site-footer {
    background: #050508;
    padding: 60px 0;
    margin-top: 80px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-navigation ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .entry-title {
        font-size: 1.8rem;
    }
}

/* WooCommerce Styles */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    background: var(--bg-panel);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
                inset 0 0 20px rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 243, 255, 0.3);
}

.woocommerce ul.products li.product h2.woocommerce-loop-product__title {
    color: #fff;
    font-size: 1.2rem;
    margin-top: 15px;
}

.woocommerce ul.products li.product .price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 15px;
}

.woocommerce a.button, 
.woocommerce button.button, 
.woocommerce input.button,
.woocommerce #respond input#submit {
    background: transparent !important;
    border: 1px solid var(--primary) !important;
    color: var(--primary) !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    padding: 10px 25px !important;
    transition: all 0.3s ease !important;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.woocommerce a.button:hover, 
.woocommerce button.button:hover, 
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
    background: var(--primary) !important;
    color: #000 !important;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.4) !important;
}

.woocommerce span.onsale {
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
}

/* Cart & Checkout */
.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-checkout #order_review,
.woocommerce-checkout #customer_details {
    background: var(--bg-panel);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}

.woocommerce table.shop_table {
    border-collapse: collapse !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 10px;
    overflow: hidden;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    border-top: 1px solid var(--glass-border) !important;
    padding: 15px !important;
    color: var(--text-main);
}

.woocommerce-message, 
.woocommerce-info, 
.woocommerce-error {
    background: var(--bg-panel) !important;
    color: var(--text-main) !important;
    border-top: 3px solid var(--primary) !important;
}

.woocommerce-error {
    border-top-color: var(--accent) !important;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 10px;
    border-radius: 5px;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}
