/* FORCE FULL PAGE DARK */
html, body.single-product, #page, #content, .site-main {
    background-color: #0d0f11 !important;
}

/* Remove any container width limits */
body.single-product .ast-container, 
body.single-product .container, 
body.single-product .site-content {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Main Product Wrapper */
body.single-product div.product {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    padding: 50px 10% !important; /* Centers the content like the image */
    background: transparent !important;
}

/* Product Image (Left Side) */
body.single-product .woocommerce-product-gallery {
    width: 55% !important;
    margin-right: 5% !important;
}

/* Purchase Box (Right Side) */
body.single-product .summary.entry-summary {
    width: 40% !important;
    background: #161a1e !important;
    padding: 40px !important;
    border-radius: 15px !important;
    border: 1px solid #2a2e33 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Add to Cart Button */
body.single-product .single_add_to_cart_button {
    background-color: #0066ff !important;
    width: 100% !important;
    padding: 20px !important;
    font-size: 18px !important;
    border-radius: 10px !important;
    margin-top: 20px !important;
}

/* Feature Grid */
.egw-feature-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.egw-feature-item {
    background: #1c1f22;
    padding: 20px;
    border-radius: 10px;
    color: #fff;
    border-left: 4px solid #ffcc00;
}