:root {
    --orange: #ff6600;
    --black: #222;
    --white: #fff;
    --gray-light: #f8f9fa;
    --gray-dark: #495057;
    --theme-orange: #ff6600;
    --theme-orange-dark: #e65c00;
    --text-muted: #6c757d;
    --bg-light: #f8f9fa;
    --card-radius: 12px;
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

body {
    background-color: var(--gray-light);
    color: var(--black);
}
 .navbar-custom {
     background-color: var(--white);
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
     transition: all 0.3s ease;
     z-index: 1030;
 }

 .navbar-brand img {
     height: 50px;
     filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.2));
 }

 .nav-link {
     color: var(--black);
     font-weight: 500;
     padding: 10px 16px;
 }

 .nav-link:hover,
 .nav-link.active {
     color: var(--orange);
     border-bottom: 2px solid var(--orange);
 }

 .dropdown-menu {
     box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
     border-radius: 8px;
 }

 .user-credits {
     color: var(--orange);
     font-weight: 600;
     display: flex;
     align-items: center;
     gap: 6px;
 }

 .avatar {
     width: 35px;
     height: 35px;
     border-radius: 50%;
     box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
     object-fit: cover;
 }

 .fixed-navbar {
     position: fixed;
     top: 0;
     width: 100%;
     animation: slideDown 0.3s ease-in-out;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
 }

 @keyframes slideDown {
     from {
         transform: translateY(-100%);
     }

     to {
         transform: translateY(0);
     }
 }
.order-card {
    background-color: var(--white);
    border-radius: 1rem;
    box-shadow: 0 6px 15px rgb(0 0 0 / 0.08);
    transition: transform 0.25s ease, box-shadow 0.3s ease;
    border: none;
}

.order-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgb(0 0 0 / 0.15);
}

.strikethrough {
    text-decoration: line-through;
    color: #6c757d !important;
}

.status-label {
    font-weight: 600;
    font-size: 1rem;
    padding: 0.35rem 1.2rem;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    user-select: none;
    box-shadow: 0 0 8px rgb(0 0 0 / 0.07);
}

/* Status Colors */
.status-Cancelled {
    background-color: #ffebe9;
    color: #cc241d;
    box-shadow: 0 0 12px rgba(204, 36, 29, 0.4);
}

.status-Processing {
    background-color: #fff4db;
    color: #b27f00;
    box-shadow: 0 0 12px rgba(178, 127, 0, 0.4);
}

.status-Completed {
    background-color: #dbf0e6;
    color: #23733e;
    box-shadow: 0 0 12px rgba(35, 115, 62, 0.4);
}

.status-Ordered,
.status-Rescheduled {
    background-color: #d1f0ff;
    color: #006f9a;
    box-shadow: 0 0 12px rgba(0, 111, 154, 0.4);
}

.wallet-credit {
    display: inline-flex;
    align-items: center;
    background-color: #fff4e1;
    border: 1px solid var(--orange);
    padding: 0.35rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--orange);
    box-shadow: 0 0 8px rgba(255, 102, 0, 0.3);
    gap: 0.5rem;
}

.wallet-credit i {
    font-size: 1.2rem;
}

.pickup-info {
    font-size: 0.95rem;
    color: var(--gray-dark);
    background-color: var(--gray-light);
    border-radius: 10px;
    padding: 0.7rem 1.2rem;
    margin-top: 1rem;
    box-shadow: inset 0 0 5px rgb(0 0 0 / 0.05);
    font-weight: 500;
}

/* Location Info */
.location-info {
    margin-top: 1rem;
}

