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

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

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

.header-title {
    font-size: 36px;
    font-weight: bold;
    color: #ff5733;
    text-align: center;
    margin: 20px 0;
  }

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;
}

.search-box {
    align-items: center;
    margin-top: 10px;
}

.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;
}

#searchResults {
    max-width: 300px;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    padding: 10px;
    position: absolute;
    left: 0;
    top: 100%;
    display: none;
}

#searchResults > div {
    padding: 5px 0;
    border-bottom: 1px solid #ccc;
}

#searchResults > div:last-child {
    border-bottom: none;
}

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

.slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 2000px;
    margin: 0 auto;
    text-align: center;
    height: 400px;
    position: relative;
}

.slides {
    display: flex;
    transition: transform 1s ease-in-out;
    width: 6000px;
}

.slide {
    flex: 0 0 2000px;
    position: relative;
}

.prev-button,
.next-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 32px;
    width: 60px;
    height: 60px;
    background-color: #ff5733;
    border: none;
    cursor: pointer;
    z-index: 2;
    border-radius: 0;
    transition: background-color 0.3s;
}

.prev-button:hover,
.next-button:hover {
    background-color: black;
}

.prev-button {
    left: 0;
}

.next-button {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.slider-button {
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 20%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-button.active {
    background-color: red;
}

.featured-products {
    text-align: center;
    margin-top: 60px;
    font-size: 30px;
    color: #333;
}

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

.product {
    text-align: center;
    margin: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    width: calc(25% - 20px);
    box-sizing: border-box;
    position: relative;
}

.product img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    transition: 0.3s;
}

.product img:hover {
    opacity: 0.5;
    transition: 0.3s;
}

.product p {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    color: #fff;
    background-color: rgba(255, 87, 51, 0.8);
    padding: 10px;
    width: 60%;
    text-align: center;
    opacity: 0;
    transition: 0.3s;
}


.product:hover p {
    transition: 1s;
    opacity: 1;
}

.product h3{
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px;
    width: 50%;
    text-align: center;
    opacity: 0;
    transition: 0.3s;
}

.product:hover h3{
    transition: 1s;
    opacity: 1;
}

.product span{
    position: absolute;
    bottom: 20px;
    left: 25%;
    transform: translate(-50%, -50%);
    opacity: 0;
    color: #fff;
    background-color: rgba(255, 87, 51, 0.8);
    padding: 10px;
    width: 15%;
    text-align: center;
    opacity: 0;
    transition: 0.3s;
}

.product:hover span{
    transition: 1s;
    opacity: 1;
}

.product button {
    position: absolute;
    top: 75%;
    left: 50%;
    opacity: 0;
    display: inline-block;
    background-color: #ff5733;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
}


.product button:active {
    background-color: #333;
    transform: translate(1%, 10%)
}

.product:hover button {
    opacity: 1;
}

.product button:hover {
    background-color: #d44226;
    transition: 0.2s;
    opacity: 1;
}

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

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

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

.category-button.active {
    background-color: #555;
}

.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;
}