.asp-support-button {
    position: fixed;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background-color: #000000;
    color: white;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid #333;
}

.asp-support-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
    background-color: #1a1a1a;
}

.asp-btn-bottom-right {
    bottom: 20px;
    right: 20px;
}

.asp-btn-bottom-left {
    bottom: 20px;
    left: 20px;
}

.asp-btn-top-right {
    top: 20px;
    right: 20px;
}

.asp-btn-top-left {
    top: 20px;
    left: 20px;
}

.asp-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    animation: fadeIn 0.3s ease;
}

.asp-modal.asp-modal-active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.asp-modal-content {
    background-color: white;
    border-radius: 7px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.3s ease;
    border: 1px solid #e0e0e0;
}

.asp-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    border-bottom: 1px solid #e0e0e0;
    background: #fafafa;
}

.asp-modal-header h2 {
    margin: 0;
    font-size: 24px;
    color: #000;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.asp-modal-close {
    background: none;
    border: none;
    font-size: 32px;
    color: #666;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.asp-modal-close:hover {
    color: #000;
}

.asp-modal-body {
    padding: 28px;
    overflow-y: auto;
    max-height: calc(90vh - 100px);
}

.asp-step {
    display: none;
}

.asp-step-active {
    display: block;
}

.asp-step > p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.asp-form-group {
    margin-bottom: 20px;
}

.asp-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #000;
    font-size: 14px;
    letter-spacing: -0.2px;
}

.asp-input,
.asp-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 7px;
    font-size: 14px;
    transition: all 0.2s ease;
    box-sizing: border-box;
    background: #fff;
    color: #000;
}

.asp-input:focus,
.asp-textarea:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.asp-textarea {
    resize: vertical;
    font-family: inherit;
    line-height: 1.6;
}

.asp-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: -0.2px;
}

.asp-btn-primary {
    background-color: #000;
    color: white;
    border: 1px solid #000;
}

.asp-btn-primary:hover {
    background-color: #1a1a1a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.asp-btn-primary:disabled {
    background-color: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.asp-btn-secondary {
    background-color: #fff;
    color: #000;
    border: 1px solid #d0d0d0;
}

.asp-btn-secondary:hover {
    background-color: #f5f5f5;
    border-color: #000;
}

.asp-form-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.asp-orders-list {
    margin-bottom: 24px;
    padding: 16px;
    background: #fafafa;
    border-radius: 7px;
    border: 1px solid #e0e0e0;
}

.asp-orders-list p {
    margin: 0 0 12px 0;
    color: #000;
    font-weight: 600;
}

.asp-order-item {
    padding: 14px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 7px;
    margin-bottom: 10px;
    transition: all 0.2s ease;
}

.asp-order-item:hover {
    border-color: #000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.asp-order-item:last-child {
    margin-bottom: 0;
}

.asp-order-item strong {
    color: #000;
    font-weight: 600;
}

.asp-success-message {
    text-align: center;
    padding: 40px 20px;
}

.asp-success-message svg {
    margin-bottom: 24px;
}

.asp-success-message h3 {
    color: #000;
    margin: 0 0 16px 0;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.asp-success-message p {
    color: #666;
    margin: 12px 0;
    line-height: 1.6;
}

.asp-alert {
    padding: 12px 16px;
    border-radius: 7px;
    margin-bottom: 16px;
    font-size: 14px;
}

.asp-alert-error {
    background-color: #fff5f5;
    color: #c00;
    border: 1px solid #fcc;
}

.asp-alert-success {
    background-color: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.asp-loading {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .asp-modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 7px;
    }

    .asp-modal-header {
        padding: 20px;
    }

    .asp-modal-body {
        padding: 20px;
    }

    .asp-support-button {
        padding: 12px 18px;
        font-size: 13px;
    }

    .asp-support-button span {
        display: none;
    }

    .asp-form-actions {
        flex-direction: column;
    }

    .asp-form-actions .asp-btn {
        width: 100%;
    }
}
