/*
Theme Name: Code Vriksha
Theme URI:  https://codevriksha.com/
Author:     Vishal Gandhi
Author URI: https://gandhivishal.com/
Template:   blocksy
Version:    1.0
License:    GNU General Public License v2 or later
*/


.archive-hero-section{
padding:60px 20px 30px;
}

.archive-header{
text-align:center;
max-width:800px;
margin:auto;
}

.archive-subtitle{
display:block;
font-size:13px;
font-weight:600;
letter-spacing:2px;
text-transform:uppercase;
margin-bottom:10px;
opacity:.7;
}

.archive-title{
font-size:42px;
font-weight:700;
margin-bottom:15px;
}

.archive-description{
font-size:16px;
line-height:1.7;
}

.products-grid-section{
padding:20px;
}

.rhp-products-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.rhp-product-card{
background:#fff;
border-radius:0px;
overflow:hidden;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
transition:.3s;
height:100%;
display:flex;
flex-direction:column;
}

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

.product-image-wrap img{
width:100%;
height:260px;
object-fit:cover;
display:block;
}

.product-content{
padding:20px;
flex:1;
display:flex;
flex-direction:column;
}

.product-title{
font-size:20px;
margin-bottom:10px;
line-height:1.4;
}

.product-title a{
text-decoration:none;
color:#111;
}

.product-price{
font-size:24px;
font-weight:700;
margin-bottom:12px;
}

.product-short-desc{
font-size:14px;
line-height:1.7;
margin-bottom:20px;
color:#666;
flex:1;
}

.product-btn{
width:100%;
justify-content:center;
}

.rhp-pagination{
margin-top:50px;
text-align:center;
}

.rhp-pagination .page-numbers{
display:inline-flex;
align-items:center;
justify-content:center;
min-width:42px;
height:42px;
padding:0 14px;
margin:0 5px;
border-radius:0px;
text-decoration:none;
background:#f3f3f3;
color:#111;
font-weight:600;
}

.rhp-pagination .current{
background:#00509d;
color:#fff;
}

.no-products-found{
text-align:center;
padding:80px 20px;
font-size:20px;
}

@media(max-width:1024px){
.rhp-products-grid{
grid-template-columns:repeat(3,1fr);
}
}

@media(max-width:767px){
.archive-title{
font-size:30px;
}

.rhp-products-grid{
grid-template-columns:repeat(1,1fr);
}

.product-image-wrap img{
height:220px;
}
}