/* Preise Tabelle - Smooth Laser Clinic Style */
:root {
    --color-primary: #ff7d57;
    --color-gray: #dcdbd7;
    --color-text: #3a3737;
    --color-white: #ffffff;
}

.preise-tabelle-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
    background-color: var(--color-gray);
}

.preise-header {
    text-align: center;
    margin-bottom: 40px;
}

.preise-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
}

.preise-subtitle {
    font-size: 1.2rem;
    color: var(--color-text);
    font-weight: 400;
}

/* Paket Tablosu */
.paket-table-section {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.paket-table-header {
    text-align: center;
    margin-bottom: 30px;
}

.paket-table-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 10px 0;
}

.paket-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.paket-table-container {
    width: 100%;
}

.paket-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.paket-table-header-row {
    display: flex;
    background: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
}

.paket-service-column {
    flex: 2;
    padding: 20px;
    font-weight: 600;
    color: var(--color-text);
}

.paket-price-column {
    flex: 1;
    padding: 20px;
    text-align: center;
    font-weight: 600;
    color: var(--color-text);
    border-left: 1px solid #e9ecef;
}

.paket-price-title {
    font-size: 1rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.paket-price-title::before {
    content: attr(data-main-title);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
}

.paket-price-title::after {
    content: attr(data-sub-title);
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
}

.paket-table-row {
    display: flex;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.3s ease;
}

.paket-table-row:hover {
    background-color: #f8f9fa;
}

.paket-service-cell {
    flex: 2;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.paket-badge {
    background: #000;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.paket-service-text {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.4;
    flex: 1;
}

.paket-price-cell {
    flex: 1;
    padding: 20px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    border-left: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Responsive Paket Tablosu */
@media (max-width: 768px) {
    .paket-table-section {
        padding: 30px 20px;
    }
    
    .paket-table-header-row {
        display: none; /* Başlık satırını gizle */
    }
    
    .paket-table-row {
        flex-direction: column;
        border: 1px solid #e9ecef;
        border-radius: 12px;
        margin-bottom: 20px;
        background: var(--color-white);
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        overflow: hidden;
    }
    
    .paket-service-cell {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 20px;
        background: var(--color-white);
    }
    
    .paket-badge {
        align-self: flex-start;
        margin-bottom: 8px;
        font-size: 0.7rem;
        padding: 6px 10px;
    }
    
    .paket-service-text {
        font-size: 1rem;
        font-weight: 500;
        color: var(--color-text);
        line-height: 1.4;
    }
    
    .paket-price-cell {
        flex: none;
        border-left: none;
        border-bottom: none;
        text-align: left;
        font-size: 1.1rem;
        font-weight: 600;
        padding: 16px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #f8f9fa;
        color: var(--color-primary);
        position: relative;
    }
    
    /* Fiyat etiketleri için özel stil */
    .paket-price-cell:first-of-type {
        border-bottom: 1px solid #ddd;
        background: #f1f3f4;
        margin-bottom: 1px;
    }
    
    .paket-price-cell::before {
        content: attr(data-label) ":";
        font-size: 0.8rem;
        color: #666;
        font-weight: 500;
    }
    
    .paket-price-cell::after {
        content: "";
        flex: 1;
    }
}

/* Cinsiyet Seçimi */
.gender-selection {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.gender-label {
    background: #e9ecef;
    padding: 12px 20px;
    border-radius: 6px 0 0 6px;
    font-weight: 600;
    color: var(--color-text);
    font-size: 1rem;
}

.gender-buttons {
    display: flex;
    gap: 10px;
}

.gender-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--color-gray);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.gender-button.active {
    background: var(--color-white);
    border-color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(255, 125, 87, 0.2);
}

.gender-image {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-gray);
}

.gender-button::after {
    content: '✓';
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 18px;
    height: 18px;
    background: var(--color-primary);
    border-radius: 50%;
    border: 2px solid var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--color-white);
    font-weight: bold;
    display: none;
}

.gender-button.active::after {
    display: flex;
}

.gender-button.active .gender-image {
    border-color: var(--color-primary);
}

.gender-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkmark {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: #ff6b6b;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    border: 2px solid white;
}

.gender-text {
    font-weight: 600;
    color: var(--color-text);
    font-size: 1rem;
}

/* Fiyat Tablosu */
.preise-tabelle-wrapper {
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.preise-table {
    width: 100%;
}

.table-header {
    background: var(--color-gray);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-gray);
}

.service-column {
    font-weight: 600;
    color: var(--color-text);
    font-size: 1.1rem;
}

.price-columns {
    display: flex;
    gap: 20px;
}

.price-column {
    text-align: center;
}

.price-title {
    font-weight: 700;
    color: var(--color-text);
    font-size: 1rem;
    margin-bottom: 5px;
}

.price-subtitle {
    font-size: 0.9rem;
    color: var(--color-text);
}

.table-body {
    padding: 0;
}

.service-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--color-gray);
    transition: background-color 0.3s ease;
}

.service-row:hover {
    background-color: var(--color-gray);
}

.service-row:last-child {
    border-bottom: none;
}

/* Kategorie Başlıkları */
.kategorie-header {
    background: var(--color-gray);
    padding: 15px 20px;
    border-bottom: 2px solid var(--color-gray);
    margin: 0;
}

