 /* SECTION */

.dx-tour-section{
padding:80px 20px;
background:#f5f5f5;
}

.dx-heading{
text-align:center;
font-size:34px;
margin-bottom:40px;
font-weight:600;
}

/* GRID */

.dx-tour-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
max-width:1200px;
margin:auto;
}

/* CARD */

.dx-card{
background:#fff;
border-radius:14px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:all .3s ease;
display:flex;
flex-direction:column;
}

.dx-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 35px rgba(0,0,0,0.12);
}

/* IMAGE */

.dx-img-wrap{
height:220px;
overflow:hidden;
position:relative;
}

.dx-img-wrap img{
width:100%;
height:100%;
object-fit:cover;
transition:transform .4s ease;
}

.dx-card:hover img{
transform:scale(1.08);
}

/* DISCOUNT BADGE */

.dx-badge{
position:absolute;
top:15px;
left:15px;
background:#ff4d4d;
color:#fff;
padding:6px 12px;
font-size:12px;
border-radius:20px;
font-weight:500;
}

/* BODY */

.dx-card-body{
padding:20px;
}

.dx-card-body h3{
font-size:20px;
margin-bottom:8px;
}

/* META */

.dx-meta{
font-size:14px;
color:#777;
margin-bottom:10px;
}

/* TAGS */

.dx-tags{
margin-bottom:10px;
}

.dx-tags span{
background:#f1f1f1;
padding:5px 10px;
border-radius:20px;
font-size:12px;
margin-right:6px;
}

/* PRICE */

.dx-price-box{
margin-top:15px;
display:flex;
align-items:center;
gap:10px;
}

.dx-old-price{
font-size:12px;
color:#9ca3af;
text-decoration:line-through;
}

.dx-new-price{
font-size:22px;
font-weight:600;
color:#0073aa;
}

/* BUTTON */

.dx-btn{
display:inline-block;
margin-top:16px;
background:#ff6a00;
color:white;
padding:10px 20px;
border-radius:6px;
text-decoration:none;
font-weight:500;
transition:.3s;
}

.dx-btn:hover{
background:#e85e00;
}

/* UTILITY CLASSES */

.text-xs{
font-size:12px;
}

.text-muted-foreground{
color:#9ca3af;
}

.line-through{
text-decoration:line-through;
}

/* RESPONSIVE */

@media(max-width:1024px){

.dx-tour-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:640px){

.dx-tour-grid{
grid-template-columns:1fr;
}

.dx-heading{
font-size:28px;
}

}

/* POPUP */

.dx-popup{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
z-index:9999;
justify-content:center;
align-items:center;
}

.dx-popup-content{
background:#fff;
padding:30px;
max-width:600px;
width:90%;
border-radius:10px;
position:relative;
}

.dx-close{
position:absolute;
top:10px;
right:20px;
font-size:24px;
cursor:pointer;
}