/* 키오스크 메인 선택 화면 스타일 */
.kiosk-selection {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: white;
}

.kiosk-buttons {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.kiosk-button {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 16px;
    padding: 25px 40px;
    text-decoration: none;
    color: #2d3436;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.kiosk-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    text-decoration: none;
    color: #2d3436;
}

.kiosk-button.genies-pick {
    background: #faf5ff;
    border-color: #e9d5ff;
}

.kiosk-button.genies-pick:hover {
    background: #f3e8ff;
    border-color: #ddd6fe;
    color: #2d3436;
}

.kiosk-button.regular-menu {
    background: #f0f9ff;
    border-color: #bae6fd;
}

.kiosk-button.regular-menu:hover {
    background: #e0f2fe;
    border-color: #7dd3fc;
    color: #2d3436;
}

.button-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    margin-right: 30px;
}

.kiosk-button.genies-pick .button-icon {
    background: rgba(139, 69, 197, 0.1);
}

.kiosk-button.regular-menu .button-icon {
    background: rgba(59, 130, 246, 0.1);
}

.button-icon i {
    font-size: 28px;
    color: #6b7280;
}

.kiosk-button.genies-pick .button-icon i {
    color: #8b45c5;
}

.kiosk-button.regular-menu .button-icon i {
    color: #3b82f6;
}

.button-content {
    flex: 1;
}

.button-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 6px 0;
    color: #2d3436;
}

.button-desc {
    font-size: 18px;
    margin: 0;
    color: #6b7280;
}

.button-arrow {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    margin-left: 25px;
    transition: all 0.3s ease;
}

.kiosk-button.genies-pick .button-arrow {
    background: rgba(139, 69, 197, 0.1);
}

.kiosk-button.regular-menu .button-arrow {
    background: rgba(59, 130, 246, 0.1);
}

.button-arrow i {
    font-size: 24px;
    color: #6b7280;
}

.kiosk-button.genies-pick .button-arrow i {
    color: #8b45c5;
}

.kiosk-button.regular-menu .button-arrow i {
    color: #3b82f6;
}

.kiosk-button:hover .button-arrow {
    transform: translateX(10px);
}

.kiosk-button.genies-pick:hover .button-arrow {
    background: rgba(139, 69, 197, 0.15);
}

.kiosk-button.regular-menu:hover .button-arrow {
    background: rgba(59, 130, 246, 0.15);
}

/* 키오스크 리스트 화면 스타일 */
.list-header {
    margin-bottom: 40px;
}

.list-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0 30px 0;
    padding: 0;
}

.nav-switch-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
    background: white;
    color: #374151;
}

.nav-switch-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #374151;
    text-decoration: none;
    border-color: #d1d5db;
}

.list-title-section {
    text-align: center;
}

.list-title {
    font-size: 36px;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.list-title:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.list-subtitle {
    font-size: 18px;
    color: #636e72;
    margin: 0;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .kiosk-title {
        font-size: 32px;
    }
    
    .kiosk-subtitle {
        font-size: 16px;
    }
    
    .kiosk-button {
        padding: 30px 25px;
        flex-direction: column;
        text-align: center;
    }
    
    .button-icon {
        width: 60px;
        height: 60px;
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .button-icon i {
        font-size: 28px;
    }
    
    .button-title {
        font-size: 24px;
    }
    
    .button-desc {
        font-size: 16px;
    }
    
    .button-arrow {
        width: 50px;
        height: 50px;
        margin-left: 0;
        margin-top: 20px;
    }
    
    .button-arrow i {
        font-size: 20px;
    }
    
    .list-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-back-btn, .nav-switch-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .list-title {
        font-size: 28px;
    }
    
    .list-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .kiosk-button {
        padding: 25px 20px;
    }
    
    .button-title {
        font-size: 20px;
    }
    
    .button-desc {
        font-size: 14px;
    }
    
    .list-title {
        font-size: 24px;
    }
}