.kategorie-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.service-label {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.beliebt-label {
    background: var(--color-primary);
    color: var(--color-white);
}

.kombination-label {
    background: var(--color-text);
    color: var(--color-white);
}

.service-name {
    font-weight: 500;
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.4;
}

.service-note {
    font-size: 0.85rem;
    color: var(--color-text);
    font-style: italic;
    margin-top: 5px;
}

.service-prices {
    display: flex;
    gap: 20px;
    align-items: center;
}

.price-cell {
    min-width: 60px;
    text-align: right;
    font-weight: 600;
    color: var(--color-text);
    font-size: 1rem;
}

.gender-content {
    display: block;
}

.gender-content.hidden {
    display: none;
}

/* Footer */
.preise-footer {
    background: var(--color-white);
    padding: 20px 20px;
    text-align: center;
    border-top: 1px solid var(--color-gray);
    margin-top: 10px;
}

.preise-note {
    font-size: 0.9rem;
    color: var(--color-text);
    margin: 0 0 20px 0;
    font-style: italic;
}

.cta-description {
    font-size: 1.1rem;
    color: var(--color-text);
    margin: 0 0 15px 0;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    margin-top: 20px;
}

.btn-termin {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 125, 87, 0.2);
    text-transform: none;
    letter-spacing: 0.3px;
    border: none;
}

.btn-termin:hover {
    background: var(--color-primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 125, 87, 0.3);
    color: var(--color-white);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .preise-tabelle-container {
        padding: 15px 8px;
    }
    
    .preise-header h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .preise-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .gender-selection {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .gender-buttons {
        width: 100%;
        justify-content: center;
        gap: 12px;
    }
    
    .gender-button {
        flex: 1;
        justify-content: center;
        padding: 15px 12px;
        font-size: 0.9rem;
        min-height: 60px;
        flex-direction: column;
        gap: 6px;
    }
    
    .gender-image {
        width: 50px;
        height: 50px;
        margin-bottom: 5px;
    }
    
    .preise-table {
        font-size: 0.8rem;
    }
    
    .table-header {
        padding: 10px 12px;
        font-size: 0.75rem;
    }
    
    .service-row {
        padding: 8px 12px;
        min-height: auto;
    }
    
    .service-name {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    .service-labels {
        gap: 4px;
    }
    
    .label {
        font-size: 0.65rem;
        padding: 2px 4px;
    }
    
    .kategorie-header {
        padding: 8px 12px;
    }
    
    .kategorie-header h3 {
        font-size: 0.8rem;
    }
    
    .price-cell {
        font-size: 0.8rem;
        min-width: 45px;
    }
    
    .cta-button {
        margin-top: 20px;
    }
    
    .btn-termin {
        padding: 8px 18px;
        font-size: 0.9rem;
        font-weight: 700;
    }
    
    .cta-description {
        font-size: 0.95rem;
        margin: 0 0 12px 0;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .preise-tabelle-container {
        padding: 10px 5px;
    }
    
    .preise-header h2 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .preise-subtitle {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }
    
    .gender-selection {
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .gender-button {
        padding: 12px 8px;
        font-size: 0.8rem;
        min-height: 55px;
        flex-direction: column;
        gap: 4px;
    }
    
    .gender-image {
        width: 50px;
        height: 50px;
        margin-bottom: 4px;
    }
    
    .gender-text {
        font-size: 0.75rem;
        margin-top: 2px;
    }
    
    .preise-table {
        font-size: 0.75rem;
    }
    
    .table-header {
        padding: 8px 10px;
        font-size: 0.7rem;
    }
    
    .service-row {
        padding: 6px 10px;
    }
    
    .service-name {
        font-size: 0.75rem;
        line-height: 1.1;
    }
    
    .service-labels {
        gap: 3px;
    }
    
    .label {
        font-size: 0.6rem;
        padding: 1px 3px;
    }
    
    .kategorie-header {
        padding: 6px 10px;
    }
    
    .kategorie-header h3 {
        font-size: 0.75rem;
    }
    
    .price-cell {
        font-size: 0.75rem;
        min-width: 40px;
    }
    
    .cta-button {
        margin-top: 15px;
    }
    
    .btn-termin {
        padding: 7px 15px;
        font-size: 0.85rem;
        font-weight: 700;
    }
    
    .cta-description {
        font-size: 0.85rem;
        margin: 0 0 10px 0;
        padding: 0 5px;
    }
}

/* Smooth animations */
.preise-tabelle-container * {
    box-sizing: border-box;
}

.service-row {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.service-row:nth-child(1) { animation-delay: 0.1s; }
.service-row:nth-child(2) { animation-delay: 0.2s; }
.service-row:nth-child(3) { animation-delay: 0.3s; }
.service-row:nth-child(4) { animation-delay: 0.4s; }
.service-row:nth-child(5) { animation-delay: 0.5s; }
.service-row:nth-child(6) { animation-delay: 0.6s; }
.service-row:nth-child(7) { animation-delay: 0.7s; }
.service-row:nth-child(8) { animation-delay: 0.8s; }
.service-row:nth-child(9) { animation-delay: 0.9s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading state */
.preise-tabelle-container.loading {
    opacity: 0.7;
}

.preise-tabelle-container.loaded {
    opacity: 1;
    transition: opacity 0.5s ease;
}