.product-miniature-image img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}
.product-miniature-title {
    display: -webkit-box !important;
    -webkit-line-clamp: 3; /* maximálne 2 riadky */
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 66px;
}
.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 560px; /* Môžeš prispôsobiť */
    aspect-ratio: 16 / 9;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    transition: opacity 0.3s ease-in-out;
}

.video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.video-wrapper:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease-in-out;
}

.play-button:hover {
    background: rgba(0, 0, 0, 0.9);
}

.play-button::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 30px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.tools_product {
    border-radius: 1.25rem;
    padding: 1rem 0.75rem;
    background: #F5F5F5;
    margin-bottom: 15px;
}
#discounts_table.table>:not(caption)>*>* {background-color: transparent;}
.cart-table .btn-close {color:#F93A3A !important;--bs-btn-close-color:#F93A3A !important}
.product-miniature .btn {background-image:linear-gradient(86deg, #F93A3A 2%, #ff640e);color:white;border:0px}
.product-miniature .btn.disabled {background-image: linear-gradient(86deg, #A0A0A0 2%, #C0C0C0);
    color: #505050;
    border: 0px;
    cursor: not-allowed;
    opacity: 0.6;}
.product-miniature .btn:hover {background-image:linear-gradient(86deg, #F93A3A 92%, #ff640e);color:white;border:0px}
/* Kontejner kategórií s dvoma stĺpcami na mobile */
.subcategories.mobile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px;
}

.hero-banner.hero-banner-big {
    background-color: #FFCD00;
}
.mega-menu ul .mega-menu-item {
    border-bottom: 1px solid lightgray;
}
/* Každý kategóriový prvok */
.subcategories.mobile li {
    list-style: none;
    display: flex;
}

/* Odkazy ako tlačidlá */
.subcategories.mobile .category-list-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    border-radius: 8px;
    border: 2px solid #F93A3A;
    color: #333;
    background: white;
    transition: all 0.3s ease-in-out;
    min-height: 50px;
}

/* Ikona naľavo od textu */
.subcategories.mobile .category-list-btn i {
    font-size: 28px;
    margin-right: 10px;
    color: #F93A3A;
}

/* Zvýraznenie pri hoveri */
.subcategories.mobile .category-list-btn:hover {
    background: #F93A3A;
    color: white;
    border-color: #F93A3A;
}

.subcategories.mobile .category-list-btn:hover i {
    color: white;
}
.dropdown-menu-category-item {
    border-bottom: 1px solid lightgray;
}
.old-product-price {
    font-size: 1.8rem;
    line-height: 2.25rem;
    font-weight: 700;
    color: #000;
    text-decoration: line-through;
    margin-bottom: 0;
    opacity: 0.7; /* Voliteľne - mierne zosvetlenie starej ceny */
}
.old-product-miniature-price{
    font-weight: 700;
    color: #000;
    text-decoration: line-through;
    margin-bottom: 0;
    opacity: 0.7;
    text-align: right;
    width: auto;
    display: inline-block;
    float: right;
}


.hero-banner h3.hero-banner-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #000; /* Lepší kontrast */
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.7); /* Jemný svetlý tieň pre čitateľnosť */
    line-height: 1.2;
    max-width: 80%; /* Zabraňuje prekrytiu obrázkom */

    /* Obmedzenie na max. 3 riadky s "..." */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Malý podnadpis (napr. "Novinka") */
.hero-banner h6 {
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #444; /* Jemnejší kontrast */
}

/* Mobilná verzia: lepšie prispôsobenie */
@media (max-width: 480px) {
    .subcategories.mobile .subcategories.mobile {
        grid-template-columns: 1fr; /* Na veľmi malých displejoch prepne na 1 stĺpec */
    }

    .subcategories.mobile .category-list-btn {
        font-size: 14px;
        padding: 10px;
    }

    .subcategories.mobile .category-list-btn i {
        font-size: 28px;
        margin-right: 8px;
    }
}