/* =========================================
   PREISLISTE STYLES
   ========================================= */

.prices-hero {
    height: 50vh;
    background: linear-gradient(rgba(74,110,94,0.7), rgba(74,110,94,0.7)),
                url('https://images.unsplash.com/photo-1554995207-c18c203602cb?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.prices-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.prices-hero h1 span {
    color: var(--secondary-color);
}

.prices-hero p {
    font-size: 1.2rem;
}

.price-list {
    padding: 80px 0;
    background: var(--bg-light);
}

/* Kategorie Header */
.category-header {
    text-align: center;
    margin: 60px 0 40px 0;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.category-header h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/* Grid Layout */
.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

/* Klassische Massage Karten */
.price-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.price-card.featured {
    border: 3px solid var(--secondary-color);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.price-header {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.price-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.price-card:hover .price-header img {
    transform: scale(1.1);
}

.price-header h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 20px;
    margin: 0;
    font-size: 1.5rem;
}

.price-body {
    padding: 30px;
}

.price-options {
    list-style: none;
    margin-bottom: 20px;
}

.price-options li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.price-options li:last-child {
    border-bottom: none;
}

.duration {
    font-weight: 500;
    color: var(--text-dark);
}

.price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    background: var(--bg-light);
    padding: 5px 15px;
    border-radius: 20px;
}

.description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 15px;
}

/* =========================================
   HEAD SPA ELEGANTE KARTEN
   ========================================= */

.head-spa-grid {
    gap: 40px;
}

/* Head Spa Card Spezial-Design */
.head-spa-card {
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    background: white;
}

.head-spa-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Premium Gold Card */
.head-spa-card.premium {
    border: 2px solid #ffd700;
    background: linear-gradient(135deg, #ffffff 0%, #fff9e6 100%);
}

/* Kids Red Card */
.head-spa-card.kids {
    border: 2px solid #ff6b6b;
    background: linear-gradient(135deg, #ffffff 0%, #fff0f0 100%);
}

/* Card Badges */
.card-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 2;
}

.card-badge.gold {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
}

.card-badge.red {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
}

/* Header Style */
.head-spa-card .price-header {
    height: 220px;
    position: relative;
}

.head-spa-card .price-header h3 {
    padding: 25px;
    font-size: 1.6rem;
}

.head-spa-card .tagline {
    position: absolute;
    bottom: 10px;
    left: 25px;
    right: 25px;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    margin: 0;
}

/* Body Style */
.head-spa-card .price-body {
    padding: 30px;
}

/* Preis und Dauer */
.price-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 2px solid var(--bg-light);
    margin-bottom: 25px;
}

.price-main .duration {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 500;
}

.price-main .price-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Features List */
.features-list h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.features-list h4::before {
    content: '✨';
    font-size: 1.2rem;
}

.features-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.features-list li i {
    color: var(--primary-color);
    margin-top: 3px;
    font-size: 0.9rem;
    min-width: 20px;
}

/* Info Box */
.price-info {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.price-info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-info ul {
    list-style: none;
}

.price-info li {
    padding: 10px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 30px;
}

.price-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    text-align: center;
    margin-top: 60px;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .head-spa-card .price-header {
        height: 180px;
    }
    
    .head-spa-card .price-header h3 {
        font-size: 1.3rem;
        padding: 20px;
    }
    
    .price-main .price-large {
        font-size: 1.5rem;
    }
    
    .card-badge {
        top: 15px;
        right: -30px;
        padding: 6px 30px;
        font-size: 0.75rem;
    }
}
/* =========================================
   MODERNE HEAD SPA TABELLE
   ========================================= */

.modern-table-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 60px;
    overflow-x: auto;
    border: 1px solid rgba(0,0,0,0.05);
}

.head-spa-modern-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 900px;
}

/* Table Header */
.head-spa-modern-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.head-spa-modern-table th {
    padding: 25px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 3px solid rgba(255,255,255,0.2);
}

.head-spa-modern-table th:first-child {
    border-top-left-radius: 20px;
}

.head-spa-modern-table th:last-child {
    border-top-right-radius: 20px;
}

.head-spa-modern-table .price-header {
    text-align: center;
    width: 120px;
}

.head-spa-modern-table .details-header {
    width: 45%;
}

.head-spa-modern-table .badge-header {
    width: 80px;
}

/* Table Body */
.head-spa-modern-table tbody tr {
    transition: all 0.3s ease;
    position: relative;
}

.head-spa-modern-table tbody tr:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(to right, transparent, #eee, transparent);
}

.head-spa-modern-table tbody tr:hover {
    background: rgba(74,110,94,0.02);
    transform: scale(1.01);
}

