/* Single product page responsive */
.single-wine-page .product-main-content {
    padding: 60px 0;
}

.single-wine-page .product-images img {
    width: 100%;
    height: auto;
    border: 1px solid #eee;
}

.single-wine-page .product-details h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #202c2e;
}

.single-wine-page .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ad9945;
    margin-bottom: 20px;
}

.single-wine-page .description {
    margin-bottom: 30px;
    line-height: 1.6;
}

.single-wine-page .cart {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px; /* More space between quantity and add to cart */
}

.single-wine-page .quantity {
    display: block;
    margin-bottom: 10px; /* Space above Add to Cart button */
}

.single-wine-page .quantity {
    display: block;
    margin-bottom: 10px; /* Space above Add to Cart button */
}

.single-wine-page .single_add_to_cart_button {
    background: #ad9945;
    color: #fff;
    padding: 10px 30px;
    border: none;
    text-transform: uppercase;
    font-weight: 600;
    transition: 0.3s;
}

.single-wine-page .single_add_to_cart_button:hover {
    background: #202c2e;
}

.single-wine-page .product_meta {
    border-top: 1px solid #eee;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #666;
}

.single-wine-page .woocommerce-tabs {
    margin-top: 50px;
    border-top: 1px solid #eee;
    padding-top: 40px;
}

@media (max-width: 768px) {
    .single-wine-page .two-col-wrapper {
        flex-direction: column;
    }

    .single-wine-page [class*="col"] {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

/* Wine Metadata Styling */
.wine-metadata {
    border-left: 2px solid #ad9945;
    padding-left: 20px;
    margin: 25px 0;
}

.metadata-item {
    color: #000;
    font-size: 14px;
    margin-bottom: 20px;
}

.metadata-item strong {
    font-weight: 600;
    display: inline-block;
    margin-right: 5px;
    /* min-width: 70px; */
}

.view-product-detail .stock.in-stock {
    display: inline-block;
    border-radius: 100em;
    font-weight: 500;
    color: #59a883 !important;
    border: 1px solid;
    padding: 2px 10px;
}

.view-product-detail .stock.no-stock {
    display: inline-block;
    border-radius: 100em;
    font-weight: 500;
    color: red!important;
    border: 1px solid;
    padding: 2px 10px;
}

/* .metadata-item span {
    color: #202c2e;
    font-weight: 400;
} */

/* User added class support */
/* .wine-metadata1 {
    border-left: 2px solid #ad9945;
    padding-left: 20px;
    margin: 25px 0;
} */

.product-description {
    margin-top: 30px;
}

.product-description strong {
    font-size: 1.1rem;
    color: #202c2e;
    display: block;
    margin-bottom: 10px;
}