﻿body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: #f7f6fb;
    color: #2d2d2d;
}

.brand-accent {
    color: #6c3483;
}

.container-narrow {
    max-width: 980px;
}

/* Stepper pills */
/*.nav-pills .nav-link {
    border-radius: 50px;
    padding: 10px 18px;
    font-weight: 600;
    color: #6c3483;
    border: 1px solid #6c3483;
    margin: 6px;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .nav-pills .nav-link.active {
        background: linear-gradient(90deg, #6c3483, #9b59b6);
        color: #fff;
        box-shadow: 0 3px 10px rgba(108,52,131,0.25);
    }*/

/*//Check output stepper start*/

.checkout-steps {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    padding: 5px;
}

    .checkout-steps::-webkit-scrollbar {
        display: none;
    }

    .checkout-steps .nav-item {
        flex: 0 0 auto;
    }

    .checkout-steps .nav-link {
        min-width: 90px;
        text-align: center;
        padding: 10px;
        font-size: 14px;
        border-radius: 20px;
        white-space: nowrap;
    }

        /* Icon mobile me center */
        .checkout-steps .nav-link i {
            display: block;
            font-size: 18px;
        }

/* Active styling */
.nav-pills .nav-link.active {
    background-color: #6f42c1;
    color: #fff;
    font-weight: 600;
}

/* Desktop pe normal layout */
@media (min-width: 768px) {
    .checkout-steps {
        justify-content: center;
        overflow: visible;
    }

        .checkout-steps .nav-link i {
            display: inline-block;
            margin-right: 5px;
        }
}

/*//Check output stepper End*/

/* Cards and items */
.card {
    border-radius: 14px;
    border: none;
    background: #fff;
}

.shadow-soft {
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.cart-item {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(90deg, #6c3483, #9b59b6);
    border: none;
}

    .btn-primary:hover {
        filter: brightness(1.05);
    }

.btn-outline-primary {
    border-color: #6c3483;
    color: #6c3483;
}

    .btn-outline-primary:hover {
        background: #6c3483;
        color: #fff;
    }

.btn-outline-success {
    border-color: #27ae60;
    color: #27ae60;
}

    .btn-outline-success:hover {
        background: #27ae60;
        color: #fff;
    }

/* Price styling */
.price-now {
    color: #27ae60;
    font-weight: 700;
}

.price-old {
    color: #9aa0a6;
    text-decoration: line-through;
}

/* Responsive tweaks */
@media (max-width: 576px) {
    .nav-pills .nav-link {
        width: 100%;
        justify-content: center;
    }

    .cart-item .text-end {
        text-align: left !important;
    }
}



.payment-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: 1.5px solid #ddd;
    border-radius: 12px;
    cursor: pointer;
    margin-bottom: 10px;
    transition: 0.25s;
    font-weight: 500;
    background: #fafafa;
}

    .payment-box input {
        width: 18px;
        height: 18px;
    }

    .payment-box.active {
        border-color: #0d6efd;
        background: #e8f0ff;
        box-shadow: 0 0 8px rgba(13,110,253,0.25);
    }

.info-box {
    background: #f7f9fc;
    border: 1px solid #e9edf5;
}

.summary-section,
.payment-section {
    background: #f9fbfe;
    border: 1px solid #e3e7ee;
}


/*// First Step */

