.cvc-order-status-container {
    max-width: 500px;
    margin: 60px auto;
    font-family: 'Tahoma', sans-serif;
    text-align: center;
    direction: rtl;
}

.cvc-os-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    animation: cvc-fade-in-up 0.6s ease-out;
}

@keyframes cvc-fade-in-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Icons & Animation */
.cvc-os-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.success .cvc-os-icon-wrapper {
    background: rgba(40, 167, 69, 0.1);
}

.failed .cvc-os-icon-wrapper {
    background: rgba(220, 53, 69, 0.1);
}

.cvc-os-icon-svg {
    width: 60px;
    height: 60px;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    animation: cvc-icon-pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s backwards;
}

.success .cvc-os-icon-svg {
    stroke: #28a745;
}

.failed .cvc-os-icon-svg {
    stroke: #dc3545;
}

@keyframes cvc-icon-pop {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

.cvc-os-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.cvc-os-message {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cvc-os-details-box {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: right;
}

.cvc-os-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #e0e0e0;
    font-size: 14px;
}

.cvc-os-row:last-child {
    border-bottom: none;
}

.cvc-os-label {
    color: #888;
}

.cvc-os-value {
    color: #333;
    font-weight: bold;
}

.cvc-os-bank-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
    margin-bottom: 20px;
    opacity: 0.8;
}

.cvc-os-bank-logo i {
    font-size: 18px;
}

.cvc-os-btn {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s;
    font-size: 16px;
}

.success .cvc-os-btn {
    background: #28a745;
    color: #fff;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.success .cvc-os-btn:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.failed .cvc-os-btn {
    background: #dc3545;
    color: #fff;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.failed .cvc-os-btn:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

/* Success Path Animation */
.checkmark-check {
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: cvc-stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

/* Error Path Animation */
.cross-1, .cross-2 {
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
    animation: cvc-stroke 0.4s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}
.cross-2 {
    animation-delay: 1s;
}

@keyframes cvc-stroke {
    100% { stroke-dashoffset: 0; }
}
