/* Termin Vereinbaren Styles */
:root {
    --color-primary: #ff7d57;
    --color-gray: #dcdbd7;
    --color-text: #3a3737;
    --color-white: #ffffff;
}
.termin-container {
    margin: 0 auto;
    padding: 20px;
    background: var(--color-gray);
    border-radius: 12px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.termin-header {
    text-align: center;
    margin-bottom: 30px;
}

.termin-header h2 {
    color: var(--color-text);
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.termin-subtitle {
    color: var(--color-text);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--color-gray);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary));
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Form Styles */
.termin-form {
    background: var(--color-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-group {
    margin-bottom: 20px;
    overflow: visible;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.95rem;
}

.required {
    color: var(--color-primary);
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--color-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--color-white);
}

/* Telefon Input Tasarımı */
.phone-input-container {
    display: flex;
    border: 2px solid var(--color-gray);
    border-radius: 8px;
    background: var(--color-white);
    overflow: visible;
    transition: all 0.3s ease;
    position: relative;
    flex-direction: row;
    align-items: center;
    min-height: 48px;
}

.phone-input-container:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 125, 87, 0.1);
}

.country-selector {
    position: relative;
    background: transparent;
    min-width: 100px;
    cursor: pointer;
    flex: 0 0 auto;
    border: none;
}

.country-display {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
}

.country-display:hover {
    background: transparent;
}

.country-flag {
    font-size: 1.2rem;
    line-height: 1;
}

.country-code {
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.9rem;
}

.dropdown-arrow {
    font-size: 0.8rem;
    color: var(--color-text);
    transition: transform 0.3s ease;
}

.country-selector.active .dropdown-arrow {
    transform: rotate(180deg);
}

.country-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
    border: 1px solid var(--color-gray);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    width: 500px;
    min-width: 300px;
}

.country-selector.active .country-dropdown {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.country-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--color-gray);
    width: 100%;
}

.country-option:hover {
    background: var(--color-gray);
}

.country-option:last-child {
    border-bottom: none;
}

.option-flag {
    font-size: 1.1rem;
    line-height: 1;
    width: 20px;
    text-align: center;
}

.option-name {
    flex: 0 1 auto;
    font-size: 0.9rem;
    color: var(--color-text);
    font-weight: 500;
    text-align: left;
}

.option-code {
    font-size: 0.85rem;
    color: var(--color-text);
    font-weight: 600;
    margin-left: 5px;
    flex: 0 0 auto;
}

.phone-input-container input {
    border: none !important;
    border-radius: 0 !important;
    padding: 12px 15px;
    flex: 1;
    background: transparent !important;
    min-width: 150px;
    outline: none !important;
    height: 100%;
    box-shadow: none !important;
    width: auto !important;
    display: flex;
    align-items: center;
}

.phone-input-container input:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 125, 87, 0.1);
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: var(--color-text);
    font-size: 0.85rem;
}

/* Checkbox Styles */
.checkbox-group {
    margin-bottom: 15px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-gray);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.checkbox-label a {
    color: var(--color-primary);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Butonlar */
.form-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--color-gray);
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 125, 87, 0.3);
}

.btn-secondary {
    background: var(--color-gray);
    color: var(--color-text);
}

.btn-secondary:hover {
    background: var(--color-gray);
    transform: translateY(-2px);
}

.btn-success {
    background: #28a745;
    color: white;
}

.btn-success:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

