body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

/* ================= SIDEBAR Start================= */
/* Sidebar */
#sidebar {
    height: 100vh;
    width: 260px;
    position: fixed;
    top: 0;
    left: -260px;
    background-color: #fff;
    transition: all 0.3s;
    z-index: 1050;
    overflow-y: auto;
}

#sidebar.active {
    left: 0;
}

/* Sidebar Header */
#sidebar .sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #E5EAFF;
}

#sidebar .sidebar-header img {
    height: 45px;
    width: auto;
}

#sidebar .close-btn {
    font-size: 24px;
    color: #05092B;
    cursor: pointer;
}

/* Main Category Links */
#sidebar .nav-link {
    color: #05092B;
    background: transparent;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
}

/* Remove background on hover */
#sidebar .nav-link:hover {
    background: transparent;
    color: #05092B;
}

/* Icons */
#sidebar .nav-link i,
#sidebar .nav-link svg {
    color: #05092B;
}

/* Submenu */
#sidebar .submenu {
    display: none;
    flex-direction: column;
    padding-left: 15px;
}

/* Submenu Links */
#sidebar .submenu .nav-link {
    background: transparent;
    color: #05092B;
    padding: 10px 20px;
}

#sidebar .submenu .nav-link:hover {
    background: transparent;
    color: #05092B;
}
/* ================= SIDEBAR End================= */

.nav-pills .nav-link {
    background-color: #05092B;
    color: #fff;
    border-radius: 5px;
    padding: 10px 20px;
    margin: 0 5px;
    transition: 0.3s ease;
}

.nav-pills .nav-link:hover {
    background-color: #0b1250;
    color: #fff;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background-color: #05092B !important;
    color: #fff !important;
}

.text-dark {
    color: #05092B !important;
}

/* Light Blue Text */
.text-light-blue {
    color: #E5EAFF !important;
}

/* Overlay */
#overlay {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
}

/* Arrow rotate */
.rotate {
    transform: rotate(180deg);
    transition: transform 0.3s;
}

/* Sidebar search */
#sidebar .search-container {
    padding: 10px 20px;
}
#sidebar .search-container input {
    width: 100%;
}

/* ================= HERO ================= */
.hero {
    background: url('assets/img/hero-banner.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 6rem 1rem;
}
.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

/* ================= PRODUCT ================= */
.product-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    background: #fff;
    position: relative;
    transition: box-shadow 0.3s;
}
.product-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-img {
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
}

/* Thumbnails */
.thumb {
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
}
.thumb:hover { opacity: 1; }
.thumb.active {
    border: 2px solid #0d6efd;
    opacity: 1;
}

/* Badges */
.badge-container {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.badge-container .hot {
    background: #ff4d4d;
    color: #fff;
    padding: 2px 6px;
    font-size: 0.75rem;
    border-radius: 4px;
}
.badge-container .num {
    background: #007bff;
    color: #fff;
    padding: 2px 6px;
    font-size: 0.75rem;
    border-radius: 4px;
}

/* Navigation background */
.nav-pills {
    background: #E5EAFF;
    display: inline-flex;
    padding: 6px;
    border-radius: 50px;
}

/* Default button */
.nav-pills .nav-link {
    color: #05092B;
    background: transparent;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Active button */
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background: #05092B !important;
    color: #fff !important;
}

/* Optional hover */
.nav-pills .nav-link:hover {
    color: #05092B;
}

/* Pricing */
.price-main {
    font-weight: bold;
    font-size: 1.50rem;
}
.price-sub {
    font-size: 1rem;
}

/* Rating */
.star-rating {
    color: #f5c518;
    font-size: 0.875rem;
}

/* ================= INPUT ================= */
/* Remove number input arrows */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-input {
    width: 130px;
}
.qty-input input {
    text-align: center;
}

/* ================= PROFILE ================= */
.profile-header {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    padding: 40px 0;
    color: #fff;
}
.profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #fff;
    object-fit: cover;
}

/* ================= INVOICE ================= */
.invoice-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.invoice-title h2 {
    font-weight: bold;
}
.table th {
    background: #f1f1f1;
}

/* ================= FOOTER ================= */
footer {
    background: #05092b;
    color: #adb5bd;
    padding: 2rem 0;
}

/* ================= CUSTOM COLORS ================= */

/* backgound colors Start */
.bg-dark-blue {
    background-color: #05092b !important;
}
.bg-light-blue {
    background-color: #E5EAFF !important;
}
/* Bcakgorund color Ends */

/* text color Start */
.text-dark-blue {
    color: #05092B !important;
}

.text-light-blue {
    color: #E5EAFF !important;
}

/* btn class Start */
/* Dark Blue Button */
.btn-blue {
    color: #fff;
    background-color: #05092b;
    border-color: #05092b;
    transition: all 0.3s ease;
}

.btn-blue:hover,
.btn-blue:focus,
.btn-blue:active {
    color: #05092b;
    background-color: #E5EAFF;
    border-color: #05092b;
    box-shadow: none;
}

/* Light Blue Button */
.btn-light-blue {
    color: #05092b;
    background-color: #E5EAFF;
    border-color: #E5EAFF;
    transition: all 0.3s ease;
}

.btn-light-blue:hover,
.btn-light-blue:focus,
.btn-light-blue:active {
    color: #fff;
    background-color: #05092b;
    border-color: #05092b;
    box-shadow: none;
}

/* Optional disabled states */
.btn-blue:disabled,
.btn-light-blue:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* text Color End */
/* Dropdown hover fix */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

/* search bar  */

.search-results{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#E5EAFF;
    border:1px solid #d4dcff;
    border-radius:8px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    max-height:350px;
    overflow-y:auto;
    z-index:1050;
}

.search-item{
    display:flex;
    align-items:center;
    gap:12px;
    padding:10px 15px;
    text-decoration:none;
    color:#05092B;
    transition:.25s;
    border-bottom:1px solid rgba(5,9,43,.08);
}

.search-item:last-child{
    border-bottom:none;
}

.search-item:hover{
    background:#ffffff;
    color:#05092B;
}

.search-item img{
    width:55px;
    height:55px;
    border-radius:8px;
    object-fit:cover;
    background:#fff;
}

.search-item h6{
    margin:0;
    font-size:15px;
    font-weight:600;
}

.search-item small{
    color:#6c757d;
}