/* zocular-grid.css */
.zocular-title {
    text10text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}
.zocular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    padding: 0 10px;
}
.zocular-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,.08);
    transition: .2s;
}
.zocular-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0,0,0,.1);
}
.zocular-card img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    border-radius: 10px;
    background: #fff;
}
.zocular-card-title {
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0 5px;
}
.zocular-card-price {
    font-size: 17px;
    color: #0a7b46;
    font-weight: bold;
    margin-bottom: 15px;
}
.zocular-btn {
    display: inline-block;
    padding: 10px 14px;
    background: #007b5e;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: .15s;
}
.zocular-btn:hover {
    background: #005a46;
}