/* Yu Bodrum - Ticket Purchase Page Styles */

/* Ticket Section */
.ticket-section {
    min-height: 100vh;
    padding: 80px 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 0, 64, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 64, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 30%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.ticket-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 10% 40%, rgba(255, 0, 64, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 90% 80%, rgba(255, 0, 64, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 10%, rgba(255, 255, 255, 0.03) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

.ticket-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* Stepper Styles */
.ticket-stepper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
}

.ticket-logo {
    text-align: center;
    margin-bottom: 24px;
}

.ticket-logo img {
    height: 110px;
    filter: brightness(0) invert(1);
}

.stepper-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 32px;
    text-align: center;
 
}
[data-theme="light"] .stepper-header h2
{
    background:var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stepper-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.stepper-progress::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition);
}

.step.active {
    opacity: 1;
}

.step.completed {
    opacity: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
    transition: var(--transition);
}

.step.active .step-number {
    background: linear-gradient(135deg, #ff0040 0%, #ff3366 100%);
    border-color: #ff0040;
    color: white;
    box-shadow: 0 0 20px rgba(255, 0, 64, 0.4);
}

.step.completed .step-number {
    background: #00ff88;
    border-color: #00ff88;
    color: var(--bg-primary);
}

.step span {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
    text-align: center;
}

.step.active span {
    color: var(--text-primary);
}

/* Step Content */
.step-content {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.step-content.active {
    display: block;
}

.step-title {
    margin-bottom: 32px;
}

.step-title h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.step-title p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Ticket Types */
.ticket-types {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.ticket-type {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.ticket-type:hover {
    border-color: rgba(255, 0, 64, 0.3);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.ticket-type.selected {
    border-color: #ff0040;
    background: rgba(255, 0, 64, 0.1);
    box-shadow: 0 0 30px rgba(255, 0, 64, 0.2);
}

.ticket-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ff0040 0%, #ff3366 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.ticket-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.ticket-icon i {
    width: 32px;
    height: 32px;
    color: var(--text-primary);
}

.ticket-info {
    flex: 1;
}

.ticket-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.ticket-info p {
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.ticket-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ticket-features span {
    font-size: 0.875rem;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.ticket-price {
    text-align: right;
}

.ticket-price .price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ff0040;
}

/* Extras */
.extras-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.extra-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.extra-info {
    flex: 1;
}

.extra-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.extra-info p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.extra-control {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 8px;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.quantity-btn:hover {
    background: rgba(255, 0, 64, 0.2);
    color: #ff0040;
}

.quantity {
    font-weight: 600;
    color: var(--text-primary);
    min-width: 20px;
    text-align: center;
}

.extra-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ff0040;
    min-width: 80px;
    text-align: right;
}

/* Forms */
.personal-form, .payment-form {
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff0040;
    box-shadow: 0 0 0 3px rgba(255, 0, 64, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* Payment Methods */
.payment-methods {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.payment-method {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.payment-method:hover {
    border-color: rgba(255, 0, 64, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.payment-method.active {
    border-color: #ff0040;
    background: rgba(255, 0, 64, 0.1);
}

.method-icon {
    font-size: 1.5rem;
}

.method-icon i {
    width: 24px;
    height: 24px;
    color: var(--text-secondary);
}

.payment-method.active .method-icon i {
    color: #ff0040;
}

.payment-method span {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.billing-section {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.billing-section h4 {
    color: var(--text-primary);
    margin-bottom: 16px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* Custom Date Picker */
.custom-date-picker {
    position: relative;
}

.date-picker-display {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.date-picker-display:hover {
    border-color: rgba(255, 0, 64, 0.3);
}

.date-picker-display i {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
}

.date-picker-dropdown {
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    z-index: 1001;
    display: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    max-width: 420px;
}

.date-picker-dropdown.active {
    display: block;
    animation: fadeInUp 0.3s ease-out;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-title {
    font-weight: 600;
    color: var(--text-primary);
}

.calendar-nav {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.calendar-nav:hover {
    background: rgba(255, 0, 64, 0.2);
}

.calendar-nav i {
    width: 16px;
    height: 16px;
    color: var(--text-primary);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.weekday {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 8px 4px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: var(--transition);
    color: var(--text-primary);
}

.calendar-day:hover:not(.empty):not(.past) {
    background: rgba(255, 0, 64, 0.2);
}

.calendar-day.today {
    background: rgba(255, 0, 64, 0.3);
    color: white;
    font-weight: 600;
}

.calendar-day.past {
    color: var(--text-muted);
    cursor: not-allowed;
    opacity: 0.5;
}

.calendar-day.empty {
    cursor: default;
}

.calendar-day.selected {
    background: #ff0040;
    color: white;
    font-weight: 600;
}

/* Completion */
.completion-content {
    text-align: center;
    
}

.success-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
    position: relative;
}

.success-icon::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-success 2s ease-in-out infinite;
    z-index: 0;
}

.success-icon i {
    width: 100px;
    height: 100px;
    color: #00ff88;
    filter: drop-shadow(0 0 30px rgba(0, 255, 136, 0.6));
    position: relative;
    z-index: 1;
}

@keyframes pulse-success {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: scale(1.1);
        opacity: 0.6;
    }
}

.completion-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.completion-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.ticket-summary {
    
}

.ticket-summary h4 {
    color: var(--text-primary);
    margin-bottom: 24px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 1rem;
}



.summary-item span:last-child {
    color: #ff0040;
    font-weight: 600;
}

/* Step Actions */
.step-actions {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 32px;
}

/* Event Info Panel */
.event-info-panel {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.event-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;

}

.event-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-details {
    padding: 24px;
}

.event-type {
    display: inline-block;
    background: linear-gradient(135deg, #ff0040 0%, #ff3366 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.event-details h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.meta-item .icon {
    width: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.meta-item .icon i {
    width: 16px;
    height: 16px;
    color: #ff0040;
}

.info-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;

}

.info-section h4 {
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.rules-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rules-list li {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.rules-list li:before {
    content: '•';
    position: absolute;
    left: 0;
}

.rules-list li:last-child {
    margin-bottom: 0;
}

/* Price Summary */
.price-summary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
  
}

.price-summary h4 {
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.price-item:last-child {
    margin-bottom: 0;
}

.price-total {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.price-total span:last-child {
    color: #ff0040;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ticket-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .stepper-progress {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .stepper-progress::before {
        display: none;
    }
    
    .step {
        flex-direction: row;
        gap: 12px;
    }
    
    .step-number {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .summary-item{
        font-size: 0.8rem;
    }
    .step{
        display: none;
    }
    .step.active{
        display: flex;
    }
    .ticket-stepper {
        padding: 24px;
    }
    
    .stepper-header h2 {
        font-size: 1.5rem;
    }
    
    .ticket-types {
        gap: 12px;
    }
    
    .ticket-type {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .ticket-features {
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .payment-methods {
        flex-direction: column;
        gap: 12px;
    }
    
    .step-actions {
        flex-direction: column-reverse;
        gap: 12px;
    }
    
    .step-actions button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .ticket-section {
        padding: 60px 0;
    }
    
    .ticket-logo img {
        height: 40px;
    }
    
    .ticket-stepper {
        padding: 20px;
    }
    
    .stepper-header h2 {
        font-size: 1.25rem;
        margin-bottom: 24px;
    }
    
    .step-title h3 {
        font-size: 1.25rem;
    }
    
    .ticket-type {
        padding: 16px;
    }
    
    .extra-item {
        padding: 16px;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .event-details {
        padding: 20px;
    }
    
    .info-section,
    .price-summary {
        padding: 20px;
    }
    
    .date-picker-dropdown {
        left: -20px;
        right: -20px;
        min-width: auto;
        padding: 16px;
    }
    
    .calendar-days {
        gap: 2px;
    }
    
    .calendar-day {
        font-size: 0.8rem;
        padding: 8px 4px;
    }
    
    .calendar-header {
        margin-bottom: 16px;
    }
    
    .calendar-title {
        font-size: 0.9rem;
    }
}

/* Light Theme Styles */
[data-theme="light"] .ticket-section {
    background: var(--primary-bg);
}
[data-theme="light"] .summary-item span:last-child{
    color: var(--accent-secondary);
}

[data-theme="light"] .ticket-section::before {
    background: 
        radial-gradient(circle at 30% 40%, rgba(184, 114, 44, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(139, 69, 19, 0.05) 0%, transparent 50%);
}

[data-theme="light"] .ticket-logo img {
    filter: brightness(0) invert(0);
}

[data-theme="light"] .ticket-stepper {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
}

[data-theme="light"] .step.active .step-number {
    background: var(--gradient-secondary);
    color: var(--accent-white);
    border-color: var(--accent-secondary);
    box-shadow: 0 0 20px var(--accent-secondary-glow);
}

[data-theme="light"] .step.completed .step-number {
    background: var(--secondary-bg);
    color: var(--accent-white);
    border-color: var(--accent-secondary);
}

[data-theme="light"] .ticket-type {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

[data-theme="light"] .ticket-type:hover {
    background: var(--card-bg);
    border-color: var(--accent-secondary);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--accent-secondary-glow);
}

[data-theme="light"] .ticket-type.selected {
    background: var(--gradient-secondary);
    border-color: var(--accent-secondary);
    color: var(--accent-white);
    box-shadow: 0 0 20px var(--accent-secondary-glow);
}
[data-theme="light"] .ticket-type.selected .ticket-price .price
{
    color: var(--accent-white);
}
[data-theme="light"] .ticket-badge {
    background: var(--gradient-primary);
    color: var(--accent-white);
}

[data-theme="light"] .ticket-icon {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

[data-theme="light"] .ticket-type.selected .ticket-icon {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

[data-theme="light"] .ticket-type.selected .ticket-info h4,
[data-theme="light"] .ticket-type.selected .ticket-info p,
[data-theme="light"] .ticket-type.selected .ticket-features span {
    color: var(--accent-white);
}

[data-theme="light"] .ticket-price .price {
    color: var(--accent-secondary);
}

[data-theme="light"] .extra-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

[data-theme="light"] .quantity-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

[data-theme="light"] .quantity-btn:hover {
    background: var(--gradient-secondary);
    border-color: var(--accent-secondary);
    color: var(--accent-white);
}

[data-theme="light"] .extra-price {
    color: var(--accent-red);
}

[data-theme="light"] .form-group input,
[data-theme="light"] .form-group select,
[data-theme="light"] .form-group textarea {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

[data-theme="light"] .form-group input:focus,
[data-theme="light"] .form-group select:focus,
[data-theme="light"] .form-group textarea:focus {
    background: var(--card-bg);
    border-color: var(--accent-secondary);
    box-shadow: 0 0 20px var(--accent-secondary-glow);
}

[data-theme="light"] .payment-method {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

[data-theme="light"] .payment-method:hover {
    background: var(--card-bg);
    border-color: var(--accent-secondary);
    transform: translateY(-3px);
}

[data-theme="light"] .payment-method.active {
    background: var(--gradient-secondary);
    border-color: var(--accent-secondary);
    color: var(--accent-white);
}

[data-theme="light"] .payment-method.active .method-icon i {
    color: var(--accent-white);
}

[data-theme="light"] .date-picker-display {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

[data-theme="light"] .date-picker-display:hover {
    background: var(--card-bg);
    border-color: var(--accent-secondary);
}

[data-theme="light"] .date-picker-dropdown {
    background: var(--secondary-bg);
    border: 1px solid var(--glass-border);
}

[data-theme="light"] .calendar-nav:hover {
    background: var(--glass-bg);
    color: var(--accent-secondary);
}

[data-theme="light"] .calendar-day:hover:not(.empty):not(.past) {
    background: var(--accent-secondary-glow);
    color: var(--accent-secondary);
}

[data-theme="light"] .calendar-day.today {
    background: var(--accent-secondary-glow);
    color: var(--accent-secondary);
}

[data-theme="light"] .calendar-day.selected {
    background: var(--gradient-secondary);
    color: var(--accent-white);
}

[data-theme="light"] .event-card {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
}

[data-theme="light"] .event-type {
    background: var(--gradient-secondary);
    color: var(--accent-white);
}

[data-theme="light"] .meta-item .icon i {
    color: var(--accent-secondary);
}

[data-theme="light"] .info-section,
[data-theme="light"] .price-summary {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
}

[data-theme="light"] .price-total {
    border-top: 1px solid var(--glass-border);
}

[data-theme="light"] .price-total span:last-child {
    color: var(--accent-red);
}

/* Light Theme Success Icon */
[data-theme="light"] .success-icon::before {
    background: radial-gradient(circle, rgba(184, 114, 44, 0.2) 0%, transparent 70%);
}

[data-theme="light"] .success-icon i {
    color: var(--accent-secondary);
}

/* Kişisel Bilgiler Önizleme */
.personal-info-summary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    margin-top: 24px;
    backdrop-filter: blur(10px);
}

.personal-info-summary h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.personal-info-summary h4::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #ff0040 0%, #ff6b9d 100%);
    border-radius: 2px;
}

.personal-info-summary .summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.personal-info-summary .summary-item:last-child {
    border-bottom: none;
}

.personal-info-summary .summary-item span:first-child {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.personal-info-summary .summary-item span:last-child {
    font-weight: 600;
    color: var(--text-primary);
    text-align: right;
    max-width: 60%;
    word-break: break-word;
}

/* Light theme için kişisel bilgiler önizleme */
[data-theme="light"] .personal-info-summary {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .personal-info-summary h4 {
    color: var(--text-primary);
}

[data-theme="light"] .personal-info-summary .summary-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .personal-info-summary .summary-item span:first-child {
    color: var(--text-secondary);
}

[data-theme="light"] .personal-info-summary .summary-item span:last-child {
    color: var(--text-primary);
}

/* Consent Section */
.consent-section {
    margin-top: 24px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.consent-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.consent-section h4::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #ff0040 0%, #ff6b9d 100%);
    border-radius: 2px;
}

.consent-section .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    padding: 8px 0;
}

.consent-section .checkbox-group:last-child {
    margin-bottom: 0;
}

.consent-section .checkbox-group input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
    accent-color: #ff0040;
    cursor: pointer;
}

.consent-section .checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-secondary);
    cursor: pointer;
    flex: 1;
}

.consent-section .checkbox-group label a {
    color: #ff0040;
    text-decoration: none;
    font-weight: 500;
}

.consent-section .checkbox-group label a:hover {
    text-decoration: underline;
}

/* Light theme için consent section */
[data-theme="light"] .consent-section {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .consent-section h4 {
    color: var(--text-primary);
}

[data-theme="light"] .consent-section .checkbox-group label {
    color: var(--text-secondary);
}

/* Completion Step - Full Screen Mode */
.step-content[data-step="4"].completion-fullscreen {
    display: block !important;
    margin-top: 0 !important;
    padding-top: 40px !important;
    min-height: 100vh;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
}

.step-content[data-step="4"].completion-fullscreen .completion-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.step-content[data-step="4"].completion-fullscreen .success-icon {
    margin-bottom: 32px;
}

.step-content[data-step="4"].completion-fullscreen h3 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.step-content[data-step="4"].completion-fullscreen p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.step-content[data-step="4"].completion-fullscreen .ticket-summary,
.step-content[data-step="4"].completion-fullscreen .personal-info-summary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    text-align: left;
}

.step-content[data-step="4"].completion-fullscreen .step-actions {
    margin-top: 40px;
    justify-content: center;
}

.step-content[data-step="4"].completion-fullscreen .step-actions button {
    min-width: 200px;
    margin: 0 12px;
}

/* Stepper Hidden State */
.stepper-hidden .stepper-header {
    display: none !important;
}

.stepper-hidden .step-content:not([data-step="4"]) {
    display: none !important;
}

/* Light Theme Support */
[data-theme="light"] .step-content[data-step="4"].completion-fullscreen {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .step-content[data-step="4"].completion-fullscreen .ticket-summary,
[data-theme="light"] .step-content[data-step="4"].completion-fullscreen .personal-info-summary {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .step-content[data-step="4"].completion-fullscreen {
        padding: 24px;
        margin: 0;
        border-radius: 0;
    }
    
    .step-content[data-step="4"].completion-fullscreen h3 {
        font-size: 2rem;
    }
    
    .step-content[data-step="4"].completion-fullscreen .step-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .step-content[data-step="4"].completion-fullscreen .step-actions button {
        min-width: auto;
        margin: 0;
    }
}

/* No Extras Message */
.no-extras {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.no-extras p {
    margin: 0;
    font-size: 16px;
}
