/* ==========================================================================
   FREEWEBSTORE CUSTOM STYLESHEET
   Aesthetic: Dark Cyber Streetwear with Neon Blue Glows
   ========================================================================== */

/* Import a sharp, clean, high-impact sans-serif font for the streetwear look */
@import url('https://googleapis.com');

/* 1. Global Page Theme & Typography Update */
body, 
html, 
#page, 
.fw-body-wrapper {
    background-color: #000000 !important;
    color: #ffffff !important;
    font-family: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif !important;
}

/* 2. Navigation Bar Styling */
header, 
.header-wrapper, 
#fw-header, 
.navbar {
    background-color: #000000 !important;
    border-bottom: 1px solid #1a1a1a !important;
    padding: 25px 0 !important;
}

/* Nav Links Styling */
.nav-links a, 
#fw-menu a, 
.navigation a {
    color: #888888 !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: color 0.3s ease !important;
}

/* Active and Hover States */
.nav-links a:hover, 
#fw-menu a:hover, 
.navigation a:hover,
.nav-links a.active {
    color: #ffffff !important;
}

/* Accent link matching the 'MANIFESTE' blue tint from the image */
.nav-links a.special, 
#fw-menu li:last-child a {
    color: #00f3ff !important; /* Updated to neon blue to match the theme */
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.4);
}

/* 3. Primary Red Glowing CTA Buttons */
button, 
.btn, 
.button, 
input[type="submit"], 
.fw-btn-primary, 
.add-to-cart-btn {
    background-color: transparent !important;
    color: #ff003c !important;
    border: 1px solid #ff003c !important;
    padding: 12px 35px !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    cursor: pointer !important;
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.2) !important;
    transition: all 0.3s ease !important;
    border-radius: 0px !important; /* Sharp architectural edges */
}

button:hover, 
.btn:hover, 
.button:hover, 
input[type="submit"]:hover,
.add-to-cart-btn:hover {
    background-color: #ff003c !important;
    color: #ffffff !important;
    box-shadow: 0 0 25px rgba(255, 0, 60, 0.6) !important;
}

/* 4. Product Grids & Cards (With Ambient Neon Blue Highlights) */
.product-grid, 
.product-list, 
#fw-products {
    background-color: #000000 !important;
    gap: 20px !important; /* Added gap to let the neon glow pop around individual cards */
    padding: 20px !important;
    border-top: 1px solid #1a1a1a !important;
}

.product-card, 
.product-item, 
.fw-product-thumb {
    background-color: #111111 !important;
    border: 1px solid #1a1a1a !important;
    padding: 30px 15px !important;
    position: relative !important;
    overflow: visible !important; /* Allows the glow to bleed outward cleanly */
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease !important;
}

/* The Neon Glow Interaction */
.product-card:hover, 
.product-item:hover, 
.fw-product-thumb:hover {
    transform: translateY(-5px) !important; /* Subtle lift effect */
    border-color: #00f3ff !important; /* Changes border to vibrant cyan */
    /* Intense blue ambient drop-shadow neon glow */
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.35), 
                inset 0 0 15px rgba(0, 243, 255, 0.1) !important;
}

/* Image adjustments inside product cards */
.product-card img, 
.product-item img {
    filter: brightness(0.85) contrast(1.1) !important;
    transition: transform 0.5s ease, filter 0.5s ease !important;
}

.product-card:hover img, 
.product-item:hover img {
    transform: scale(1.03) !important;
    filter: brightness(1) contrast(1.1) !important;
}

/* Product Info Text Styling */
.product-title, 
.product-name a {
    color: #ffffff !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    margin-top: 15px !important;
    display: block;
}

.product-price, 
.price {
    color: #888888 !important;
    font-weight: 400 !important;
    transition: color 0.3s ease !important;
}

.product-card:hover .product-price,
.product-item:hover .price {
    color: #00f3ff !important; /* Prices light up blue on hover */
}

/* 5. Typography Headers */
h1, h2, h3, 
.hero-heading, 
.section-title {
    color: #ffffff !important;
    text-transform: uppercase !important;
    font-weight: 900 !important;
    letter-spacing: -0.5px !important;
    line-height: 1.1 !important;
}

/* 6. Footer Adjustments */
footer, 
#fw-footer, 
.footer-wrapper {
    background-color: #000000 !important;
    border-top: 1px solid #1a1a1a !important;
    padding: 40px 20px !important;
    text-align: center !important;
    font-size: 0.7rem !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: #666666 !important;
}