
    .card-link {
    text-decoration: none;
    color: inherit;
}

/* CARD */
.listing-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    transition: 0.3s ease;
    position: relative;
}

.listing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.18);
}

/* IMAGE */
.image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.image-wrap img.main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SHIMMER EFFECT */
.image-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(255,255,255,0.45) 50%,
        transparent 70%
    );
}

.listing-card:hover .image-wrap::after {
    animation: shimmer 0.35s ease-in-out;
}

@keyframes shimmer {
    from { left: -150%; }
    to { left: 150%; }
}

/* ELITE BADGE */
.badge-elite {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #fff;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    gap: 6px;
    align-items: center;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    z-index: 2;
}

/* CATEGORY ICON */
.badge-icon {
    border-color: #b52433;
    border-style: solid;
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 52px;
    height: 52px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    z-index: 2;
}

.badge-icon img {
    width: 60%;
}

/* BODY */
.card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Price aligned right */
.price {
    margin-top: auto;          /* Push price to bottom */
    text-align: right;         /* Align text to right */
    font-weight: 600;
    color: #b52433;
    font-size: 15px;
}

.title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.meta {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
}

/* .price {
    margin-top: 10px;
    font-weight: 600;
    color: #b52433;
} */

