/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price, .woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price, .price {
    color: #D1A951 !important;
    font-size: 1.25em !important;
    font-weight: 400 !important;
    font-family: "Georgia", Sans-serif !important;
}

.woocommerce table.shop_attributes th {
    text-align: left;
    padding: 12px;
    font-weight: normal;
}


table.shop_attributes td p {
    padding: 12px !important;
    text-align: right;
}

.woocommerce-tabs ul.wc-tabs li.active a {
    color: #FFFFFF;
    background: #D1A951;
}
.custom-product-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.custom-product-item {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 30px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 30px;
}

.custom-product-image {
    flex: 0 0 30%;
    order: 1;
    padding-top: 20px;
}

.custom-product-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
    display: block;
}

.custom-product-info {
    flex: 0 0 70%;
    order: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-title a {
    text-decoration: none;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
}

.product-description {
    margin: 10px 0;
    color: #fff;
    line-height: 1.5;
    width: 95%;

}

.price {
    font-weight: bold;
    font-size: 1.1rem;
    color: #D1A951;
}

/* 📱 Mobil: Bild über Text */
@media (max-width: 768px) {
    .custom-product-item {
        flex-direction: column;
    }

    .custom-product-image,
    .custom-product-info {
        flex: 0 0 100%;
        width: 100%;
        order: initial;
    }
}