#custom-related-products {
    margin: 3rem 0;
    padding-top: 2rem;
    border-top: 1px solid #eaeaea;
}

.related-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: left;
}

.related-grid {
    display: grid;
    /* auto-fill vytvoří sloupce o šířce 300px. Pokud je jen 1 produkt, zbytek gridu zůstane prázdný a neroztáhne se. */
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.custom-product-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 1rem;
    text-decoration: none;
    background: #fff;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    color: inherit;
    text-align: left; /* Zarovnání textu doleva */
}

.custom-product-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.product-img-wrapper {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Zarovnání obrázku doleva */
    overflow: hidden;
    margin-bottom: 1rem;
}

.product-img-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.product-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    color: #111;
}

.product-desc {
    font-size: 0.875rem;
    color: #666;
    margin: 0 0 1rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-bottom {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: flex-start; /* Natlačení ceny a štítku doleva */
    align-items: center;
    gap: 1rem; /* Mezera mezi cenou a štítkem */
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
}

.product-stock {
    font-size: 0.75rem;
    font-weight: bold;
    color: #16a34a;
    background: #dcfce7;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
}