/* Bestätigung */
.confirmation-summary {
    background: var(--color-gray);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.confirmation-summary h3 {
    color: var(--color-text);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--color-gray);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item strong {
    color: var(--color-text);
    min-width: 120px;
}

/* Takvim Tasarımı */
.calendar-section {
    margin-bottom: 30px;
}

.calendar-section h3 {
    color: var(--color-text);
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.calendar-container {
    background: var(--color-white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 0 auto;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-nav {
    background: var(--color-gray);
    border: 2px solid var(--color-gray);
    border-radius: 8px;
    padding: 8px 15px;
    cursor: pointer;
    font-weight: 600;
    color: var(--color-text);
    transition: all 0.3s ease;
}

.calendar-nav:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.calendar-month {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 10px;
}

.weekday {
    text-align: center;
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.9rem;
    padding: 10px 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.calendar-day.disabled {
    background: var(--color-gray);
    color: #ccc;
    cursor: not-allowed;
}

.calendar-day.closed {
    background: #dc3545 !important;
    color: white !important;
    position: relative;
}

.calendar-day.closed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, transparent 49%, #fff 49%, #fff 51%, transparent 51%);
    z-index: 10;
    pointer-events: none;
}

.calendar-day.closed::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, transparent 48.5%, #fff 48.5%, #fff 51.5%, transparent 51.5%);
    z-index: 10;
    pointer-events: none;
}

.calendar-day.fully-booked {
    background: #f8f9fa !important;
    color: #6c757d !important;
    position: relative !important;
    cursor: not-allowed !important;
    opacity: 0.7 !important;
    border-color: #dee2e6 !important;
    pointer-events: none !important;
}

.calendar-day.fully-booked::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, transparent 49%, #dc3545 49%, #dc3545 51%, transparent 51%);
    z-index: 10;
    pointer-events: none;
}

.calendar-day.fully-booked::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, transparent 48.5%, #dc3545 48.5%, #dc3545 51.5%, transparent 51.5%);
    z-index: 10;
    pointer-events: none;
}

.calendar-day.available {
    background: var(--color-primary);
    color: white;
    cursor: pointer;
}

.calendar-day.available:hover {
    background: var(--color-primary);
    transform: scale(1.05);
}

.calendar-day.selected {
    background: #28a745 !important;
    color: white !important;
    transform: scale(1.1) !important;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4) !important;
    border: 3px solid #1e7e34 !important;
    z-index: 10 !important;
    position: relative !important;
}

.calendar-day.today.selected {
    background: #28a745 !important;
    color: white !important;
    font-weight: bold !important;
    transform: scale(1.1) !important;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4) !important;
    border: 3px solid #1e7e34 !important;
    z-index: 10 !important;
    position: relative !important;
}

.calendar-day.available:not(.selected) {
    background: var(--color-primary) !important;
    color: white !important;
}

.calendar-day.today:not(.selected) {
    background: #007bff !important;
    color: white !important;
    font-weight: bold !important;
}


/* Saat Seçimi */
.time-section {
    margin-top: 30px;
}

.time-section h3 {
    color: var(--color-text);
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.time-slot {
    background: var(--color-white);
    border: 2px solid var(--color-gray);
    border-radius: 8px;
    padding: 12px 15px;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--color-text);
    transition: all 0.3s ease;
}

.time-slot:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.time-slot.selected {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 125, 87, 0.4);
}

.time-slot.disabled {
    background: var(--color-gray);
    color: #ccc;
    cursor: not-allowed;
    opacity: 0.5;
}

.time-slot.booked {
    background: #f8f9fa !important;
    color: #6c757d !important;
    cursor: not-allowed !important;
    opacity: 0.7;
    position: relative;
    border-color: #dee2e6 !important;
    pointer-events: none !important;
}

.time-slot.booked::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, transparent 49%, #dc3545 49%, #dc3545 51%, transparent 51%);
    z-index: 100;
    pointer-events: none;
}

.time-slot.booked::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, transparent 48.5%, #dc3545 48.5%, #dc3545 51.5%, transparent 51.5%);
    z-index: 100;
    pointer-events: none;
}

