body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}

nav.navbar a {
    color: var(--bs-warning);
}

footer .copyriht {
    opacity: 0.2;
}

.products-container {
    margin-bottom: 20px;
}

.pagination {
    display: inline-block;
}
.pagination-container {
    margin: 0 0 90px;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    padding: 12px 0;
    font-weight: bold;
}

.pagination-container .pagination {
    float: right;
}

.pagination-container label, .pagination-container .pagination {
    vertical-align: middle;
}


.category-filter-row {
    margin-bottom: 25px;
    padding: 6px;
    background-color: #f6f6fa;
    height: 45px;
    font-weight: bold;
}

.category-filter-row .right {
    margin-bottom: 10px;
    white-space: nowrap;
}

.product-img-wrapper {
    height: 200px;               /* výška prostoru pro obrázek */
    display: flex;
    /*align-items: center;*/         /* vertikální centrování */
    justify-content: center;     /* horizontální centrování */
    background: #fff;
}

.product-img {
    width: 150px;                /* pevná šířka náhledu */
    height: auto;
    object-fit: contain;
    transition: transform .2s ease;
}
.product-img:hover {
    transform: scale(1.02);
}
.product-detail-img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
}
.site-logo {
    height: 45px;   /* můžeš doladit */
    width: auto;
}

.text-info1 {
    color: #003366;
}
/* menší logo na mobilu */
@media (max-width: 768px) {
    .site-logo {
        height: 35px;
    }
}
@media (min-width: 768px) {
    .category-filter-row {
        padding: 8px 15px;
    }
}
@media (min-width: 768px) {
    .category-filter-row .right {
        float: right;
        margin-bottom: 0;
    }
}
@media (min-width: 1600px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1800px;
    }
}