/*
Theme Name: Nebu
Theme URI: #
Author: Replit Agent
Description: 2050 WooCommerce UI Clone
Version: 1.0.0
Text Domain: nebula-wc
*/

/* ---------- DESIGN SYSTEM ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-deep: #0a0b0f;
    --bg-panel: rgba(18, 22, 30, 0.75);
    --glass-edge: rgba(120, 140, 200, 0.15);
    --neon-blue: #3b82f6;
    --neon-cyan: #22d3ee;
    --neon-purple: #a78bfa;
    --neon-glow: 0 0 12px rgba(59,130,246,0.5);
    --card-shadow: 0 30px 40px -20px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.02) inset;
    --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-num: 'Space Grotesk', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --transition: all 0.25s cubic-bezier(0.2, 0.9, 0.3, 1.1);
}

body {
    background-color: var(--bg-deep);
    background-image: radial-gradient(circle at 20% 30%, rgba(59,130,246,0.08) 0%, transparent 40%),
                      radial-gradient(circle at 90% 70%, rgba(168,85,247,0.06) 0%, transparent 40%);
    font-family: var(--font-sans);
    color: #f0f4ff;
    line-height: 1.5;
    overflow-x: hidden;
    min-height: 100vh;
    perspective: 1200px;
}

/* cursor glow */
#cursor-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59,130,246,0.25) 0%, rgba(20,30,50,0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen;
    transform: translate(-50%, -50%);
    transition: transform 0.08s ease-out;
    will-change: left, top;
    opacity: 0.7;
}

/* page transition wrapper */
.page-transition {
    opacity: 1;
    transition: opacity 0.4s ease, transform 0.5s ease;
}
.page-transition.fade-out {
    opacity: 0;
    transform: translateY(20px);
}

/* glass + containers */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 5;
}

.glass-panel {
    background: var(--bg-panel);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid var(--glass-edge);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 40px -12px black, var(--neon-glow);
}

/* navbar (global) */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    margin: 0 2rem 1.5rem 2rem;
    border-radius: 80px;
    background: rgba(8, 12, 18, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59,130,246,0.2);
    box-shadow: 0 15px 35px -10px black;
    z-index: 1000;
    position: sticky;
    top: 0;
}

.logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: -0.02em;
    background: linear-gradient(130deg, #fff, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px var(--neon-blue);
    transition: text-shadow 0.3s;
}
.logo:hover { text-shadow: 0 0 35px var(--neon-cyan); }
.logo a { color: inherit; text-decoration: none; }
.custom-logo-link img { height: 40px; width: auto; display: block; }

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex-wrap: wrap;
}
.nav-links a {
    color: #eef4ff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.4rem 0;
    cursor: pointer;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-cyan));
    transition: width 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--neon-cyan);
}
.nav-links a:hover::after { width: 100%; }

.btn-magnetic {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(59,130,246,0.5);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: background 0.2s, box-shadow 0.3s, transform 0.1s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.6);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}
.btn-magnetic:hover {
    background: rgba(59,130,246,0.2);
    box-shadow: 0 0 25px var(--neon-blue);
    border-color: var(--neon-cyan);
}

/* headings */
.section-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    margin: 4rem 0 2rem;
    background: linear-gradient(130deg, #fff, var(--neon-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* fade up animation */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.appear {
    opacity: 1;
    transform: translateY(0);
}

/* card tilt + glow */
.tilt-card {
    transition: transform 0.2s, box-shadow 0.3s;
    transform-style: preserve-3d;
}

/* ---------- SHOP PAGE (3D product grid) ---------- */
.category-filters {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}
.filter-chip {
    background: rgba(255,255,255,0.03);
    border: 1px solid #2d3a60;
    border-radius: 40px;
    padding: 0.6rem 2rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    color: white;
}
.filter-chip.active {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px var(--neon-cyan);
    background: rgba(34,211,238,0.1);
}
.filter-chip:hover { border-color: var(--neon-blue); }

.price-range {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 2rem 0;
}
.price-range input {
    width: 200px;
    background: transparent;
    accent-color: var(--neon-cyan);
}

