
.ccgm-bookstore-wrap{
    max-width:1200px;
    margin:0 auto;
    padding:70px 20px;
}
.ccgm-bookstore-heading{
    text-align:center;
    max-width:760px;
    margin:0 auto 45px;
}
.ccgm-bookstore-heading span{
    font-size:13px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#c79a2b;
}
.ccgm-bookstore-heading h2{
    margin:10px 0 12px;
    font-size:clamp(30px,4vw,48px);
    line-height:1.1;
    color:#10243e;
}
.ccgm-bookstore-heading p{
    font-size:17px;
    line-height:1.7;
    color:#5f6773;
}
.ccgm-book-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:28px;
}
.ccgm-book-card{
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:transform .25s ease,box-shadow .25s ease;
}
.ccgm-book-card:hover{
    transform:translateY(-5px);
    box-shadow:0 16px 40px rgba(0,0,0,.10);
}
.ccgm-book-cover{
    background:#f4f5f6;
    aspect-ratio:4/5;
    overflow:hidden;
}
.ccgm-book-cover img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.ccgm-book-placeholder{
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    letter-spacing:2px;
    color:#a6a6a6;
}
.ccgm-book-content{
    padding:24px;
}
.ccgm-book-category{
    font-size:12px;
    font-weight:800;
    color:#c79a2b;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:8px;
}
.ccgm-book-content h3{
    margin:0;
    font-size:23px;
    line-height:1.25;
    color:#10243e;
}
.ccgm-book-author{
    margin:7px 0 12px;
    font-size:14px;
    color:#78808b;
}
.ccgm-book-desc{
    color:#5d6570;
    line-height:1.65;
    min-height:74px;
}
.ccgm-book-bottom{
    margin-top:20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
}
.ccgm-book-price{
    font-size:21px;
    font-weight:800;
    color:#10243e;
}
.ccgm-buy-button{
    display:inline-block;
    background:#c79a2b;
    color:#fff !important;
    text-decoration:none;
    font-weight:800;
    padding:11px 16px;
    border-radius:8px;
}
.ccgm-buy-button:hover{
    opacity:.9;
}
.ccgm-no-books{
    grid-column:1/-1;
    text-align:center;
    padding:50px;
    background:#f7f7f7;
    border-radius:16px;
}
@media(max-width:900px){
    .ccgm-book-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media(max-width:620px){
    .ccgm-book-grid{grid-template-columns:1fr;}
    .ccgm-bookstore-wrap{padding:45px 16px;}
}
