/* General styling for the single product page */
.single-product {
    font-family: 'Arial', sans-serif;
    background-color: #f8f8f8;
}

/* Product title styling */
.single-product .product_title {
    font-size: 28px;
    color: #222;
    font-weight: bold;
    text-transform: capitalize;
    margin-bottom: 15px;
}

/* Style the price */
.single-product .woocommerce-Price-amount {
/*     font-size: 24px;
    color: #ff5722; */
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

/* Style the short description */
.single-product .woocommerce-product-details__short-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Style the quantity input */
.single-product form.cart .quantity input {
    width: 60px;
    height: 40px;
    text-align: center;
    font-size: 18px;
    border-radius: 5px;
}

/* Style the Add to Cart button */
.single-product .single_add_to_cart_button {
    background: linear-gradient(135deg, #ff6600, #ff4500);
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.single-product .single_add_to_cart_button:hover {
    background: linear-gradient(135deg, #cc4400, #aa3300);
    transform: scale(1.05);
}

/* Style the Buy Now button (if you have one) */
.single-product .buy-now-button {
    background: #28a745 !important;
    color: white;
    padding: 12px 25px;
    font-size: 18px;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 10px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

.single-product .buy-now-button:hover {
    background: #1e7e34;
    transform: scale(1.05);
}

/* Style product images */
.single-product .woocommerce-product-gallery {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Style product thumbnails */
.single-product .woocommerce-product-gallery .flex-control-thumbs li img {
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    border: 2px solid transparent;
}

.single-product .woocommerce-product-gallery .flex-control-thumbs li img:hover {
    border-color: #ff5722;
    transform: scale(1.1);
}

/* Review Section */
.woocommerce-Reviews {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.woocommerce-Reviews h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .single-product {
        padding: 10px;
    }
    
    .single-product .product_title {
        font-size: 28px;
        text-align: center;
    }
    
    .single-product .woocommerce-Price-amount {
        font-size: 20px;
        text-align: center;
    }
    
    .single-product .single_add_to_cart_button,
    .single-product .buy-now-button {
        width: 100%;
        text-align: center;
    }
}