.product-grid, .products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    list-style: none;
    padding: 0;
}
.product-card, .products li.product {
    background: rgba(16, 22, 34, 0.7);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    border: 1px solid rgba(59,130,246,0.2);
    box-shadow: var(--card-shadow);
    transition: transform 0.25s, box-shadow 0.4s;
    display: flex;
    flex-direction: column;
    text-align: left;
}
.product-card:hover, .products li.product:hover {
    transform: translateY(-12px) scale(1.01) rotateX(2deg);
    box-shadow: 0 40px 60px -15px black, 0 0 0 2px rgba(34,211,238,0.4) inset;
}
.product-thumb, .products li.product .woocommerce-loop-product__link > img, .products li.product .product-thumb {
    height: 180px;
    background: linear-gradient(145deg, #19233c, #0b101f);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff60;
    background-image: radial-gradient(circle at 30% 30%, var(--neon-blue) 1px, transparent 1px);
    background-size: 20px 20px;
    overflow: hidden;
    position: relative;
    width: 100%;
    object-fit: cover;
}
.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: overlay;
    opacity: 0.8;
}
.stars, .star-rating {
    color: gold;
    letter-spacing: 4px;
    margin: 0.5rem 0;
    font-size: 1rem;
}
.quick-view {
    background: transparent;
    border: 1px solid var(--neon-blue);
    border-radius: 30px;
    padding: 0.5rem 1rem;
    color: white;
    margin-right: 0.5rem;
    transition: 0.2s;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-block;
}
.quick-view:hover {
    background: var(--neon-blue);
    box-shadow: 0 0 15px var(--neon-blue);
}
.add_to_cart_button, .ajax_add_to_cart {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(59,130,246,0.5);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: background 0.2s, box-shadow 0.3s, transform 0.1s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.6);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
}
.add_to_cart_button:hover, .ajax_add_to_cart:hover {
    background: rgba(59,130,246,0.2);
    box-shadow: 0 0 25px var(--neon-blue);
    border-color: var(--neon-cyan);
}

/* ---------- CATEGORY PAGE ---------- */
.category-hero {
    padding: 4rem;
    border-radius: 70px;
    background: rgba(10,15,28,0.6);
    backdrop-filter: blur(18px);
    border: 1px solid #2e3b5a;
    margin: 2rem 0;
}
.subcategory-chips {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}
.subchip {
    background: rgba(59,130,246,0.2);
    border: 1px solid var(--neon-blue);
    border-radius: 50px;
    padding: 0.8rem 2.2rem;
    font-weight: 600;
    transition: 0.2s;
    color: white;
    text-decoration: none;
}
.subchip:hover {
    background: var(--neon-blue);
    color: black;
    box-shadow: 0 0 25px var(--neon-blue);
}

