/* ===== Produktová karta ===== */
.product-card {
  background: #ededed;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    margin-bottom:15px;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* ===== Obrázek – jednotná výška ===== */
.product-image-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 260px;               /* ‹ jednotná výška pro všechny karty */
    background: #ededed;
    padding: 12px;
    position: relative;
    overflow: hidden;
}

.product-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;         /* celý produkt zůstane vidět */
    object-position: center;
    transition: transform 0.25s ease;
}

.product-card:hover .product-image {
    transform: scale(1.03);
}

.stavProduktu{margin-top:3px;}
.modal{z-index:555599999!important;}

/* ===== Badges – nová verze ===== */
.product-badges {
    position: relative;
    top: 10px;
    left: 10px;
    z-index: 55555;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 15px;
      background: #ededed;
}

.skladem {
    background: #28a745;
    color: #fff !important;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.badge-sleva {
    background: #c41e3a;
    color: #fff !important;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Konkrétní barvy */
.badge-sleva {
    background: #c41e3a;
    color: #fff;
}

.skladem,
.product-badges .skladem {
    background: #e6f4ea;
    color: #1e7e34;
}

/* ===== Info část ===== */
.product-info {
    padding: 14px 16px 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background:#fff;
}

.product-id {
    font-size: 12px;
    color: #999;
    margin-bottom: 4px;
}

.product-title {
    font-size: 15px;
    font-weight: 700;
    color: #c41e3a;
    text-decoration: none;
    line-height: 1.3;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;          /* maximálně 2 řádky */
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.6em;                  /* pevná výška pro 2 řádky */
}

.product-short-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.4;
}

/* Cena */
.product-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 10px;
}

.price-old {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}

.price-current {
    font-size: 20px;
    font-weight: 700;
    color: #222;
}

/* Tlačítko */
.btn-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 14px;
    background: #c41e3a;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(196, 30, 58, 0.25);
}

.btn-cart:hover {
    background: #a81930;
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.35);
    transform: translateY(-1px);
}

/* Detail odkaz */
.product-detail-link {
    display: block;
    text-align: center;
    margin-top: 10px;
    font-size: 12.5px;
    color: #777;
    text-decoration: underline;
}

.product-detail-link:hover {
    color: #c41e3a;
}