/* =========================================
   LEISTUNGEN – Layout
========================================= */

.leistungen-section {
    max-width: 1100px;
    margin: 40px auto;
    text-align: center;
}

.leistungen-subtitle {
    margin-top: -10px;
    color: #666;
    font-size: 18px;
}

/* =========================================
   GRID
========================================= */

.leistungen-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

/* =========================================
   PREMIUM CARD STYLE
========================================= */

.leistung-card,
.variant-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    transition: 0.25s ease;
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
}

.leistung-card:hover,
.variant-card:hover {
    border-color: #3AAADD;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.leistung-card h3,
.variant-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #3AAADD;
}

.leistung-card .desc,
.variant-card .desc {
    color: #444;
    font-size: 15px;
    line-height: 1.45;
    margin-bottom: 18px;
}

/* =========================================
   UNTERE ZEILE
========================================= */

.bottom-row {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* =========================================
   VARIANTEN (S/M/L)
========================================= */

.variant-selector {
    display: flex;
    gap: 8px;
}

.variant-selector button {
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid #3AAADD;
    background: #fff;
    cursor: pointer;
    font-weight: 600;
    color: #3AAADD;
    transition: 0.15s;
}

.variant-selector button.active,
.variant-selector button:hover {
    background: #3AAADD;
    color: #fff;
}

/* =========================================
   PREIS
========================================= */

.price {
    font-size: 18px;
    color: #96BA3B;
    font-weight: 600;
    margin: 0;
}

.price-value {
    color: #96BA3B;
}

/* =========================================
   SIZE-INFO
========================================= */

.size-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 10px 12px;
    background: #f7f7f7;
    border-radius: 10px;
}

.size-text {
    font-size: 14px;
    color: #444;
    line-height: 1.35;
}

.size-text strong {
    color: #3AAADD;
}

.size-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.size-image img {
    width: 60px;
    opacity: 0.9;
    transition: transform 0.25s ease;
}

/* Skalierung */
.size-s { transform: scale(0.75); }
.size-m { transform: scale(1.25); }
.size-l { transform: scale(1.25); }