/* ---------- SINGLE PRODUCT PAGE ---------- */
.single-product {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin: 3rem 0;
}
.product-main { display: grid; grid-template-columns: 1fr; gap: 2rem; }
/* (page-level product-side removed; latest products now inside reviews sidebar) */
.side-products { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.8rem; }
.side-products li a { display: grid; grid-template-columns: 56px 1fr; gap: 0.8rem; align-items: center; text-decoration: none; color: #eaf2ff; background: rgba(255,255,255,0.04); border: 1px solid rgba(59,130,246,0.25); border-radius: 14px; padding: 0.6rem; }
.side-products .thumb img { width: 56px; height: 56px; object-fit: cover; border-radius: 10px; }
.side-products .info .t { font-size: 0.95rem; line-height: 1.3; display: block; }
.side-products .info .p { font-size: 0.9rem; color: #b7ccff; display: block; margin-top: 2px; }
/* sidebar rules removed */
.product-3d-preview, .woocommerce-product-gallery {
    height: 400px;
    background: rgba(0,0,0,0.4);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border: 1px solid var(--neon-cyan);
    box-shadow: 0 0 60px var(--neon-blue);
    overflow: hidden;
    position: relative;
}
.product-panel { padding: 2rem; }
.top-grid-7030 { display: grid; grid-template-columns: minmax(0, 70%) minmax(260px, 30%); gap: 2rem; align-items: start; margin-bottom: 2rem; }
.product-grid-7030 { display: grid; grid-template-columns: minmax(0, 70%) minmax(260px, 30%); gap: 2rem; align-items: start; }
.product-info-side { position: sticky; top: 90px; align-self: start; border-left: 1px solid rgba(59,130,246,0.25); }
.ad-box { display: block; width: 100%; margin: 1rem 0; }
.ad-box iframe, .ad-box ins, .ad-box img { max-width: 100%; height: auto; display: block; }
.product-title { font-family: var(--font-display); font-size: 3rem; line-height: 1.1; margin: 0 0 0.8rem; }
.product-price-xl { font-size: 3rem; color: var(--neon-cyan); text-shadow: 0 0 18px rgba(34,211,238,0.35); }
.product-excerpt { margin: 2rem 0; color: #b7c3e6; }
.product-demo-wrap { margin: 1rem 0 2rem; }
.product-description { margin-top: 2rem; }
/* breadcrumbs */
.breadcrumbs {
    margin: 0 0 1rem;
    color: #9fb3d8;
    font-size: 0.95rem;
}
.breadcrumbs a { color: #cfe4ff; text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; text-underline-offset: 2px; }
/* scoped typography for product description */
.product-description {
    color: #dbe7ff;
    line-height: 1.75;
    font-size: 1rem;
}
.product-description p { margin: 0 0 1rem; }
.product-description h2,
.product-description h3,
.product-description h4 {
    font-family: var(--font-display);
    margin: 1.6rem 0 0.8rem;
    line-height: 1.25;
    background: linear-gradient(130deg, #fff, var(--neon-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.product-description h2 { font-size: 1.8rem; }
.product-description h3 { font-size: 1.4rem; }
.product-description a { color: #9fd1ff; text-decoration: underline; text-underline-offset: 3px; }
.product-description a:hover { color: var(--neon-cyan); text-shadow: 0 0 10px rgba(34,211,238,0.45); }
.product-description ul, .product-description ol { margin: 0 0 1rem 1.2rem; }
.product-description ul li { list-style: disc; }
.product-description ol li { list-style: decimal; }
.product-description blockquote {
    margin: 1rem 0;
    padding: 1rem 1.2rem;
    border-left: 4px solid var(--neon-cyan);
    background: rgba(255,255,255,0.04);
    border-radius: 10px;
}
.product-description code, .product-description pre {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    background: rgba(12,18,30,0.9);
    border: 1px solid rgba(59,130,246,0.25);
    color: #eaf2ff;
    border-radius: 8px;
}
.product-description code { padding: 0.2rem 0.35rem; }
.product-description pre { padding: 1rem; overflow: auto; }
.product-description img { max-width: 100%; border-radius: 14px; box-shadow: 0 10px 28px rgba(0,0,0,0.45); }
.product-description table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.product-description table td, .product-description table th {
    border: 1px solid rgba(59,130,246,0.2);
    padding: 0.6rem 0.8rem;
}
.product-description .btn,
.product-description .button {
    display: inline-block;
    padding: 0.6rem 1.1rem;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(59,130,246,0.35);
    color: #eaf2ff;
    text-decoration: none;
}
.product-description .btn:hover,
.product-description .button:hover { background: rgba(59,130,246,0.2); border-color: var(--neon-cyan); }
.product-3d-preview img, .woocommerce-product-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
}
.qty-selector, .quantity {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    align-items: center;
}
.qty-selector input, .quantity input {
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    width: 60px;
    text-align: center;
}
.qty-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--neon-blue);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.single_add_to_cart_button {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 80px;
    font-weight: 700;
    font-size: 1.3rem;
    color: black;
    box-shadow: 0 0 25px var(--neon-blue);
    transition: 0.2s;
    cursor: pointer;
    display: inline-block;
}
.single_add_to_cart_button:hover {
    transform: scale(1.02);
    box-shadow: 0 0 45px var(--neon-cyan);
}

/* tabs */
.tabs, .wc-tabs {
    display: inline-flex;
    gap: 0.5rem;
    margin: 2rem 0 0.5rem 0;
    list-style: none;
    padding: 0.35rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(59,130,246,0.25);
    border-radius: 16px;
}
.tab, .wc-tabs li {
    padding: 0.6rem 1rem;
    cursor: pointer;
    border-bottom: 0;
    border-radius: 12px;
    color: #cfe4ff;
}
.tab.active, .wc-tabs li.active {
    color: #0d1726;
    background: linear-gradient(135deg, rgba(59,130,246,0.5), rgba(34,211,238,0.4));
    box-shadow: 0 0 18px rgba(34,211,238,0.2);
}
.wc-tabs li a {
    color: inherit;
    text-decoration: none;
}

.tab-panels .tab-panel { display: none; }
.tab-panels .tab-panel.active { display: block; }

/* related slider */
.related-slider, .related.products .products {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 0;
    grid-template-columns: none;
}
.related-card, .related.products .products li.product {
    min-width: 220px;
    background: rgba(20,28,44,0.7);
    border-radius: 40px;
    padding: 1.5rem;
    margin-bottom: 0;
}

/* ---------- CART PAGE ---------- */
.cart-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}
.cart-item, .woocommerce-cart-form__cart-item {
    display: flex;
    gap: 1.5rem;
    background: rgba(30,40,60,0.4);
    border-radius: 40px;
    padding: 1.5rem;
    margin: 1rem 0;
    align-items: center;
    border: 1px solid rgba(59,130,246,0.25);
    position: relative;
    transition: transform .2s ease, box-shadow .3s ease, border-color .2s ease;
}
.woocommerce-cart-form__cart-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.45), 0 0 0 2px rgba(34,211,238,0.25) inset;
    border-color: rgba(34,211,238,0.35);
}
.woocommerce-cart-form__cart-item::before{
    content:'';
    position:absolute;
    left:0; top:0; bottom:0;
    width:4px;
    border-radius:40px 0 0 40px;
    background: linear-gradient(180deg, var(--neon-blue), var(--neon-cyan));
    opacity:.8;
}
.woocommerce-cart-form__cart-item > td { border: none; background: transparent; }
.woocommerce-cart-form__cart-item .product-name { flex: 2; }
.woocommerce-cart-form__cart-item .product-subtotal { margin-left: auto; }
.woocommerce-cart-form__cart-item .product-subtotal .amount { font-size: 1.4rem; font-weight: 800; color: var(--neon-cyan); text-shadow: 0 0 12px rgba(34,211,238,0.25); }
.cart-item .product-name a:hover { text-decoration: underline; text-underline-offset: 2px; }
.remove-item, .product-remove a {
    color: #ff7799 !important;
    cursor: pointer;
    transition: 0.2s;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}
.remove-item:hover, .product-remove a:hover { text-shadow: 0 0 15px red; }
.cart-totals, .cart_totals {
    background: rgba(18, 26, 42, 0.8);
    backdrop-filter: blur(16px);
    border-radius: 50px;
    padding: 2rem;
    height: fit-content;
    width: 100% !important;
    float: none !important;
}
.woocommerce table.shop_table thead th {
    color: #b7c3e6;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.85rem;
    border: none;
}
.woocommerce-cart-form__cart-item .product-thumbnail img,
.woocommerce-cart-form__cart-item img {
    width: 84px;
    height: 84px;
    border-radius: 16px;
    border: 1px solid rgba(59,130,246,0.35);
    box-shadow: 0 12px 24px rgba(0,0,0,0.45);
    background: radial-gradient(120px at 40% 30%, rgba(59,130,246,0.15), transparent 60%);
}
.woocommerce-cart-form__cart-item .product-thumbnail { display: none; }
.woocommerce-cart-form__cart-item .product-name a {
    font-size: 1.15rem;
    font-weight: 800;
    color: #eaf2ff;
}
.woocommerce-cart-form__cart-item .product-name .variation,
.woocommerce-cart-form__cart-item .product-name .wc-item-meta {
    color: #9fb3d8;
    font-size: 0.9rem;
}
.cart_totals h2, .cart_totals h3 { 
    margin-top: 0; 
    margin-bottom: 1rem; 
    font-family: var(--font-display); 
    font-size: 1.6rem;
    background: linear-gradient(90deg, #fff, var(--neon-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.cart_totals .shop_table { width: 100%; border-collapse: collapse; }
.cart_totals .shop_table th, 
.cart_totals .shop_table td { padding: 0.6rem 0; color: #d7e6ff; }
.cart_totals .order-total .amount { font-size: 1.6rem; color: var(--neon-cyan); text-shadow: 0 0 12px rgba(34,211,238,0.3); }
.wc-proceed-to-checkout .checkout-button { 
    display: block; 
    text-align: center; 
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple)); 
    border: none; 
    border-radius: 60px; 
    padding: 1rem 1.6rem; 
    color: black; 
    font-weight: 800; 
    box-shadow: 0 0 25px rgba(59,130,246,0.4); 
}
.wc-proceed-to-checkout a, 
.wc-proceed-to-checkout .button, 
.wc-proceed-to-checkout .checkout-button:visited { 
    color: black !important; 
    text-decoration: none; 
}
.wc-proceed-to-checkout .checkout-button:hover { transform: translateY(-1px); box-shadow: 0 0 35px rgba(34,211,238,0.5); }
.woocommerce .cart .actions .coupon .input-text,
.woocommerce-cart .cart .coupon .input-text {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(59,130,246,0.25);
    color: #eaf2ff;
    border-radius: 14px;
    padding: 0.6rem 0.9rem;
    width: 180px;
}
.woocommerce .cart .actions .coupon button,
.woocommerce-cart .cart .coupon button {
    background: rgba(59,130,246,0.2);
    border: 1px solid rgba(59,130,246,0.5);
    color: #fff;
    border-radius: 14px;
    padding: 0.6rem 1rem;
    font-weight: 600;
}
.quantity .minus, .quantity .plus {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(59,130,246,0.35);
    color: #eaf2ff;
}
.quantity .qty {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(59,130,246,0.25);
    color: #eaf2ff;
    border-radius: 10px;
    padding: 0.4rem 0.6rem;
    width: 64px;
    text-align: center;
}
.woocommerce-cart-form__cart-item img {
    border-radius: var(--radius-md);
    width: 80px;
    height: 80px;
    object-fit: cover;
}
.woocommerce-cart-form__cart-item .product-name a {
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -.01em;
}
.woocommerce table.shop_table {
    border: none;
    border-radius: 0;
}
.woocommerce table.shop_table td, .woocommerce table.shop_table th {
    border-top: none;
}

.wc-block-cart-items__row { display: grid; grid-template-columns: 88px 1fr auto; gap: 1rem; background: rgba(30,40,60,0.45); border: 1px solid rgba(59,130,246,0.25); border-radius: 32px; padding: 1.2rem; margin: 1rem 0; align-items: center; transition: transform .2s ease, box-shadow .3s ease, border-color .2s ease; }
.wc-block-cart-items__row:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(0,0,0,0.45), 0 0 0 2px rgba(34,211,238,0.25) inset;
    border-color: rgba(34,211,238,0.35);
}
.wc-block-cart-item__image { display: block; }
.wc-block-cart-item__image img { width: 76px; height: 76px; border-radius: 14px; border: 1px solid rgba(59,130,246,0.35); box-shadow: 0 12px 24px rgba(0,0,0,0.45); object-fit: cover; background: radial-gradient(120px at 40% 30%, rgba(59,130,246,0.15), transparent 60%); }
.wc-block-components-product-name { font-size: 1.15rem; font-weight: 800; color: #eaf2ff; text-decoration: none; line-height: 1.25; }
.wc-block-components-product-name:hover { text-decoration: underline; text-underline-offset: 2px; }
.wc-block-cart-item__prices { display: flex; gap: 0.5rem; align-items: baseline; }
.wc-block-components-product-price { font-size: 1.1rem; font-weight: 800; }
.wc-block-components-product-price del { color: #93a4c9; font-weight: 600; margin-right: 6px; }
.wc-block-components-product-price ins { color: var(--neon-cyan); text-decoration: none; text-shadow: 0 0 10px rgba(34,211,238,0.35); }
.wc-block-components-product-badge { background: rgba(59,130,246,0.18); border: 1px solid rgba(59,130,246,0.4); padding: 2px 8px; border-radius: 10px; font-weight: 700; }

/* Classic cart layout with image */
.woocommerce-cart-form__cart-item { display: grid; grid-template-columns: 88px 1fr auto; gap: 1rem; }
.woocommerce-cart-form__cart-item .product-thumbnail { display: block; }
.woocommerce-cart-form__cart-item .product-thumbnail img { width: 76px; height: 76px; border-radius: 14px; object-fit: cover; border: 1px solid rgba(59,130,246,0.35); box-shadow: 0 12px 24px rgba(0,0,0,0.45); }
.woocommerce-cart-form__cart-item .product-subtotal { justify-self: end; }
.wc-block-components-product-metadata, 
.wc-block-components-product-details,
.wc-block-components-product-badge {
    color: #9fb3d8;
    font-size: 0.9rem;
}
.wc-block-components-quantity-selector .wc-block-components-quantity-selector__button {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(59,130,246,0.35);
    color: #eaf2ff;
}
.wc-block-components-quantity-selector .wc-block-components-quantity-selector__input {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(59,130,246,0.25);
    color: #eaf2ff;
    border-radius: 10px;
    padding: 0.4rem 0.6rem;
    width: 64px;
    text-align: center;
}
.wp-block-woocommerce-proceed-to-checkout-block .wc-block-components-button,
.wc-block-cart__submit .wc-block-components-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    border: none;
    border-radius: 60px;
    padding: 1rem 1.6rem;
    color: black !important;
    font-weight: 800;
    box-shadow: 0 0 25px rgba(59,130,246,0.4);
    text-decoration: none;
}
.wp-block-woocommerce-proceed-to-checkout-block .wc-block-components-button:hover,
.wc-block-cart__submit .wc-block-components-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 35px rgba(34,211,238,0.5);
}

.wc-block-components-field__label, 
.wc-block-components-checkbox__label,
.wc-block-components-radio-control__label {
    color: #d7e6ff;
    font-weight: 700;
}
.wc-block-components-text-input input,
.wc-block-components-textarea textarea,
.wc-block-components-select select {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(59,130,246,0.25);
    color: #eaf2ff;
    border-radius: 14px;
    padding: 0.9rem 1rem;
}
.wc-block-components-text-input input::placeholder,
.wc-block-components-textarea textarea::placeholder {
    color: #9fb3d8;
}
.wc-block-components-text-input input:focus,
.wc-block-components-textarea textarea:focus,
.wc-block-components-select select:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 0 3px rgba(34,211,238,0.25);
    outline: none;
}

/* stronger visibility for Checkout Blocks text */
.wc-block-components-checkout-step__heading { color: #eaf2ff !important; font-weight: 800; }
.wc-block-components-field .wc-block-components-field__label { color: #eaf2ff !important; }
.components-input-control__input,
.components-select-control__input,
.wc-block-components-text-input input,
.wc-block-components-textarea textarea,
.wc-block-components-select select {
    color: #eaf2ff !important;
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(59,130,246,0.3) !important;
}
.components-input-control__input::placeholder,
.wc-block-components-text-input input::placeholder,
.wc-block-components-textarea textarea::placeholder {
    color: #b3c5e7 !important;
    opacity: 1 !important;
}
.wc-block-components-field__error,
.wc-block-components-validation-error { color: #ffb3c1 !important; }

.wp-block-woocommerce-checkout-order-summary-block,
.wp-block-woocommerce-checkout-order-summary-coupon-form-block,
.wp-block-woocommerce-checkout-order-summary-totals-block,
.wp-block-woocommerce-checkout-order-summary-discount-block,
.wp-block-woocommerce-checkout-order-summary-fee-block,
.wp-block-woocommerce-checkout-order-summary-shipping-block,
.wp-block-woocommerce-checkout-order-summary-subtotal-block,
.wp-block-woocommerce-checkout-order-summary-taxes-block {
    background: rgba(18,26,42,0.75);
    border: 1px solid rgba(59,130,246,0.25);
    border-radius: 24px;
    padding: 1.2rem;
}
.wc-block-components-totals-wrapper {
    background: transparent;
    border: none;
    padding: 0;
}
.wc-block-components-totals-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(59,130,246,0.15);
}
.wc-block-components-totals-item:last-child { border-bottom: 0; }
.wc-block-components-totals-item__label { color: #b7c3e6; }
.wc-block-components-totals-item__value { color: #eaf2ff; font-weight: 700; }
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    color: var(--neon-cyan);
    font-size: 1.4rem;
    text-shadow: 0 0 12px rgba(34,211,238,0.3);
}
.wc-block-components-totals-footer-item .wc-block-components-totals-item__label { color: #cdd9ff; font-weight: 700; }

.wc-block-cart-item__product { padding: .2rem 0; }
.wc-block-cart-item__total { text-align: right; min-width: 90px; }
.wc-block-cart-item__total .wc-block-components-product-price,
.wc-block-cart-item__total .wc-block-formatted-money-amount {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(34,211,238,0.35);
}
.wc-block-cart-item__remove-link {
    color: #ff9fb0;
    text-decoration: none;
    font-weight: 700;
    font-size: .9rem;
}
.wc-block-cart-item__remove-link:hover { text-shadow: 0 0 10px rgba(255,120,140,0.6); }

@media (max-width: 780px) {
  .wc-block-cart-items__row { grid-template-columns: 76px 1fr; }
  .wc-block-cart-item__total { grid-column: 2; justify-self: end; }
}
/* ---------- CHECKOUT PAGE ---------- */
.steps {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin: 3rem 0;
}
.step {
    background: rgba(255,255,255,0.02);
    padding: 0.8rem 2rem;
    border-radius: 60px;
    border: 1px solid #334155;
}
.step.active {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px var(--neon-cyan);
}
.checkout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}
.input-field, .input-text, .select2-selection {
    background: rgba(0,0,0,0.3) !important;
    border: 1px solid #334155 !important;
    border-radius: 60px !important;
    padding: 1.2rem 2rem !important;
    width: 100% !important;
    color: white !important;
    margin: 0.5rem 0 1.5rem 0 !important;
    transition: 0.2s !important;
    height: auto !important;
}
.input-field:focus, .input-text:focus {
    border-color: var(--neon-cyan) !important;
    box-shadow: 0 0 25px var(--neon-cyan) !important;
    outline: none !important;
}
.woocommerce-checkout label {
    font-weight: 600;
    margin-left: 1rem;
}

/* ---------- MY ACCOUNT ---------- */
.account-dashboard {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}
.sidebar-nav, .woocommerce-MyAccount-navigation {
    background: rgba(20,28,44,0.6);
    backdrop-filter: blur(12px);
    border-radius: 50px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100% !important;
    float: none !important;
}
.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.sidebar-nav a, .woocommerce-MyAccount-navigation ul li a {
    color: #b0c8ff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 40px;
    background: rgba(255,255,255,0.02);
    display: block;
}
.sidebar-nav a:hover, .woocommerce-MyAccount-navigation ul li a:hover, .woocommerce-MyAccount-navigation ul li.is-active a { 
    background: rgba(59,130,246,0.3); 
}
.woocommerce-MyAccount-content {
    float: none !important;
    width: 100% !important;
}

/* ---------- LOGIN PAGE ---------- */
.split-screen {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    align-items: center;
}
.illustration {
    background: radial-gradient(circle at 30% 40%, var(--neon-blue) 0%, transparent 50%);
    height: 400px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    border: 1px solid var(--neon-cyan);
}
.login-tabs {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}
.password-toggle {
    position: relative;
}

/* responsive */
@media (max-width: 1100px) { .single-product { grid-template-columns: 1fr; } }
@media (max-width: 900px) {
    .single-product, .cart-layout, .checkout-grid, .account-dashboard, .split-screen {
        grid-template-columns: 1fr;
    }
    .navbar { flex-direction: column; gap: 1rem; }
    .product-grid-7030 { grid-template-columns: 1fr; }
    .product-info-side { position: static; top: auto; border-left: none; }
}

/* WordPress Core/WooCommerce overrides */
.woocommerce img, .woocommerce-page img {
    height: auto;
    max-width: 100%;
}
.woocommerce-loop-product__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    margin-top: 0;
}
.woocommerce-loop-product__link {
    text-decoration: none;
    color: inherit;
    display: block;
    flex: 1;
}
.price {
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0.5rem 0;
}
.price, .amount, .woocommerce-Price-amount, .woocommerce-Price-currencySymbol, .woocommerce-Price-amount bdi {
    font-family: var(--font-num);
    font-feature-settings: "tnum" 1, "lnum" 1;
    letter-spacing: 0.02em;
}
.woocommerce-loop-product__link:hover .product-thumb {
    transform: scale(1.05);
    transition: 0.3s;
}

/* reviews block */
.reviews-block .commentlist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1rem; }
.reviews-block .commentlist li { background: rgba(18,22,30,0.8); border: 1px solid rgba(59,130,246,0.25); border-radius: 18px; padding: 1rem; }
.reviews-block .commentlist .meta { color: #b7ccff; font-size: 0.9rem; margin-bottom: 0.4rem; }
.reviews-block .commentlist .description { color: #eaf2ff; }
.reviews-grid { display: grid; grid-template-columns: 7fr 3fr; gap: 1.5rem; }
.reviews-side { position: sticky; top: 90px; align-self: start; }
.reviews-summary { text-align: center; }
.reviews-summary .summary-score { font-size: 3rem; font-weight: 800; color: var(--neon-cyan); text-shadow: 0 0 18px rgba(34,211,238,0.35); }
.reviews-summary .summary-stars { color: gold; letter-spacing: 4px; margin: 0.4rem 0; font-size: 1.2rem; }
.reviews-summary .summary-count { color: #b7c3e6; }
.reviews-block .comment-form input[type="text"], 
.reviews-block .comment-form input[type="email"],
.reviews-block .comment-form textarea, 
.reviews-block .comment-form select {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(59,130,246,0.25);
    color: #eaf2ff;
    border-radius: 12px;
    padding: 0.9rem 1rem;
    width: 100%;
}
.reviews-block .comment-form textarea { min-height: 120px; }
.reviews-block .comment-form input:focus, 
.reviews-block .comment-form textarea:focus, 
.reviews-block .comment-form select:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 0 3px rgba(34,211,238,0.25);
    outline: none;
}
.reviews-block .comment-form p { margin: 0 0 1rem; }
.reviews-block .comment-form-rating label { display: block; margin-bottom: 0.4rem; font-weight: 600; }
.reviews-block .comment-form p.stars { margin-top: 0.2rem; user-select: none; }
/* Pretty star control for Woo rating links */
.reviews-block .comment-form p.stars a {
    display: inline-block;
    width: 28px;
    height: 28px;
    margin-right: 6px;
    text-indent: -9999px;
    position: relative;
    filter: drop-shadow(0 0 0 transparent);
}
.reviews-block .comment-form p.stars a::before {
    content: '★';
    position: absolute;
    inset: 0;
    text-indent: 0;
    color: #64748b;
    font-size: 24px;
    line-height: 28px;
    text-align: center;
    transition: color .2s, text-shadow .2s, transform .1s;
}
.reviews-block .comment-form p.stars a:hover::before,
.reviews-block .comment-form p.stars a:focus::before,
.reviews-block .comment-form p.stars a.active::before {
    color: #facc15;
    text-shadow: 0 0 10px rgba(250, 204, 21, 0.6);
}
.reviews-block .comment-form select#rating { display: none; }
.reviews-block .form-submit input[type="submit"] {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    border: none;
    padding: 0.9rem 1.6rem;
    border-radius: 50px;
    color: black;
    font-weight: 700;
    cursor: pointer;
}

/* (product code embed styles removed) */

/* font updates */
:root { 
    --font-display: 'Space Grotesk', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; 
    --font-num: 'Space Grotesk', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; 
}
html { font-size: 15px; }
.logo, .section-title { font-family: var(--font-display); }
.amount, .woocommerce-Price-amount, .woocommerce-Price-currencySymbol, .woocommerce-Price-amount bdi { 
    font-family: var(--font-num); 
    font-feature-settings: "tnum" 1, "lnum" 1; 
    letter-spacing: 0.02em; 
}
/* demo/extra login styles removed on request */

/* ---------- FOOTER ---------- */
.site-footer {
    margin-top: 4rem;
    padding: 2rem;
    border-radius: 60px;
    background: rgba(5,8,15,0.6);
    border: 1px solid rgba(59,130,246,0.25);
    box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    align-items: center;
}
.footer-brand .brand-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.4rem;
    background: linear-gradient(130deg, #fff, var(--neon-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.footer-brand .brand-tagline {
    color: #b7c3e6;
    margin-top: 0.3rem;
}
.footer-brand .copyright {
    color: #93a4c9;
    margin-top: 0.6rem;
    font-size: 0.95rem;
}
.footer-social {
    display: flex;
    gap: 0.8rem;
    justify-content: end;
}
.footer-social .social-link {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(59,130,246,0.35);
    color: #eaf2ff;
    transition: 0.2s;
    text-decoration: none;
}
.footer-social .social-link:hover {
    background: rgba(59,130,246,0.25);
    box-shadow: 0 0 18px rgba(34,211,238,0.35);
    color: white;
}
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-social {
        justify-content: center;
    }
}
