
/* GRID */
.tmr-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* CARD */
.tmr-card {
    flex: 0 1 260px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    color: #111111;
}

/* IMAGE */
.tmr-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

/* BODY */
.tmr-body {
    padding: 12px 14px 14px;
}

/* TITLE */
.tmr-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

/* LOCATION */
.tmr-location {
    font-size: 13px;
    color: #555;
    margin-bottom: 6px;
}

/* RATING */
.tmr-rating {
    font-size: 13px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tmr-stars {
    color: #f1c40f;
    font-size: 14px;
}

.tmr-rating-value {
    font-weight: 700;
    color: #333;
}

/* CATEGORIES */
.tmr-cats {
    margin-bottom: 6px;
}

.tmr-cat {
    display: inline-block;
    background: #ff7043;
    color: #fff;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 11px;
    margin-right: 4px;
    margin-bottom: 3px;
}

/* VIEWERS */
.tmr-view {
    font-size: 11px;
    color: #444;
    margin-bottom: 10px;
}

/* BUTTONS */
.tmr-buttons {
    display: flex;
    gap: 6px;
}

.tmr-call,
.tmr-detail {
    flex: 1;
    text-align: center;
    padding: 8px 6px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
}

/* PHONE BUTTON */
.tmr-call {
    background: #007bff;
    color: #fff;
}

/* DETAIL BUTTON */
.tmr-detail {
    background: #ff9800;
    color: #fff;
}

/* LOADER */
.tmr-loader {
    text-align: center;
    padding: 16px 0 24px;
    font-size: 13px;
    color: #777;
}
