/* WooCommerce EDD Layout Styles */
.single-product div.product {
    display: flex;
    flex-wrap: wrap;
    gap: 5%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.single-product div.product .woocommerce-product-gallery {
    width: 45% !important;
    float: none !important;
}

.single-product div.product .summary.entry-summary {
    width: 50% !important;
    float: none !important;
    color: #0b1c3d; /* Dark blue text */
}

.single-product div.product .product_title {
    font-size: 2.2em;
    color: #0b1c3d;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.single-product div.product p.price {
    color: #0b1c3d;
    font-size: 1.25em;
    font-weight: normal;
}

.single-product div.product form.cart {
    margin-top: 30px;
    margin-bottom: 40px;
    border-top: 1px solid #e2e8f0;
    padding-top: 30px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 30px;
}

.single-product div.product form.cart .button {
    background-color: #0b1c3d !important;
    color: #ffffff !important;
    border-radius: 6px;
    padding: 15px 30px;
    font-size: 1em;
    font-weight: 600;
    transition: background-color 0.3s ease;
    width: auto;
}

.single-product div.product form.cart .button:hover {
    background-color: #1a365d !important;
}

/* Custom content area for Service Details & Instructions */
.wc-edd-custom-content {
    margin-top: 30px;
    color: #334155;
    font-size: 1em;
    line-height: 1.6;
}

.wc-edd-custom-content h3, 
.wc-edd-custom-content h4, 
.wc-edd-custom-content strong {
    color: #0b1c3d;
    margin-top: 20px;
    margin-bottom: 10px;
    display: block;
}

.wc-edd-custom-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.wc-edd-custom-content li {
    margin-bottom: 8px;
}

/* Previous/Next Navigation */
.wc-edd-product-navigation {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    font-size: 0.95em;
}

.wc-edd-product-navigation a {
    color: #475569;
    text-decoration: none;
    transition: color 0.3s ease;
}

.wc-edd-product-navigation a:hover {
    color: #0b1c3d;
}

/* Responsive */
@media (max-width: 768px) {
    .single-product div.product {
        flex-direction: column;
    }
    .single-product div.product .woocommerce-product-gallery,
    .single-product div.product .summary.entry-summary {
        width: 100% !important;
    }
    .single-product div.product .woocommerce-product-gallery {
        margin-bottom: 30px;
    }
}
