* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.header {
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 50px;
    padding: 0 20px;
    align-items: center;
    gap: 10px;
}

.leftheader {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

nav a {
    text-decoration: none;
    color: inherit;
    font-family: Outfit;
    font-weight: 700;
    display: inline-block;
    background-image: linear-gradient(currentColor, currentColor);
    background-size: 0% 2px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    transition: background-size 0.3s ease;
}

nav a:hover {
    background-size: 100% 2px;
}

.logotext {
    font-family: Reem Kufi, sans-serif;
    font-weight: bold;
    font-size: 24px;
    text-decoration: none;
    color: inherit;
    padding-right: 40px;
}

.nav {
    display: flex;
    flex-direction: row;
    gap: 15px;
    font-size: 14px;
    align-items: center;
}

.logo {
    transform: translateY(-1px);
}

.googlemap {
    margin: 20px;

    border-radius: 16px;
    overflow: hidden;
    width: 600px;
    height: 450px;
    border-width: 2px;
    border-style: solid;
    border-color: rgb(0, 0, 0);
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 5px;
    padding: 10px;
}
                        
.product-card {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
}
                        
.product-card img {
    max-width: 100%;
    height: auto;
}
                        
.buy-button {
    background-color: #4CAF50;
    color: white;
    padding: 5px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.productname {
    font-family: Outfit;
    font-weight: 600;
    font-size: 18px;
    margin: 5px 0;
}

.productdescription {
    font-family: Outfit;
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

#searchBox {
    width: 500px;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    font-family: Outfit;
}

.productimage {
    width: 100%;
    height: 100px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2.5px;
}

.underrow {
    display: flex;
    justify-content: space-between;
    align-items: center;
}