@font-face {
    font-family: 'Larosa Sans';
    src: url('fonts/LarosaSans-Regular.woff2') format('woff2'),
         url('fonts/LarosaSans-Regular.woff') format('woff'),
         url('fonts/LarosaSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

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

body {
    font-family: 'Larosa Sans', Arial, sans-serif;
    background-color: #f8f9fa;
    color: #000000;
    padding: 20px;
}

h1 {
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    transition: 0.3s;
}

h1:hover {
    letter-spacing: 4px;
}

.menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    font-weight: bold;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.menu p {
    padding: 12px 25px;
    background-color: #FFD700;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    user-select: none;
}

.menu p:hover {
    background-color: #E6C200;
    letter-spacing: 2px;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.menu p.active {
    background-color: #E6C200;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.searchBar {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

input {
    flex: 1;
    padding: 15px 20px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border: 2px solid #FFD700;
    border-right: none;
    background-color: #ffffff;
    color: #000000;
    font-size: 1rem;
}

input:focus {
    outline: none;
    border-color: #E6C200;
}

button {
    border: 2px solid #FFD700;
    border-left: none;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 15px 25px;
    font-family: "Lucida Sans", sans-serif;
    font-size: 1rem;
    background-color: #FFD700;
    color: #000000;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
}

button:hover {
    background-color: #E6C200;
    letter-spacing: 2px;
}

.cardParent {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    width: 280px;
    transition: 0.3s;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.card .description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.card .price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 8px;
}

.card .category {
    display: inline-block;
    background-color: #f0f0f0;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #555;
}

.no-results {
    text-align: center;
    font-size: 1.5rem;
    color: #666;
    margin-top: 50px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .menu {
        gap: 10px;
    }

    .menu p {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .card {
        width: 100%;
        max-width: 350px;
    }
}