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

:root {
    --primary: #fde600;
}

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

header {
    background-color: #fde600;

}

.container {
    width: 1200px;
    margin: 0 auto;
    /* padding: 20px; */
}

.logo {
    height: 125px;
    margin-bottom: 10px;
}

.search-container {
    display: flex;
    gap: 5px;
    align-items: center;
}

.search-input {
    flex: 1;
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    outline: none;
    height: 34px;
}

.search-btn {
    padding: 10px 20px;
    background-color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    height: 34px;
}

.search-btn:hover {
    background-color: #f0f0f0;
}

.section {
    padding: 30px 0;
}

.main {
    padding: 30px 0;
}

.section-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: 0.5s;
}

.product-card:hover {
    transform: translateY(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 8px;
}

.product-title {
    font-size: 16px;
    margin-bottom: 10px;
    height: 40px;
    overflow: hidden;
}

.product-price {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.product-discount {
    font-size: 14px;
    color: #027900;
    font-weight: bold;
}

.hero {
    background-image: url("https://http2.mlstatic.com/D_NQ_725416-MLA99010671646_112025-OO.webp");
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    color: white;
    text-align: center;
    padding-bottom: 50px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 24px;
}

.footer p {
    color: #777;
    text-align: center;
    font-size: 14px;
}

.footer {
    background-color: #fff;
    padding: 20px;
    margin-top: 50px;
    border-top: 2px solid var(--primary);
    text-align: center;
}

