/* WOWFIX AI Form CSS - EXACT COPY FROM DEMO */

/* Progress Bar Styles */
.progress-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(139, 147, 170, 0.2);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(139, 147, 170, 0.3);
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: #5b6edb;
    color: white;
    box-shadow: 0 0 0 4px rgba(91, 110, 219, 0.2);
}

.progress-step.completed .step-number {
    background: #10b981;
    color: white;
}

.progress-step.completed .step-number i {
    font-size: 18px;
}

.step-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    white-space: nowrap;
}

.progress-step.active .step-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.progress-step.completed .step-label {
    color: #10b981;
}

.progress-line {
    flex: 1;
    height: 2px;
    background: rgba(139, 147, 170, 0.2);
    margin: 0 10px;
    position: relative;
}

.progress-line.completed {
    background: #10b981;
}

/* Modal overlay */
.wowfix-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.ai-form-container {
    background: #2d3748;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
    max-height: 90vh;
    overflow-y: auto;
}

.close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 35px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.close-button:hover {
    color: #FFFFFF;
    transform: rotate(90deg);
}

.form-header {
    background: transparent;
    color: white;
    padding: 40px 30px 20px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(139, 147, 170, 0.2);
}

.form-header h3,
#wowfix-ai-modal .form-header h3,
.wowfix-modal .ai-form-container .form-header h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #FFFFFF !important;
    margin-top: 0;
}

/* Override any theme h3 styles */
.ai-form-container h3,
.ai-form-container .form-header h3 {
    color: #FFFFFF !important;
}

.form-header p {
    color: rgba(200, 210, 230, 0.8);
    font-size: 14px;
}

/* Local Social Proof */
.social-proof-container {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.15);
    padding: 12px 20px;
    margin: 15px 30px 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    animation: fadeIn 0.5s ease;
    color: rgba(255, 255, 255, 0.9);
}

.social-proof-container i {
    color: #10b981;
    font-size: 20px;
}

