/*
Theme Name: Hello Elementor Child
Template: hello-elementor
Version: 1.0.0
*/

:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --accent-color: #333333;
    --gray-light: #f5f5f5;
    --gray-medium: #888888;
    --font-primary: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* NUCLEAR RESET */
a, button, input, select, textarea { 
    outline: none !important; 
    box-shadow: none !important; 
    -webkit-tap-highlight-color: transparent;
}

/* GLASS HEADER */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    max-width: 1600px;
    margin: 0 auto;
}

.brand-logo {
    font-weight: 900;
    font-size: 24px;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
}

.nav-desktop {
    display: none;
}

@media (min-width: 768px) {
    .nav-desktop { display: flex; gap: 30px; }
    .nav-item { color: #000; text-decoration: none; font-weight: 500; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
    .nav-item:hover { opacity: 0.6; }
}

/* INSIDER FOOTER */
.site-footer {
    background: #111;
    color: #fff;
    padding: 60px 5% 40px;
    font-size: 12px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}
.footer-col h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #888;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #fff; text-decoration: none; transition: 0.2s; }
.footer-col a:hover { color: #888; }



/* INSIDER ENGINE: Product Page */

/* LAYOUT: 65% Gallery / 35% Info */
@media (min-width: 900px) {
    .single-product div.product {
        display: flex !important;
        flex-wrap: wrap !important;
        max-width: 1400px;
        margin: 0 auto;
        padding-top: 40px;
    }
    
    /* LEFT: Vertical Gallery (Insider Style) */
    .woocommerce-product-gallery {
        width: 65% !important;
        float: left !important;
        margin-right: 0 !important;
        padding-right: 60px !important;
    }
    
    /* Remove Slider script interference if possible, or force grid */
    .woocommerce-product-gallery__wrapper {
        display: grid !important;
        grid-template-columns: 1fr 1fr; /* 2 Col Grid like Live!/Insider */
        gap: 10px;
    }
    
    .woocommerce-product-gallery__image {
        width: 100% !important;
        display: block !important;
    }
    
    /* RIGHT: Sticky Summary */
    .summary.entry-summary {
        width: 35% !important;
        float: right !important;
        position: sticky !important;
        top: 120px !important; /* Below Glass Header */
        height: fit-content !important;
        padding-left: 20px;
    }
}

@media (max-width: 899px) {
    .woocommerce-product-gallery__wrapper {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }
    .woocommerce-product-gallery__image {
        min-width: 85vw;
        scroll-snap-align: center;
        margin-right: 10px;
    }
}

/* TYPOGRAPHY & ELEMENTS */
.product_title {
    font-size: 28px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.price {
    font-size: 20px !important;
    color: #333 !important;
    font-weight: 500;
}

/* ADD TO CART - INSIDER SPEED */
.single_add_to_cart_button {
    background: #000 !important;
    color: #fff !important;
    width: 100%;
    padding: 18px !important;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px !important; /* Insider slight radius */
    border: none !important;
    margin-top: 20px;
    transition: transform 0.2s;
}
.single_add_to_cart_button:hover {
    transform: scale(1.02);
    background: #222 !important;
}

/* SWATCHES (If default variants) */
.variations select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 100%;
}

