.cs-table {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

@media (max-width: 900px) {
    .cs-table {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cs-table {
        grid-template-columns: 1fr;
    }
}

.cs-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    padding: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cs-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.cs-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 0.8rem;
}

.cs-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0.4rem 0;
}

.cs-subtitle {
    color: #555;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.cs-price {
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: bold;
    color: #0073aa;
    font-size: 1.1rem;
}
.cs-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.cs-link:hover .cs-title {
    color: #005177;
}

.cs-item:hover {
    cursor: pointer;
}
.cs-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.cs-link:hover .cs-title {
    color: #0073aa;
}
.cs-pagination {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.cs-pagination .cs-page {
    display: inline-block;
    padding: 8px 14px;
    background: #f2f2f2;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.2s ease;
}

.cs-pagination .cs-page:hover {
    background: #0073aa;
    color: #fff;
}

.cs-pagination .cs-page-active {
    background: #0073aa;
    color: #fff;
    pointer-events: none;
}

.cs-pagination .cs-prev,
.cs-pagination .cs-next {
    background: #eaeaea;
    font-weight: 600;
}

.cs-pagination .cs-prev:hover,
.cs-pagination .cs-next:hover {
    background: #005177;
    color: #fff;
}
