/* ===========================
   Vision Catalog v0.2
=========================== */

body{
    background:#ece7df;
}

/* Book Container */

.vc-book{
    max-width:1400px;
    margin:40px auto;
    padding:20px;
}

/* Book Page */

.vc-category{
    background:#fff;
    margin:40px auto;
    padding:40px;
    border-radius:6px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    page-break-after:always;
}

/* Category Title */

.vc-category-title{
    text-align:center;
    font-size:34px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:40px;
    border-bottom:2px solid #ddd;
    padding-bottom:20px;
}

/* Product Grid */

.vc-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* Product Card */

.vc-card{

    background:#fff;

    border:1px solid #e7e7e7;

    padding:20px;

    transition:.3s;

    text-align:center;

}

.vc-card:hover{

    transform:translateY(-4px);

    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.vc-card img{

    width:100%;

    height:260px;

    object-fit:contain;

}

.vc-card h3{

    margin-top:15px;

    font-size:18px;

    font-weight:600;

    color:#333;

}

.vc-card a{

    color:inherit;

    text-decoration:none;

}

/* Responsive */

@media(max-width:991px){

.vc-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.vc-grid{

grid-template-columns:1fr;

}

}