/* Premium Brand Deal Cards Grid */
.favourites-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.premium-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #f0f3f9;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    height: 100%;
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,45,91,0.08);
    border-color: #cbd5e1;
}

/* Floating Badges & Icons */
.card-verified-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    background: rgba(34, 197, 94, 0.9);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 10px rgba(34, 197, 94, 0.2);
}

.card-heart-wrap {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

.heart-btn-wrap {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.2s ease;
}

.heart-btn-wrap:hover {
    transform: scale(1.1);
    background: #fff;
}

/* Image Header */
.card-image-box {
    height: 160px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    border-bottom: 1px solid #f8fafc;
    overflow: hidden;
}

.card-image-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.premium-card:hover .card-image-box img {
    transform: scale(1.05);
}

/* Content Sections */
.card-content-wrap {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content-wrap h3 {
    font-size: 17px;
    color: #0f172a;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 48px;
}

.card-description {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 42px;
}

/* Meta Data Row */
.card-meta-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
}

.meta-info-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
}

.meta-info-item i.fa-calendar-alt { color: #002d5b; }
.meta-info-item i.fa-bolt { color: #f59e0b; }

/* Action Row */
.card-action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 12px;
}

.claim-deal-btn {
    flex-grow: 1;
    background: #ff5e14;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    border-radius: 12px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(0,45,91,0.15);
}

.claim-deal-btn:hover {
    background: #001d3d;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,45,91,0.2);
    color: #fff;
}

.share-btn-round {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.share-btn-round:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #002d5b;
}

/* Mobile Responsiveness for Grid */
@media (max-width: 992px) {
    .favourites-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .favourites-grid {
        grid-template-columns: 1fr;
    }
}
