/* --- Single Product Styles --- */

.product-image-container {
    margin-bottom: 30px;
    text-align: center;
}

.product-image-container img {
    display: inline-block;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

/* Order Form Container */
.order-form-container {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    max-width: 100%;
    margin: 0 auto 30px;
}

.order-form-container .wpcf7-form {
    box-shadow: none;
    border: none;
    padding: 0;
    background: transparent;
}

.order-form-container .form-title {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Product Price Single View */
.product-price.single-view {
    color: #e30000;
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    background: #fff5f5;
    padding: 15px;
    border-radius: 8px;
    border: 1px dashed #ffcccc;
    margin-bottom: 25px;
    box-shadow: 0 2px 5px rgba(227, 0, 0, 0.05);
    display: block;
}