* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, sans-serif;
}

:root {
    --primary-blue: #000080;
    --text-light: #ffffff;
}

#navbar {
    background-color: var(--primary-blue);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#logo {
    width: 50px;
}

#nav-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

#nav-links a {
    color: var(--text-light);
    text-decoration: none;
}

.btn {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

.btn-outline {
    background: transparent;
    border: 1px solid white;
    color: white;
}

/* Header */
.hero {
    background: linear-gradient(to right, #85c6d7, #ddd7ad);
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 32px;
}

.highlight-text {
    color: #001F8E;
    font-weight: bold;
}

.search-bar {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.search-bar input {
    width: 60%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.search-bar button {
    background: #001F8E;
    color: white;
    border: none;
    padding: 10px 15px;
    margin-left: 5px;
    border-radius: 5px;
    cursor: pointer;
}






/* Layout */
.layout {
    display: flex;
}

/* Sidebar */
.sidebar {
    width: 250px;
    height: 200vh; /* Adjust height as needed */
    background-color: #00287A;
    color: white;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.logo {
    text-align: center;
    margin-bottom: 20px;
}

.logo img {
    width: 50px;
    margin-bottom: 10px;
}

.logo h2 {
    font-size: 22px;
}

.nav-links {
    list-style: none;
}

.nav-links li {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.nav-links li:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.cart-badge {
    background-color: red;
    color: white;
    padding: 3px 8px;
    border-radius: 50%;
    font-size: 12px;
    margin-left: 10px;
}

.category-title {
    font-weight: bold;
    margin-top: 15px;
}

.active  {
    background-color: #008CDB;
    padding: 12px;
    border-radius: 5px;
}

.bottom-links {
    margin-top: auto;
    list-style: none;
    padding: 0;
}

.bottom-links li {
    padding: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    text-decoration: none;
    color: white;
}

.bottom-links li:hover {
    background-color: rgba(255, 255, 255, 0.2);
}



/* Hero Section */
.hero {
    background: linear-gradient(to right, #85c6d7, #ddd7ad);
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Main Content */
.content {
    flex: 1;
    padding-top: 20px;
    margin-left: 25px;
    text-align:left; /* Moves content to the right of the sidebar */
}

.welcome {
    font-style: italic;
    color: #000080;
}

.highlight {
    color: var(--primary-blue);
}

.hero-section {
    display: flex;
    margin-top: 20px;
    gap: 20px;
}

.hero-section img {
    width: 515px;
    height: 300px;
    border-radius: 16px;
}

.hero-section p {
    text-align: justify;
    padding-right:95px;
}

.hero-text {
    flex: 1;
}

.category-heading {
    margin-top: 30px;
    font-weight: bold;
}

.category-container {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.category-item {
    text-align: center;
    margin-left: 105px;

}

.category-item img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
}

.product-container {
    display: flex;
    gap: 15px;
    margin-top: 15px;  
}

.product-container1 {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    margin-bottom: 35px;
}

.product-card {
    width: 215px;
    background: white;
    padding: 20px;
    margin-left: 45px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.27);
}

.product-card img {
    width: 100%;
    height: 150px;
    border-radius: 8px;
}


.price {
    font-weight: bold;
}

.add-btn  {
    background-color: #000080;
    align-items: center;
    color: white;
    border: none;
    padding: 5px 18px 5px;
    cursor: pointer;
    border-radius: 5px;
    margin-left:50px;
    margin-top: 20px;
    justify-content: center;

}

.quantity-control {
    display: flex;
    justify-content: center;
    gap: 5px;
    padding-top: 20px;
}

.quantity-control button {
    background: #000080;
    color: white;
    border: none;
    padding: 6px 11px;
    cursor: pointer;
    border-radius: 5px;
    margin-right: 5px;
    margin-left: 5px;
}

.more {
    text-align: right;
    margin-top: 5px;
    color: green;
    font-weight: bold;
}