.social-proof-text {
    color: rgba(200, 210, 230, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.social-proof-text .highlight {
    color: #10b981;
    font-weight: 600;
}

.social-proof-line {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    white-space: nowrap;
}

.social-proof-line i {
    color: #10b981;
    font-size: 18px;
}

.social-proof-line .highlight {
    color: #10b981;
    font-weight: 600;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ai-indicator {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
    color: white;
    font-size: 20px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.chat-container {
    padding: 30px;
    min-height: 400px;
    max-height: 500px;
    overflow-y: auto;
    background: transparent;
}

.chat-container::-webkit-scrollbar {
    width: 6px;
}

.chat-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.chat-container::-webkit-scrollbar-thumb {
    background: rgba(139, 147, 170, 0.5);
    border-radius: 3px;
}

.chat-message {
    margin-bottom: 20px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bot-message {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.bot-avatar {
    width: 35px;
    height: 35px;
    background: #5b6edb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.message-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: 12px;
    max-width: 100%;
    color: rgba(255, 255, 255, 0.9);
    flex: 1;
}

.message-content p {
    color: rgba(200, 210, 230, 0.9);
    margin: 0;
}

.user-message {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.user-message .message-content {
    background: #364AC4;
    color: white;
    border-radius: 18px 0 18px 18px;
}

.input-options {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.option-btn {
    flex: 1;
    padding: 12px;
    border: 1px solid rgba(139, 147, 170, 0.3);
    border-radius: 35px;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: rgba(200, 210, 230, 0.9);
}

.option-btn:hover {
    border-color: rgba(139, 147, 170, 0.5);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.option-btn.active {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border-color: transparent;
}

.option-btn .icon i {
    font-size: 24px;
}

.option-btn .label {
    font-size: 12px;
    font-weight: 600;
}

.quick-answers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.quick-btn {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(139, 147, 170, 0.3);
    color: rgba(200, 210, 230, 0.9);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.quick-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(139, 147, 170, 0.5);
    color: white;
    transform: scale(1.05);
}

.input-section {
    padding: 20px 30px;
    border-top: 1px solid rgba(139, 147, 170, 0.2);
    background: transparent;
}

.text-input-wrapper {
    display: none;
    position: relative;
}

.text-input-wrapper.active {
    display: block;
}

.text-input {
    width: 100%;
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(139, 147, 170, 0.3);
    border-radius: 35px;
    color: #FFFFFF;
    font-size: 15px;
    resize: none;
    transition: all 0.3s;
}

.text-input::placeholder {
    color: rgba(200, 210, 230, 0.8);
}

.text-input:focus {
    outline: none;
    border-color: rgba(139, 147, 170, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.voice-input-wrapper {
    display: none;
    text-align: center;
}

.voice-input-wrapper.active {
    display: block;
}

.mic-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6911, #D12E29);
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.mic-button:hover {
    transform: scale(1.1);
}

.mic-button.recording {
    animation: recordPulse 1.5s infinite;
}

@keyframes recordPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,105,17,0.7); }
    50% { box-shadow: 0 0 0 20px rgba(255,105,17,0); }
}

.voice-status {
    margin-top: 15px;
    color: rgba(200, 210, 230, 0.8);
    font-size: 14px;
}

#transcript {
    color: rgba(200, 210, 230, 0.9);
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(139, 147, 170, 0.2);
}

.photo-input-wrapper {
    display: none;
    text-align: center;
}

.photo-input-wrapper.active {
    display: block;
}

.photo-upload-area {
    border: 2px dashed rgba(139, 147, 170, 0.3);
    border-radius: 12px;
    padding: 30px;
    cursor: pointer;
    transition: all 0.3s;
    color: rgba(200, 210, 230, 0.9);
}

.photo-upload-area p {
    color: rgba(200, 210, 230, 0.9);
    margin: 5px 0;
}

.photo-upload-area:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(139, 147, 170, 0.5);
}

.photo-preview {
    display: none;
    margin-top: 15px;
}

.photo-preview img {
    max-width: 100%;
    border-radius: 12px;
}

.analyzing {
    display: none;
    text-align: center;
    padding: 20px;
}

.analyzing p {
    color: rgba(200, 210, 230, 0.9);
    font-size: 16px;
}

.analyzing.active {
    display: block;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #e74c3c;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.simple-input::placeholder {
    color: rgba(200, 210, 230, 0.8) !important;
}

.submit-btn {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    border-radius: 35px;
    font-size: 25px;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(231,76,60,0.3);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px;
    background: transparent;
    border-top: 1px solid rgba(139, 147, 170, 0.2);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: rgba(200, 210, 230, 0.8);
}

.trust-badge i {
    color: #4CAF50;
    font-size: 16px;
}

.typing-indicator {
    display: none;
    align-items: center;
    gap: 4px;
    padding: 10px;
}

.typing-indicator.active {
    display: flex;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: rgba(139, 147, 170, 0.6);
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Conversation mode styles */
.stop-conversation-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    border-radius: 35px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.stop-conversation-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.conversation-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(139, 147, 170, 0.3);
    border-radius: 35px;
}

.status-icon {
    font-size: 20px;
    animation: pulse 2s infinite;
}

.status-text {
    color: rgba(200, 210, 230, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.listening-indicator {
    color: #e74c3c;
    font-weight: 600;
}

.thinking-indicator {
    color: #3498db;
    font-weight: 600;
}

/* Mobile version */
@media (max-width: 768px) {
    .wowfix-modal {
        padding: 0;
    }
    
    .ai-form-container {
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
        border-radius: 0;
    }
    
    .close-button {
        top: 10px;
        right: 10px;
    }
}

/* Override body scroll when modal open */
body.modal-open {
    overflow: hidden;
}

/* Vision Analysis Card Styles - Chat Style */
.vision-message {
    /* Контейнер сообщения уже есть в .bot-message */
}

.vision-analysis-card {
    /* Убираем все лишнее - карточка теперь внутри .message-content */
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    color: inherit;
    animation: none;
}

/* Текст анализа */
.analysis-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: rgba(200, 210, 230, 0.9);
}

.analysis-text p {
    margin-bottom: 8px;
}

/* Детали в стиле списка */
.details-list {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 16px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
}

.detail-label {
    color: rgba(255, 255, 255, 0.5);
}

.detail-value {
    color: rgba(255, 255, 255, 0.9);
}

/* Рекомендации */
.recommendations {
    background: rgba(94, 234, 212, 0.05);
    border: 1px solid rgba(94, 234, 212, 0.1);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 16px;
}

.recommendations-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #5eead4;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.recommendation-item {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.recommendation-item:hover {
    color: rgba(255, 255, 255, 0.95);
}

/* Custom checkbox styles */
.recommendation-checkbox {
    position: relative;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.recommendation-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    margin: 0;
}

.recommendation-checkbox .checkbox-custom {
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.recommendation-checkbox input[type="checkbox"]:checked ~ .checkbox-custom {
    background: #5eead4;
    border-color: #5eead4;
}

.recommendation-checkbox input[type="checkbox"]:checked ~ .checkbox-custom::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid #2d3748;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.recommendation-checkbox input[type="checkbox"]:hover ~ .checkbox-custom {
    border-color: rgba(255, 255, 255, 0.5);
}

/* Price animation */
@keyframes priceChange {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); color: #5eead4; }
    100% { transform: scale(1); }
}

.price-animating {
    animation: priceChange 0.3s ease;
}

/* Highlight recommended card on checkbox change */
.package-option.price-updating {
    animation: pulseHighlight 0.5s ease;
}

@keyframes pulseHighlight {
    0% { background: rgba(94, 234, 212, 0.05); }
    50% { background: rgba(94, 234, 212, 0.15); }
    100% { background: rgba(94, 234, 212, 0.05); }
}

/* Опции пакетов в стиле чата */
.package-options {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

/* Удаляем старые issues стили */

.package-option {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.package-option:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.package-option.recommended {
    border-color: #5eead4;
    background: rgba(94, 234, 212, 0.05);
}

.package-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.package-price {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.package-save {
    font-size: 12px;
    color: #5eead4;
}

/* Выделенная цена */
.price-highlight {
    background: rgba(94, 234, 212, 0.1);
    color: #5eead4;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

/* Кнопки действий как в форме */
.action-buttons {
    display: flex;
    gap: 12px;
}

/* Удаляем лишние стили */

.btn {
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

.btn.primary {
    background: #5b6edb;
    border-color: #5b6edb;
    color: white;
}

.btn.primary:hover {
    background: #4c5bc8;
}

/* Удаляем старые стили для action */

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Мобильная версия для Vision карточки */
@media (max-width: 480px) {
    .package-options {
        flex-direction: column;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Enhanced Photo Upload Button */
.photo-upload-section {
    text-align: center;
    padding: 15px 0;
}

.enhanced-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.photo-upload-btn.enhanced {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
    margin-top: 10px;
}

.photo-upload-btn.enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.photo-upload-btn .pulse-effect {
    font-size: 24px;
    animation: pulse 2s infinite;
}

.photo-upload-btn .main-text {
    font-size: 17px;
}

.photo-upload-btn .time-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.micro-copy {
    color: rgba(200, 210, 230, 0.8);
    font-size: 14px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.micro-copy i {
    color: #10b981;
    font-size: 16px;
}

.text-btn {
    background: none;
    border: 1px solid rgba(139, 147, 170, 0.3);
    color: rgba(200, 210, 230, 0.9);
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.text-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(139, 147, 170, 0.5);
}

/* Phosphor Icons - убедитесь что подключены */
.ph-fill {
    font-weight: bold;
}

/* Success message styles */
.success-message {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 12px;
    padding: 20px;
    animation: slideInUp 0.5s ease;
}

.success-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #4CAF50;
    margin-bottom: 10px;
}

.success-header i {
    font-size: 24px;
}

.success-message p {
    color: rgba(200, 210, 230, 0.9);
    margin-bottom: 15px;
}

.success-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(200, 210, 230, 0.9);
    font-size: 14px;
}

.detail-item i {
    color: #e74c3c;
    font-size: 18px;
    width: 20px;
}

.detail-item strong {
    color: #fff;
}

.thank-you-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    color: rgba(200, 210, 230, 0.9);
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    animation: slideInUp 0.5s ease;
}

.thank-you-message i {
    font-size: 20px;
}

.thank-you-message i.ph-fill.ph-heart {
    color: #e74c3c;
}

.thank-you-message i.ph-hand-waving {
    color: #FFA500;
}

/* Upsell Modal Styles */
.upsell-modal {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(139, 147, 170, 0.3);
    border-radius: 12px;
    padding: 20px;
    animation: slideInUp 0.5s ease;
}

.upsell-modal h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.upsell-modal h3 i {
    color: #fbbf24;
    font-size: 24px;
}

.upsell-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.upsell-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.upsell-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.upsell-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.upsell-item label {
    flex: 1;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.upsell-name {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.upsell-reason {
    font-size: 13px;
    color: rgba(200, 210, 230, 0.7);
}

.upsell-actions {
    display: flex;
    gap: 12px;
}

.upsell-actions .btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.upsell-actions .btn.primary {
    background: #5b6edb;
    color: white;
    border: none;
}

.upsell-actions .btn.primary:hover {
    background: #4c5bc8;
    transform: translateY(-1px);
}

.upsell-actions .btn.secondary {
    background: transparent;
    color: rgba(200, 210, 230, 0.9);
    border: 1px solid rgba(139, 147, 170, 0.3);
}

.upsell-actions .btn.secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(139, 147, 170, 0.5);
}