html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    margin: 0;
    padding: 10px;
}

.product-container {
    background-color: #fff;
    margin-bottom: 10px;
}

.product-image {
    width: 100%;
    height: auto;
}

.product-title {
    font-size: 15px;
    margin: 10px 10px;
    color: #333;
    padding-bottom: 10px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.category {
    width: 100%;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
    text-align: center;
}

.item {
    background-color: #fff;
    border-radius: 8px;
    width: 43%;
    margin-bottom: 10px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

    .item img {
        width: 100%;
        height: auto;
        margin-bottom: 10px;
        border-bottom: 1px #ccc solid;
    }

    .item .title {
        height: 62px;
        overflow: hidden;
    }

a {
    text-decoration: none;
    color: inherit;
}

    a:visited {
        color: inherit;
    }