.hero-bg {
    min-height: 300px;
}

.hero-bg * {
    position: relative;
    z-index: 2;
}

.hero-bg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
    position: absolute;
    z-index: 0;
}

.hero-bg .gradient {
    height: 100%!important;
    width: 100%;
    left: 0;
    top: 0;
    position: absolute;
    z-index: 1;
    background: rgb(255,255,255);
    background: -moz-linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 60%);
    background: -webkit-linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 60%);
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 60%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}

.hero-bg .page-wrapper {
    min-height: 300px;
    height: 100%;
    display: flex;
    align-items: end;
}

.product-archive {
    display: flex;
    flex-direction: column;
}

.thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.thumbnail .wrap-wo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-archive .thumbnail:hover img {
    scale: 1.2;
}

.woocommerce nav.woocommerce-pagination ul li a:focus, .woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li span.current, .woocommerce-pagination span.page-numbers.current, .woocommerce-pagination span.page-numbers:hover {
    background-color: transparent!important;
    color: white;
}

div#loadmore-container {
    text-align: center;
}

.woo-product .medium-size {
    color: var(--gray-color);
    font-size: 1.4rem;
}

.woo-product .links {
    padding-top: 2em;
}

.letter, .letterpodtext {
    opacity: 0;
    display: inline-block; /* Umožňuje animáciu jednotlivých písmen */
    transition: opacity 0.5s ease; /* Plynulá zmena neviditeľnosti */
    min-width: 10px;
}

.letter {
    min-width:20px;
}

.category-list.section-padding * {
    color: var(--black-color);
}

.category-list ul {
    display: flex;
    flex-wrap: wrap;
}

.category-list ul li {
    margin-top: 1em;
    margin-right: 1em;
    cursor: pointer;
    position: relative;
}

@media only screen and (max-width: 650px) {
    .category-list ul {
        overflow-y: scroll;
        flex-wrap: nowrap;
-ms-overflow-style: none;
scrollbar-width: none;
    }

    .category-list ul a {
        width: max-content;
    }
}