/* CARD */
.anand-product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;

    /* NEW: equal height fix */
    display: flex;
    flex-direction: column;
    height: 100%;
}

.anand-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.product-warp-item .product {
    padding: 0px !important;
}

/* FULL CARD CLICK */
.card-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Allow buttons to be clickable ABOVE overlay */
.actions, .actions * {
    position: relative;
    z-index: 2;
}

/* IMAGE */
.product-img-slider {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.product-img-slider .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-img-slider .slide.active {
    opacity: 1;
}

.product-img-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* IMAGE HOVER ZOOM */
.anand-product-card:hover .product-img-slider img {
    transform: scale(1.05);
}

/* BODY */
.card-body {
    padding: 14px;

    /* NEW: flex layout */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* TITLE */
.product-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;

    /* OPTIONAL: 2 line clamp for consistency */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* REMOVE HR LOOK */
.card-body hr {
    display: none;
}

/* META */
.meta-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}
.location .anand-location-text {
    font-size: 16px;
    font-weight: 500;
    color: #111827;
}
/* PRICE */
.price {
    font-weight: 600;
    color: #000;
}

/* RATING */
.rating {
    color: #f5a623;
    font-size: 13px;
    margin-bottom: 10px;

    /* NEW: reserve space even if empty */
    min-height: 18px;
}

/* ACTIONS */
.actions {
    display: flex;
    justify-content: space-between;
    align-items: center;

    /* NEW: push to bottom */
    margin-top: auto;
}

/* BOOK BUTTON */
.btn-book {
    background: #BD1417 !important;
    color: #fff;
    padding: 7px 14px;
    border-radius: 5px;
    font-size: 13px;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-book:hover {
    background: #000;
    transform: scale(1.05);
}