/* HerbalBee WooCommerce */


/* główny układ */

.herbalbee-product {

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 60px;

    max-width: 1200px;

    margin: 60px auto;

    padding: 30px;

}



/* zdjęcie produktu */

.product-image {

    text-align: center;

}


.product-image img {

    max-width: 100%;

    border-radius: 20px;

}



/* prawa strona */

.product-details {

    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 20px;

}



/* nazwa */

.product-details h1 {

    font-size: 42px;

    line-height: 1.2;

}



/* cena */

.product-price {

    font-size: 28px;

    font-weight: 600;

}



/* opis */

.product-description {

    font-size: 18px;

    line-height: 1.6;

}



/* warianty */

.variations select {

    padding: 12px;

    border-radius: 8px;

    border: 1px solid #ccc;

}



/* ilość */

.quantity input {

    padding: 12px; 

    border-radius: 8px;

}



/* przycisk */

.product-cart .button {

    background: #6b8e23;

    color: white;

    border: none;

    border-radius: 30px;

    padding: 15px 35px;

    font-size: 18px;

    cursor: pointer;

}



.product-cart .button:hover {

    opacity: 0.85;

}



/* zakładki */

.product-tabs {

    max-width: 1200px;

    margin: 40px auto;

}

/* ilość produktu */

.product-cart .quantity {

    display: inline-flex;

    margin-right: 15px;

}


.product-cart .quantity input {

    width: 70px;

    height: 45px;

    text-align: center;

    font-size: 18px;

}

