body {
    margin: 0;
    font-family: Saudagar, sans-serif;
    background-color: #8DA47D; /* Background color from the image */
    color: black;
    font-size: 14px;
    font-weight: bold; /* Make the font bold */
    text-align: center; /* Center align all text */
    -ms-overflow-style: scrollbar;
}
body::-webkit-scrollbar-thumb {
    background-color: black;
}

.header {
    display: flex;
    position: fixed;
    align-items: left;
    background-color: #8DA47D;
    top: 0;
    width: 100%;
    z-index: 1000;
    justify-content: space-between; /* Distribute space between items */
    height: 100px;
    padding: 20px 15px; /* Add padding to create space between the edges */
    transition: box-shadow 0.3s ease; /* Smooth transition for shadow */
}
.header h1 {
    font-size: 1em;
    margin: 10px 0; /* Adjust margin for better spacing */
    color: black;
    font-weight: bold;
    text-align: center; /* Center align the text */
}

.header-shadow {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow when scrolled */
}

.logo-container {
    display: flex;
    align-items: center;
}

.center-logo {
    width: 210px;
    height: 210px;
    flex-shrink: 0;
    padding-right: 30px;
}

.cart-icon {
    position: relative;
    bottom: 4.5px;
    margin-left: 20px;
    right: 30px; /* Use relative positioning */
}

.cart-icon img {
    width: 75px;
    height: 75px;
}

.cart-notification {
    position: absolute;
    bottom: 32px;
    right: 12px;
    color: black;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px; /* Adjust font size */
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-weight: bold;
}

.sides-extra-section {
    position: absolute;
    right: 61px;
    top: 95px; /* Position it below the cart icon */
}

.sides-extra-link {
    color: black;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: underline;
}

.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    padding: 140px 20px 20px; /* Add top padding equal to header height + margin */
}

.menu-item {
    width: 150px; /* Adjust width as needed */
    margin: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-item img {
    width: 150px; /* Adjust width as needed */
    height: 150px; /* Adjust height as needed */
    object-fit: contain;
}

.menu-item p {
    margin-top: 10px;
    font-size: 1.25em;
    font-weight: bold;
    color: black;
}

a.menu-link {
    text-decoration: none;
    color: inherit; /* Inherit color from parent */
}
/* Hide the default scrollbar */
::-webkit-scrollbar {
    width: 12px; /* Width of the scrollbar */
}

/* The scrollbar track */
::-webkit-scrollbar-track {
    background: #a5b19d; /* Color of the track (optional) */
}

/* The scrollbar handle */
::-webkit-scrollbar-thumb {
    background: #000; /* Black color for the scrollbar handle */
    border-radius: 6px; /* Rounded corners for the scrollbar handle */
}

/* Scrollbar handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #333; /* Darker black on hover */
}
/* Scrollbar track */
* {
    scrollbar-width: thin;
    scrollbar-color: black #a5b19d; /* Black scrollbar handle with a track color */
}

/* Optional: Only apply this if you want to customize the scrollbar handle on hover */
* {
    scrollbar-width: thin;
    scrollbar-color: #333 #a5b19d; /* Darker black on hover */
}
a {
    -webkit-tap-highlight-color: transparent;  /* For Webkit browsers (Safari, Chrome) */
}

/* Optional: Ensure no outline or shadow appears */
a:active, a:focus {
    outline: none;          /* Removes outline */
    box-shadow: none;       /* Removes any shadow */
}