/* =========================================
   QUICKVEG CUSTOMER CSS

   ========================================= */

/* ---------- GENERAL ---------- */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f4f7f8;
    font-family:Segoe UI,Tahoma,Geneva,Verdana,sans-serif;
    color:#333;
}

.container{
    max-width:1200px;
}

/* ---------- HEADINGS ---------- */

h1,h2,h3,h4,h5,h6{
    font-weight:700;
    color:#222;
}

.page-title{
    font-weight:700;
    text-align:center;
    margin:35px 0;
}

/* ---------- NAVBAR ---------- */

.navbar{
    padding:12px 20px;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.navbar-brand{
    font-size:24px;
    font-weight:bold;
}

.navbar-nav .nav-link{
    color:white!important;
    margin-left:8px;
    transition:.25s;
}

.navbar-nav .nav-link:hover{
    color:#ffe082!important;
}

.navbar .btn{
    border-radius:8px;
}

/* ---------- CARDS ---------- */

.card{
    border:none;
    border-radius:15px;
    overflow:hidden;
    transition:.25s;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.card:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 24px rgba(0,0,0,.15);
}

.card-header{
    background:#fff;
    border-bottom:1px solid #eee;
    padding:18px;
}

.card-body{
    padding:20px;
}

/* ---------- PRODUCT IMAGE ---------- */

.card-img-top{
    width:100%;
    height:220px;
    object-fit:cover;
}

.product-image{
    width:100%;
    height:220px;
    object-fit:cover;
}

.product-name{
    min-height:55px;
    font-weight:600;
}

.product-price{
    color:#28a745;
    font-size:18px;
    font-weight:bold;
}

.stock{
    font-size:14px;
}

/* ---------- BUTTONS ---------- */

.btn{
    border-radius:8px;
}

.btn-success{
    font-weight:600;
}

.btn-info{
    font-weight:600;
}

.btn-danger{
    font-weight:600;
}

.btn-warning{
    font-weight:600;
}

/* ---------- INPUT ---------- */

.form-control{
    border-radius:8px;
}

.input-group-text{
    border-radius:0 8px 8px 0;
}

/* ---------- TABLE ---------- */

.table{
    background:white;
}

.table thead th{
    background:#f8f9fa;
    border-top:none;
    font-weight:600;
}

.table td,
.table th{
    vertical-align:middle;
}

/* ---------- ALERT ---------- */

.alert{
    border:none;
    border-radius:10px;
}

/* ---------- BADGES ---------- */

.badge{
    border-radius:30px;
    padding:8px 12px;
    font-size:13px;
}

/* ---------- ORDER SUMMARY ---------- */

.order-summary{
    background:#fafafa;
    border-radius:10px;
    padding:18px;
    margin-top:15px;
}

.grand-total{
    font-size:22px;
    font-weight:bold;
    color:#28a745;
}

/* ---------- TIMELINE ---------- */

.timeline{
    margin-top:30px;
}

.timeline-step{
    text-align:center;
    flex:1;
}

.timeline-circle{
    width:22px;
    height:22px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    font-size:11px;
    font-weight:bold;
}

.timeline small{
    display:block;
    margin-top:8px;
    color:#666;
    font-size:12px;
}

/* ---------- CART ---------- */

.cart-total{
    background:#fff;
    border-radius:10px;
    padding:20px;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
}

.cart-img{
    width:70px;
    height:70px;
    object-fit:cover;
    border-radius:8px;
}

/* ---------- CHECKOUT ---------- */

.checkout-box{
    background:white;
    padding:20px;
    border-radius:12px;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
}

/* ---------- LOGIN ---------- */

.login-box{
    max-width:420px;
    margin:60px auto;
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 18px rgba(0,0,0,.12);
}

/* ---------- FOOTER FULL WIDTH FIX ---------- */

.site-footer{
    background:#198754;
    color:#fff;
    padding:60px 0 20px;
    margin-top:60px;
}

/* headings */
.site-footer h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
}

/* links */
.site-footer a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: 0.3s;
}

.site-footer a:hover {
    color: #ffe082;
    transform: translateX(5px);
}

/* bottom */
.footer-bottom {
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 15px;
    text-align: center;
    font-size: 14px;
    opacity: 0.9;
}

/* ---------- HELP BOX ---------- */

.help-box{
    background:#fff;
    border-radius:10px;
    padding:18px;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
}

/* ---------- BACK TO TOP ---------- */

#topBtn{
    position:fixed;
    bottom:20px;
    right:20px;
    display:none;
    border:none;
    background:#28a745;
    color:white;
    width:45px;
    height:45px;
    border-radius:50%;
    cursor:pointer;
    font-size:18px;
    box-shadow:0 4px 10px rgba(0,0,0,.25);
}

#topBtn:hover{
    background:#146c43;
}

/* ---------- ANIMATION ---------- */

.fade-card{
    animation:fadeIn .35s ease;
}

@keyframes fadeIn{

    from{
        opacity:0;
        transform:translateY(15px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* ---------- RESPONSIVE ---------- */

@media(max-width:992px){

    .container{
        max-width:95%;
    }

    .navbar-nav{
        margin-top:15px;
    }

    .navbar .btn{
        width:100%;
        margin-top:10px;
    }

}

@media(max-width:768px){

    .card-img-top,
    .product-image{
        height:180px;
    }

    .table{
        font-size:14px;
    }

    .timeline{
        flex-wrap:wrap;
    }

    .timeline-step{
        width:50%;
        margin-bottom:20px;
    }

    .page-title{
        font-size:28px;
    }

}

@media(max-width:576px){

    body{
        font-size:14px;
    }

    .page-title{
        font-size:24px;
    }

    .card-body{
        padding:15px;
    }

    .product-name{
        min-height:auto;
    }

    .timeline-step{
        width:100%;
    }

    .badge{
        font-size:11px;
    }

}
/* ================= HERO SECTION ================= */
.hero-banner {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;

    /* 👇 YOUR IMAGE HERE */
    background: url("../uploads/lo.png") no-repeat center center;

    background-size: cover;
    overflow: hidden;
}

/* DARK OVERLAY (makes text readable) */
.hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

/* CONTENT ABOVE IMAGE */
.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
	transform: translateY(-100px);
}

.hero-text {
    color: white;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 54px;
    font-weight: 800;
	color: #fff;
}

.hero-text p {
    font-size: 18px;
    margin-top: 10px;
	color: #fff;
}

/* WAVE */
.hero-wave {
    position: absolute;
    bottom: 0;
    width: 100%;
}


.card{

    transition:0.3s;

}

.card:hover{

    transform:translateY(-8px);

}
/* PRODUCT CARD */
.product-card {
    transition: 0.3s;
    border-radius: 10px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* IMAGE FIX SIZE */
.product-img {
    height: 180px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.list-group {
    position: sticky;
    top: 20px;
}
.list-group-item.active {
    background-color: #28a745 !important;
    border-color: #28a745 !important;
}
.list-group-item {
    transition: 0.2s;
}

.list-group-item:hover {
    transform: translateX(5px);
}
/* WHY CHOOSE US BACKGROUND */
.why-choose-section {
    background: #e8f5e9;  /* light green */
}