.time-slot.booked:hover {
    background: #f8f9fa !important;
    color: #6c757d !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Mobil için çarpı - ince çizgi */
@media (max-width: 768px) {
    .time-slot.booked::before {
        background: 
            linear-gradient(135deg, transparent 49%, #dc3545 49%, #dc3545 51%, transparent 51%);
    }
    
    .time-slot.booked::after {
        background: 
            linear-gradient(135deg, transparent 48.5%, #dc3545 48.5%, #dc3545 51.5%, transparent 51.5%);
    }
}

/* Ice Laser Bilgileri */
.ice-laser-info {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-header {
    text-align: center;
    margin-bottom: 30px;
}

.info-header h3 {
    color: var(--color-text);
    margin-bottom: 8px;
    font-size: 1.8rem;
    font-weight: 700;
}

.info-subtitle {
    color: var(--color-text);
    font-size: 1rem;
    margin: 0;
}

.standorte-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.standort-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.standort-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--color-primary);
}

.location-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.standort-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-gray);
}

.standort-header h4 {
    color: var(--color-text);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.city-tag {
    background: var(--color-gray);
    color: var(--color-text);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.standort-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.adresse, .telefon {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.address-icon, .phone-icon {
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.address-text p, .phone-text {
    margin: 0;
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.4;
}

.phone-label {
    color: var(--color-text);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 4px;
}

.phone-number {
    color: var(--color-primary);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-number:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.beschreibung {
    background: var(--color-white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.description-icon {
    font-size: 1.5rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.description-content p {
    margin-bottom: 12px;
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.description-content p:last-child {
    margin-bottom: 0;
}

.highlight-text {
    color: var(--color-text) !important;
    font-weight: 600 !important;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .termin-container {
        padding: 15px;
    }
    
    .termin-header h2 {
        font-size: 2rem;
    }
    
    .termin-subtitle {
        font-size: 1rem;
    }
    
    .termin-form {
        padding: 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    /* Telefon Input Mobil Optimizasyonu */
    .phone-input-container {
        flex-direction: row;
        min-height: 48px;
    }
    
    .country-selector {
        min-width: 80px;
        flex-shrink: 0;
    }
    
    .country-display {
        padding: 8px 10px;
        gap: 4px;
    }
    
    .country-flag {
        font-size: 1rem;
    }
    
    .country-code {
        font-size: 0.8rem;
    }
    
    .dropdown-arrow {
        font-size: 0.7rem;
    }
    
    .phone-input-container input {
        padding: 8px 10px;
        font-size: 0.9rem;
        min-width: 0;
    }
    
    .country-dropdown {
        width: 100%;
        max-width: 400px;
        max-height: 150px;
    }
    
    .country-option {
        padding: 8px 10px;
        gap: 6px;
    }
    
    .option-flag {
        font-size: 1rem;
        width: 16px;
    }
    
    .option-name {
        font-size: 0.8rem;
    }
    
    .option-code {
        font-size: 0.75rem;
    }
    
    /* Takvim Mobil Optimizasyonu */
    .calendar-container {
        padding: 15px;
        max-width: 100%;
    }
    
    .calendar-header {
        margin-bottom: 15px;
    }
    
    .calendar-nav {
        padding: 6px 10px;
        font-size: 0.75rem;
        min-width: 60px;
        border-radius: 6px;
    }
    
    .calendar-month {
        font-size: 0.9rem;
        font-weight: 600;
    }
    
    .calendar-weekdays {
        gap: 3px;
        margin-bottom: 8px;
    }
    
    .weekday {
        font-size: 0.75rem;
        padding: 8px 0;
    }
    
    .calendar-days {
        gap: 3px;
    }
    
    .calendar-day {
        font-size: 0.8rem;
        min-height: 35px;
    }
    
    /* Saatler Mobil Optimizasyonu */
    .time-slots {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    
    .time-slot {
        padding: 6px 8px;
        font-size: 0.75rem;
        min-height: 35px;
    }
    
    .time-slot.booked::before {
        background: 
            linear-gradient(135deg, transparent 49%, #dc3545 49%, #dc3545 51%, transparent 51%);
    }
    
    .time-slot.booked::after {
        background: 
            linear-gradient(135deg, transparent 48.5%, #dc3545 48.5%, #dc3545 51.5%, transparent 51.5%);
    }
    
    .form-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        padding: 15px;
    }
    
    .ice-laser-info {
        padding: 20px;
    }
    
    .ice-laser-info h3 {
        font-size: 1.2rem;
    }
    
    .standort-item {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .beschreibung {
        margin-top: 20px;
        padding-top: 15px;
    }
}

/* Çok küçük ekranlar için ekstra optimizasyon */
@media (max-width: 480px) {
    .termin-form {
        padding: 15px;
        margin: 5px;
    }
    
    .phone-input-container {
        min-height: 44px;
    }
    
    .country-selector {
        min-width: 70px;
    }
    
    .country-display {
        padding: 6px 8px;
        gap: 3px;
    }
    
    .country-flag {
        font-size: 0.9rem;
    }
    
    .country-code {
        font-size: 0.75rem;
    }
    
    .dropdown-arrow {
        font-size: 0.6rem;
    }
    
    .phone-input-container input {
        padding: 6px 8px;
        font-size: 0.85rem;
    }
    
    .country-dropdown {
        width: 100%;
        max-width: 300px;
        max-height: 120px;
    }
    
    .country-option {
        padding: 6px 8px;
        gap: 4px;
    }
    
    .option-flag {
        font-size: 0.9rem;
        width: 14px;
    }
    
    .option-name {
        font-size: 0.75rem;
    }
    
    .option-code {
        font-size: 0.7rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
    
    .btn {
        padding: 12px 15px;
        font-size: 0.85rem;
    }
    
    .standorte-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .standort-card {
        padding: 20px;
    }
    
    .info-header h3 {
        font-size: 1.5rem;
    }
    
    .beschreibung {
        flex-direction: column;
        gap: 10px;
    }
    
    .phone-input-container {
        flex-direction: row !important;
        align-items: center;
        min-height: 48px;
    }
    
    .country-selector {
        border: none;
        min-width: 80px;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .termin-container {
        padding: 10px;
    }
    
    .termin-header h2 {
        font-size: 1.8rem;
    }
    
    .termin-form {
        padding: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .checkbox-label {
        font-size: 0.85rem;
    }
}

/* Success/Error Messages */
.termin-success {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
}

.termin-error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
}

/* Loading State */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Mobil Ice Laser Bilgileri */
@media (max-width: 480px) {
    .ice-laser-info {
        padding: 15px;
    }
    
    .ice-laser-info h3 {
        font-size: 1.1rem;
    }
    
    .ice-laser-info h4 {
        font-size: 1rem;
    }
    
    .standort-item h5 {
        font-size: 0.9rem;
    }
    
    .adresse p {
        font-size: 0.85rem;
    }
    
    .telefon strong {
        font-size: 0.9rem;
    }
    
    .beschreibung p {
        font-size: 0.85rem;
    }
    
    .standort-card {
        padding: 15px;
    }
    
    .standort-header h4 {
        font-size: 1.2rem;
    }
    
    .phone-number {
        font-size: 1rem;
    }
    
    .info-header h3 {
        font-size: 1.3rem;
    }
    
    /* Takvim Çok Küçük Ekranlar */
    .calendar-container {
        padding: 10px;
    }
    
    .calendar-header {
        margin-bottom: 10px;
    }
    
    .calendar-nav {
        padding: 4px 8px;
        font-size: 0.7rem;
        min-width: 50px;
    }
    
    .calendar-month {
        font-size: 0.8rem;
    }
    
    .weekday {
        font-size: 0.7rem;
        padding: 6px 0;
    }
    
    .calendar-day {
        font-size: 0.75rem;
        min-height: 30px;
    }
    
    /* Saatler Çok Küçük Ekranlar */
    .time-slots {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }
    
    .time-slot {
        padding: 4px 6px;
        font-size: 0.7rem;
        min-height: 30px;
    }
    
    .time-slot.booked::before {
        background: 
            linear-gradient(135deg, transparent 49%, #dc3545 49%, #dc3545 51%, transparent 51%);
    }
    
    .time-slot.booked::after {
        background: 
            linear-gradient(135deg, transparent 48.5%, #dc3545 48.5%, #dc3545 51.5%, transparent 51.5%);
    }
}
