/* ── Jankaroo Locations Plugin Styles ─────────────────────────── */

.jankaroo-wrap {
    width: 100%;
    box-sizing: border-box;
}

/* ── Card Base ──────────────────────────────────────────────── */
.jankaroo-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,.10);
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
    cursor: default;
}
.jankaroo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,.14);
}
.jankaroo-card-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #fff;
}
.jankaroo-card-img img {
    width: 100%;
    height: 90% !important;
    object-fit: cover !important;
    display: block;
}
.jankaroo-no-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d8e4f0 0%, #b0c8e8 100%);
}
.jankaroo-card-label {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 10px 9px;
    font-size: 12.5px;
    font-weight: 600;
    color: #2c3e50;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.3;
}
.jankaroo-card-label svg {
    color: #e74c3c;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── Responsive Grid ────────────────────────────────────────── */
.jankaroo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

/* Swiper hidden everywhere */
.jankaroo-swiper-wrap { display: none !important; }

@media (max-width: 1280px) {
    .jankaroo-grid { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 1024px) {
    .jankaroo-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
    .jankaroo-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 540px) {
    .jankaroo-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