.location-box {
    border-left: 5px solid var(--orange);
    background: #fff;
    padding: 0.6rem 1rem;
    margin-bottom: 0.8rem;
    border-radius: 0.5rem;
    box-shadow: 0 3px 8px rgb(0 0 0 / 0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.location-icon {
    color: var(--orange);
    font-size: 1.6rem;
}

.location-text {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--black);
}

.location-subtext {
    font-size: 0.9rem;
    color: #666;
    margin-left: 2.5rem;
    font-weight: 500;
}

/* Buttons */
.btn-outline-primary {
    color: var(--orange);
    border-color: var(--orange);
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    border-radius: 30px;
}

.btn-outline-primary:hover {
    background-color: var(--orange);
    color: var(--white);
    box-shadow: 0 0 12px rgba(255, 102, 0, 0.7);
    border-color: var(--orange);
}

/* Pagination */
nav[aria-label="Pagination"] {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.pagination {
    list-style: none;
    display: flex;
    gap: 0.8rem;
    padding: 0;
}

.pagination li {
    display: inline-block;
}

.pagination li a,
.pagination li span {
    display: inline-block;
    padding: 0.55rem 0.9rem;
    border-radius: 50px;
    font-weight: 600;
    color: var(--orange);
    border: 2px solid var(--orange);
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 40px;
    text-align: center;
}

.pagination li a:hover {
    background-color: var(--orange);
    color: var(--white);
    box-shadow: 0 0 12px rgba(255, 102, 0, 0.8);
}

.pagination .active span {
    background-color: var(--orange);
    color: var(--white);
    border-color: var(--orange);
    box-shadow: 0 0 14px rgba(255, 102, 0, 0.9);
}

.pickup-info {
    background: linear-gradient(135deg, #d8a683 0%, #ffe1cc 100%);
    color: black;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.5);
    font-weight: 500;
    font-size: 0.95rem;
    margin-top: 1rem;
    transition: box-shadow 0.3s ease;
}

.pickup-info:hover {
    box-shadow: 0 12px 30px rgba(255, 102, 0, 0.7);
}

.pickup-info strong {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    margin-bottom: 0rem;
}

.pickup-info i {
    font-size: 1rem;
}

.pickup-info p {
    margin: 0.1rem 0;
    line-height: 1.3;
}

.pickup-info .pickup-name {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
}

.pickup-info .pickup-mobile {
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.01em;
    opacity: 0.9;
}


/* Responsive tweaks */
@media (max-width: 767px) {
    .order-card {
        padding: 1rem !important;
    }
}

@media (max-width: 576px) {
    .pagination {
        flex-wrap: wrap !important;
        justify-content: center !important;
    }

    .pagination .page-item {
        margin: 2px;
    }
}


 .card-custom {
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
     border: none;
     border-radius: 8px;
 }

 .info-label {
     font-weight: bold;
     margin-bottom: 4px;
     color: #555;
 }

 .card-custom {
     background: #fff;
     border-radius: var(--card-radius);
     box-shadow: var(--card-shadow);
     transition: 0.3s ease;
 }

 .section-header {
     font-size: 1.2rem;
     font-weight: 600;
     color: #fff;
     background-color: var(--gray-dark);
     border-left: 4px solid var(--theme-orange-dark);
     padding-left: 10px;
     margin-bottom: 1rem;
     margin-top: 2rem;
     padding: 10px;
 }

 .info-label {
     font-weight: 500;
     color: var(--text-muted);
     font-size: 0.9rem;
 }

 .text-highlight {
     color: var(--theme-orange);
     font-weight: 600;
 }

 .btn-theme {
     background-color: var(--theme-orange);
     border: none;
     color: #fff;
 }

 .btn-theme:hover {
     background-color: var(--theme-orange-dark);
 }

 .status-badge {
     font-weight: 600;
     font-size: 0.95rem;
 }
 .pickup-info p {
     display: flex;
     align-items: center;
     margin: 5px 0;
 }

 .pickup-info strong {
     min-width: 150px;
     /* Adjust as needed */
     font-weight: bold;
 }

 .pickup-info span {
     flex: 1;
 }

 .pickup-info i {
     margin-right: 5px;
 }