/* Premium & Kids Rows */
.premium-row {
    background: linear-gradient(135deg, #fff9e6, #fff0cc);
    border-left: 5px solid #ffd700;
}

.kids-row {
    background: linear-gradient(135deg, #ffe6e6, #ffd6d6);
    border-left: 5px solid #ff6b6b;
}

/* Cells */
.head-spa-modern-table td {
    padding: 30px 20px;
    vertical-align: top;
}

/* Treatment Cell */
.treatment-cell {
    padding-left: 25px !important;
}

.treatment-name {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.treatment-name i {
    color: var(--primary-color);
    font-size: 1.4rem;
}

.treatment-subtitle {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
    font-style: italic;
    padding-left: 32px;
}

/* Duration Cell */
.duration-cell {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1.1rem;
    text-align: center;
}

/* Price Cell */
.price-cell {
    text-align: center;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    background: var(--bg-light);
    padding: 10px 15px;
    border-radius: 15px;
    display: inline-block;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Details Cell */
.details-cell {
    padding-right: 25px !important;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 8px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-light);
    padding: 5px 0;
}

.detail-item i {
    color: var(--primary-color);
    font-size: 0.9rem;
    min-width: 20px;
}

/* Badge Cell */
.badge-cell {
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.badge.premium {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
}

.badge.kids {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .modern-table-container {
        border-radius: 15px;
        margin: 0 -10px;
    }
    
    .head-spa-modern-table th {
        padding: 15px 10px;
        font-size: 1rem;
    }
    
    .head-spa-modern-table td {
        padding: 20px 10px;
    }
    
    .treatment-name {
        font-size: 1.1rem;
    }
    
    .price-amount {
        font-size: 1.2rem;
        padding: 8px 10px;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    
    .detail-item {
        font-size: 0.85rem;
    }
}

/* Print Styles */
@media print {
    .modern-table-container {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .head-spa-modern-table tbody tr:hover {
        background: transparent;
        transform: none;
    }
    
    .price-amount {
        background: transparent;
        box-shadow: none;
    }
}
/* =========================================
   GESICHTS- & HAARBEHANDLUNGEN - VERTIKALES LAYOUT
   ========================================= */

.treatment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

/* Einzelne Behandlungskarte */
.treatment-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

/* Header mit Titel und Preis */
.treatment-card-header {
    padding: 30px 30px 20px 30px;
    text-align: center;
    background: linear-gradient(to bottom, #ffffff, #f9f9f9);
}

.treatment-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.treatment-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

/* Dekorative Trennlinie */
.treatment-divider {
    border: none;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    margin: 0 auto;
    width: 80%;
}

/* Bild */
.treatment-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* Beschreibungstext */
.treatment-card-body {
    padding: 25px 30px 30px 30px;
}

.treatment-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    text-align: center;
}

/* Featured Karte mit Badge */
.treatment-card.featured {
    border: 3px solid var(--secondary-color);
}

.treatment-card.featured::before {
    content: 'TOP';
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--secondary-color);
    color: white;
    padding: 6px 40px;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    z-index: 10;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .treatment-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .treatment-card-header {
        padding: 25px 20px 15px 20px;
    }
    
    .treatment-title {
        font-size: 1.5rem;
    }
    
    .treatment-price {
        font-size: 1.4rem;
    }
    
    .treatment-image {
        height: 180px;
    }
    
    .treatment-card-body {
        padding: 20px;
    }
}
/* =========================================
   HEAD SPA KARTEN - VERTIKALES LAYOUT
   ========================================= */

.treatment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

/* Einzelne Behandlungskarte */
.treatment-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

/* Header mit Titel, Preis und Divider */
.treatment-card-header {
    padding: 30px 30px 20px 30px;
    text-align: center;
    background: linear-gradient(to bottom, #ffffff, #f9f9f9);
}

.treatment-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.treatment-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

/* Dekorative Trennlinie */
.treatment-divider {
    border: none;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    margin: 0 auto;
    width: 80%;
}

/* Bild */
.treatment-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* Body mit Leistungen und Dauer */
.treatment-card-body {
    padding: 25px 30px 30px 30px;
}

.treatment-details {
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 5px 0;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.detail-item i {
    color: var(--primary-color);
    margin-top: 3px;
    font-size: 0.8rem;
    min-width: 16px;
}

.treatment-duration {
    text-align: center;
    font-weight: 600;
    color: var(--accent-color);
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 0.95rem;
}

.treatment-duration i {
    margin-right: 5px;
}

/* Kids-Karte mit rotem Akzent */
.treatment-card.kids-card {
    border: 2px solid #ff6b6b;
    background: linear-gradient(to bottom, #ffffff, #fff0f0);
}

.treatment-card.kids-card .treatment-price {
    color: #ff6b6b;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .treatment-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .treatment-card-header {
        padding: 25px 20px 15px 20px;
    }
    
    .treatment-title {
        font-size: 1.5rem;
    }
    
    .treatment-price {
        font-size: 1.4rem;
    }
    
    .treatment-image {
        height: 180px;
    }
    
    .treatment-card-body {
        padding: 20px;
    }
    
    .detail-item {
        font-size: 0.85rem;
    }
}