/* Нулеви стилове за някои елементи */
body, h1, h2, p {
    margin: 0;
    padding: 0;
}

/* Основни стилове на страницата */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}

header {
    background-color: #35424a;
    color: #ffffff;
    text-align: center;
    padding: 1em;
}

main {
    padding: 20px;
}

.category {
    background-color: #f4f4f4;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.category .item-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.category .item-text {
    flex: 1;
}

.category img {
    max-width: 50%;
    height: auto;
}

.category .price {
    font-weight: bold;
}

footer {
    background-color: #35424a;
    color: #ffffff;
    text-align: center;
    padding: 1em;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}
