/* ==========================
   AC Listings Premium CSS
========================== */

.ac-listings-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin:40px 0;
}

.ac-card{
background:#fff;
border-radius:18px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.35s;
border:1px solid #ececec;
}

.ac-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,.18);
}

.ac-image{
position:relative;
overflow:hidden;
}

.ac-image{
height:260px;
background:#ffffff;
display:flex;
align-items:center;
justify-content:center;
padding:15px;
border-bottom:1px solid #eee;
}

.ac-image img{
width:100%;
height:100%;
object-fit:contain;
transition:.4s;
}

.ac-card:hover .ac-image img{
transform:scale(1.05);
}

.ac-card:hover .ac-image img{
transform:scale(1.08);
}

.ac-price{
background:#0d6efd;
color:#fff;
padding:14px;
font-size:22px;
font-weight:700;
display:flex;
justify-content:space-between;
align-items:center;
}

.ac-badge{
background:#28a745;
padding:5px 12px;
border-radius:30px;
font-size:12px;
font-weight:700;
}

.ac-card-body{
padding:22px;
}

.ac-card-body h3{
margin:0 0 18px;
font-size:24px;
font-weight:700;
color:#222;
}

.ac-card-body ul{
margin:0;
padding:0;
list-style:none;
}

.ac-card-body li{
padding:10px 0;
border-bottom:1px solid #eee;
font-size:16px;
color:#444;
}

.ac-buy-btn{
display:block;
margin-top:20px;
background:#25D366;
color:#fff !important;
text-align:center;
padding:15px;
font-size:18px;
font-weight:700;
border-radius:10px;
text-decoration:none;
transition:.3s;
}

.ac-buy-btn:hover{
background:#159947;
}

.ac-single-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
max-width:1200px;
margin:50px auto;
padding:20px;
}

.ac-single-image img{
width:100%;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.ac-single-price{
font-size:38px;
font-weight:700;
color:#e53935;
margin:20px 0;
}

.ac-single-table{
width:100%;
border-collapse:collapse;
margin-top:20px;
}

.ac-single-table th,
.ac-single-table td{
padding:14px;
border-bottom:1px solid #eee;
text-align:left;
}

.ac-whatsapp-btn{
display:inline-block;
margin-top:30px;
background:#25D366;
color:#fff !important;
padding:18px 40px;
font-size:20px;
font-weight:700;
border-radius:10px;
text-decoration:none;
}

.ac-whatsapp-btn:hover{
background:#159947;
}

@media(max-width:991px){

.ac-listings-grid{
grid-template-columns:repeat(2,1fr);
}

.ac-single-wrapper{
grid-template-columns:1fr;
}

}

@media(max-width:768px){

.ac-listings-grid{
grid-template-columns:1fr;
}

}