/* styles.css */

/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

button {
    cursor: pointer;
}

/* Top Header Styles */
#topheader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #f8f8f8;
    border-bottom: 1px solid #ddd;
}

#topheader .nav-items a {
    margin: 0 15px;
    color: #333;
    font-weight: bold;
}

#topheader .logo img {
    width: 75px;
    height: 75px;
}

/* Header Styles */
#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #fafafa;
    border-bottom: 1px solid #ddd;
}

#header .vendor-logo img {
    width: 150px;
    height: 150px;
    margin-right: 20px;
}

#header .vendor-name h1 {
    margin: 0;
    font-size: 24px;
    color: #333;
}

/* Navigations Styles */
#navigations {
    padding: 10px 20px;
    background-color: #f1f1f1;
}

#navigations ul li {
    display: inline-block;
    margin-right: 15px;
}

#navigations ul li a {
    padding: 5px 10px;
    background-color: #e1e1e1;
    border-radius: 5px;
    color: #333;
    font-weight: bold;
}

/* Search Styles */
#search {
    display: flex;
    justify-content: center;
    padding: 20px;
    background-color: #fafafa;
    border-bottom: 1px solid #ddd;
}

#search input[type="text"] {
    width: 300px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
}

#search button {
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-left: 0;
    border-radius: 0 5px 5px 0;
    background-color: #333;
    color: #fff;
    font-weight: bold;
}

/* Product List Styles */
#product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
    background-color: #fff;
}

#product-list .product-card {
    width: 200px;
    margin: 10px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-align: center;
    background-color: #fafafa;
}

#product-list .product-card img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

#product-list .product-card h2 {
    font-size: 18px;
    color: #333;
    margin: 10px 0;
}

#product-list .product-card p {
    font-size: 16px;
    color: #666;
}

#product-list .product-card .button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border-radius: 5px;
    font-weight: bold;
}
