.shopstart-shop-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.shop-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.shop-card:hover {
    transform: translateY(-5px);
}

.shop-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.shop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-content {
    padding: 20px;
}

.shop-content h3 {
    margin: 0 0 10px 0;
    font-size: 1.2em;
    color: #333;
}

.shop-categories {
    margin: 10px 0;
}

.shop-categories span {
    display: inline-block;
    background: #f0f0f0;
    padding: 3px 8px;
    border-radius: 3px;
    margin-right: 5px;
    font-size: 0.9em;
}

.shop-description {
    color: #666;
    margin: 10px 0;
}

.shop-button {
    display: inline-block;
    padding: 8px 15px;
    background: #2271b1;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.shop-button:hover {
    background: #1a5a96;
}

.shop-pagination {
    text-align: center;
    margin: 20px 0;
}

.shop-pagination a {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 2px;
    background: #f0f0f0;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
}

.shop-pagination a:hover {
    background: #e0e0e0;
}

.shop-pagination .current {
    background: #2271b1;
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .shop-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .shop-content h3 {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .shop-grid {
        grid-template-columns: 1fr;
    }
}
