body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
}
.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-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);
}
.thumb {
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
}

.thumb:hover {
    opacity: 1;
}

.thumb.active {
    border: 2px solid #0d6efd;
    opacity: 1;
}
.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;
}
.star-rating {
    color: #f5c518;
    font-size: 0.875rem;
}
.product-img {
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
}
.price-main {
    font-weight: bold;
    font-size: 1.50rem;
}
.price-sub {
    font-size: 1rem;
}
footer {
    background: #05092b;
    color: #adb5bd;
    padding: 2rem 0;
}

/* Dropdown open on hover */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

/* Remove up and down arrows in number input (Chrome, Safari, Edge, Opera) */
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;
}

 body {
    background: #f8f9fa;
}
.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-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;
}