.success-page-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #050505;
}

.success-card {
    width: 100%;
    max-width: 800px;
    background: #1C1C1C;
    padding: 50px 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.close-btn-link:hover {
    color: #926a54;
}

.success-header {
    text-align: center;
    margin-bottom: 50px;
}

.order-number-text {
    font-size: 20px;
    color: #FAFAFA;
    margin-bottom: 15px;
}

.success-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.success-icon svg {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: #FAFAFA;
    stroke-width: 1.5;
}

.success-title {
    font-size: 48px;
    font-weight: 500;
    color: #FAFAFA;
    margin: 0;
    letter-spacing: -4.32px;
}

.order-details-title {
    font-size: 20px;
    font-weight: 700;
    color: #FAFAFA;
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.detail-group {
    margin-bottom: 25px;
}

.detail-label {
    display: block;
    font-size: 14px;
    color: #888;
    margin-bottom: 8px;
}

.detail-value {
    display: block;
    font-size: 16px;
    color: #E0E0E0;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .details-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .success-title {
        font-size: 24px;
        letter-spacing: -2.16px;
    }

    .success-card {
        padding: 20px;
    }
}
