<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.shop-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.shop-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s;
    text-align: center;
}

.shop-item:hover {
    transform: scale(1.05);
}

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

.shop-item h3 {
    font-size: 18px;
    margin: 10px 0;
}

.shop-price {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #5cb85c;
    margin-bottom: 10px;
}
</pre></body></html>