body, h1, p {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

nav {
    display: flex;
    justify-content: space-between;
    background-color: #333;
    color: #fff;
    text-align: right;
    padding: 0 100px 10px;
}

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

nav li {
    display: inline;
    margin-left: 50px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #ff5733;
}

.logo img {
    height: 30px;
    padding-bottom: 15px;
}

.search-box input[type="text"] {
    padding: 5px;
    border: none;
    border-bottom: 2px solid #fff;
    background-color: transparent;
    color: #fff;
    margin-right: 5px;
}

.search-box input[type="text"]::placeholder {
    color: #aaa;
}

.search-box i {
    color: #fff;
    cursor: pointer;
}

.category-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.category-button {
    background-color: #ff5733;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    margin: 0 10px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
}

.category-button:hover {
    background-color: #ff2200;
}

.product-sort {
    margin-bottom: 20px;
    text-align: right;
}

.product-sort label {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-right: 10px;
}

#sort-select {
    padding: 5px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 100px;
    margin-bottom: 25px;
}

.featured-products {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin: 20px 0;
    text-transform: uppercase;
}

.product-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 100px 50px;
}

.product {
    flex-basis: calc(25% - 20px);
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #e0e0e0;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
}

.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.product img {
    max-width: 100%;
    height: auto;
}

.product h3 {
    margin-top: 10px;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    text-align: center;
    text-transform: uppercase;
}

.product p {
    font-size: 16px;
    color: #555;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
}

.product .price {
    font-size: 16px;
    font-weight: bold;
    margin: 10px 25px 0;
}

.product button.add-to-cart {
    background-color: #ff5733;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.product button.add-to-cart:hover {
    background-color: #ff2200;
}

.footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info,
.social-links {
    flex: 1;
    margin: 0 20px;
}

.contact-info h4,
.social-links h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.contact-info h4::after,
.social-links h4::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: red;
    bottom: -5px; 
    left: 0;
}

.contact-info p {
    margin: 0;
    line-height: 1.5;
}

.social-links a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-top: 5px;
    font-size: 16px;
}

.social-links a i {
    margin-right: 5px;
}

.social-links a:hover {
    text-decoration: underline;
}