/*
Theme Name: Astra Child
Description: Child theme for Astra
Author: Your Name
Template: astra
Version: 1.0.0
*/

.productcontainer {
    width: 90vw !important;
    margin: 0 auto !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.productcontainer img{
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border: 1px solid #000;
}

.productcontainer .producttextcontainer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.product-detail-block {
    border: 1px solid #ddd;
    padding: 20px;
    max-width: 500px;
    margin: 20px auto;
    background: #fff;
    border-radius: 8px;
    text-align: center;
}

.product-detail-block .product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 15px;
}

.product-detail-block .product-name {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.product-detail-block .product-meta {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 10px;
}

.product-detail-block .product-location,
.product-detail-block .product-flavor,
.product-detail-block .product-taste {
    font-size: 0.95em;
    color: #666;
    margin: 4px 0;
}

.product-detail-block .buy-button {
    display: inline-block;
    padding: 10px 20px;
    background: #e67e22;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.product-detail-block .buy-button:hover {
    background: #d35400;
}

.product-detail-block .buy-button.disabled {
    background: #ccc;
    cursor: not-allowed;
}