/* Weingut Plugin Styles */

.wg-box {
    padding: 20px;
    background: #f5f5f5;
    margin-top: 20px;
}


/*Layout für Weinsteckbrief */
.wg-wine-specs {
    background: #fafafa;
    padding: 20px;
    margin-top: 20px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.wg-wine-specs h3 {
    margin-bottom: 15px;
    font-size: 1.3em;
    color: #5b2c1d;
}

.wg-wine-specs ul {
    list-style: none;
    padding: 0;
}

.wg-wine-specs li {
    padding: 6px 0;
    border-bottom: 1px solid #eee;
}

.wg-wine-specs li:last-child {
    border-bottom: none;
}

.wg-wine-specs strong {
    margin-right: 8px;
}

/* -------------------------------
   WooCommerce Versandzusatzinfos
---------------------------------*/
.wg-versandinfo {
    font-size: 0.7em;    /* kleinere Schriftgröße */
    color: #555;         /* graue Farbe */
    margin-top: 5px;     /* Abstand nach oben */
}

/* -------------------------------
   WooCommerce Tab Content Styling
---------------------------------*/

/* Tab Content - sichtbares Panel */
.woocommerce div.product .woocommerce-tabs .panel {
    font-size: 100%; /* Standard */
    background-color: transparent;
    padding: 1em;
    transition: all 0.2s ease;
}

/* Nur sichtbares Panel ansprechen */
.woocommerce div.product .woocommerce-tabs .panel[style*="display: block"] {
    font-size: 75%;           /* Schriftgröße für den Inhalt */
    background-color: lightgrey; /* Hintergrundfarbe */
}

.acf-steckbrief-table-container,
.acf-nutri-table-container {
    width: 66.666%;      /* 2/3 Breite */
    margin: 0;           /* linksbündig */
}

.acf-steckbrief-table,
.acf-nutri-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    background-color: #fff; /* optional leichter Hintergrund */
}

.acf-steckbrief-table td,
.acf-nutri-table td {
    padding: 8px 10px;
    border: 1px solid #ddd;
    text-align: left;
    vertical-align: top;
}

/* Zebra-Effekt für Desktop */
.acf-steckbrief-table tr:nth-child(even),
.acf-nutri-table tr:nth-child(even) {
    background-color: #f9f9f9;
}



/* Modern Quantity Box */
.woocommerce .quantity {
    border: 2px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    display: inline-flex;
}

/* Input */
.woocommerce .quantity input.qty {
    border: none;
    width: 60px;
    font-size: 18px;
}

/* Buttons */
.woocommerce .quantity button {
    background: #111;
    color: #fff;
    border: none;
    width: 40px;
    cursor: pointer;
    font-size: 18px;
}

.woocommerce .quantity button:hover {
    background: #444;
}

