﻿body {
    background-color: #f5f7fa;
}

.success-container {
    padding-top: 60px;
    padding-bottom: 60px;
}

.success-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
}

.success-header {
    text-align: center;
    padding-bottom: 20px;
}

.success-icon {
    width: 90px;
    height: 90px;
    line-height: 90px;
    margin: auto;
    border-radius: 50%;
    background: #e8f8ee;
    color: #28a745;
    font-size: 48px;
    font-weight: bold;
}

.success-title {
    margin-top: 20px;
    font-size: 32px;
    font-weight: 700;
    color: #1c1c1c;
}

.success-subtitle {
    color: #6c757d;
    margin-top: 10px;
}

.info-box {
    background: #fafafa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.info-label {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
}

.info-value {
    font-size: 16px;
    color: #222;
    font-weight: 500;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.product-row {
    padding: 15px 0;
    border-bottom: 1px solid #ececec;
}

.product-name {
    font-weight: 500;
}

.product-price {
    font-weight: 600;
    text-align: right;
}

.total-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #eee;
}

.total-label {
    font-size: 18px;
    font-weight: 600;
}

.total-value {
    font-size: 20px;
    font-weight: 700;
    color: #198754;
}

.success-buttons {
    margin-top: 35px;
}

.btn-home {
    min-width: 180px;
    border-radius: 30px;
    padding: 10px 20px;
}

.btn-orders {
    min-width: 180px;
    border-radius: 30px;
    padding: 10px 20px;
}

@media (max-width: 768px) {
    .success-title {
        font-size: 26px;
    }

    .info-box {
        margin-bottom: 15px;
    }
}
.success-buttons {
    margin-top: 40px;
    text-align: center;
}

.btn-home {
    background: #2f5bea;
    color: #fff !important;
    border: none;
    border-radius: 30px;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    min-width: 220px;
    transition: all .3s ease;
}

    .btn-home:hover {
        background: #2348c9;
        color: #fff !important;
        transform: translateY(-2px);
    }

.btn-orders {
    border: 2px solid #2f5bea;
    color: #2f5bea !important;
    border-radius: 30px;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    min-width: 220px;
    margin-left: 10px;
}

    .btn-orders:hover {
        background: #2f5bea;
        color: #fff !important;
    }