/* ===== ZÁKLAD ===== */
body {
    background: #f1f5f9;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ===== NAVBAR ===== */
.navbar-custom {
    background: #000;
    padding: 16px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

/* ===== KARTA ===== */
.ad-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 14px rgba(15,23,42,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ad-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(15,23,42,0.15);
}

/* ===== OBRÁZEK ===== */
.ad-img-wrapper {
    height: 140px;
    background: #e9eef4;
    position: relative;
    overflow: hidden;
}

.ad-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== ŠTÍTEK ===== */
.ad-badge-yellow {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #facc15;
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 999px;
    z-index: 2;
}

/* ===== OBSAH ===== */
.ad-content {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* ===== TITULEK ===== */
.ad-title {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 4px;
}

.ad-title a {
    text-decoration: none;
    color: inherit;
}

/* ===== CENA ===== */
.ad-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 6px;
}

/* ===== META ===== */
.ad-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: auto;
}

.meta-pill {
    font-size: 0.7rem;
    background: #f8fafc;
    color: #475569;
    padding: 4px 8px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    font-weight: 600;
}

/* ===== SKRYTÝ POPIS ===== */
.ad-desc {
    display: none;
}

/* ===== PATIČKA ===== */
.ad-footer {
    font-size: 0.65rem;
    color: #94a3b8;
    margin-top: 8px;
}

/* ===== MOBIL ===== */
@media (max-width: 768px) {
    .ad-img-wrapper {
        height: 120px;
    }
}
