/* Stylizace tlačítek pro e-shop */
        .btn-category {
            display: inline-block;
            background-color: #2c5aa0; /* Tmavě modrá barva */
            color: #ffffff !important;
            padding: 14px 26px;
            text-decoration: none !important;
            border-radius: 4px;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 13px;
            margin: 15px 0 30px 0;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            letter-spacing: 1px;
        }
        .btn-category:hover {
            background-color: #1e3a6f;
            color: #ffffff !important;
            text-decoration: none !important;
            transform: translateY(-1px);
        }
       

/* Vynucení centrování pro detail článku */
.type-page .content-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.pageArticleDetail {
    width: 100%;
    max-width: 900px; /* Nebo jiná šířka podle potřeby */
    margin-left: auto !important;
    margin-right: auto !important;
}

/*scrooling*/
html{scroll-behavior:smooth;scroll-padding-top:150px}
@media(max-width:768px){html{scroll-padding-top:100px}}
#category-header{scroll-margin-top:50px}
@media(max-width:768px){#category-header{scroll-margin-top:0px}}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}}
/*Konec scrooling*/

/* Styly pro odrážky uvnitř článku s třídou pageArticleDetail */
:is(body[class*="id-1856"], body[class*="id-27"], body[class*="id-1865"]) .pageArticleDetail ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

:is(body[class*="id-1856"], body[class*="id-27"], body[class*="id-1865"]) .pageArticleDetail ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  line-height: 1.5;
}

:is(body[class*="id-1856"], body[class*="id-27"], body[class*="id-1865"]) .pageArticleDetail ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #4a74b0;
  font-weight: bold;
  font-size: 1.1em;
}

/* Pokud chcete odstranit tučnost u nadpisu "Jednoduchý nákup..." v úvodním P tagu a nechat jen symbol */
:is(body[class*="id-1856"], body[class*="id-27"], body[class*="id-1865"]) .pageArticleDetail p:first-of-type span {
    font-weight: normal; /* Odstraní tučnost z úvodního textu */
}

:is(body[class*="id-1856"], body[class*="id-27"], body[class*="id-1865"]) .pageArticleDetail p:first-of-type span::before {
    content: '✓';
    margin-right: 5px; /* Mezera mezi symbolem a textem */
    color: #007bff; /* Příklad barvy */
    font-weight: bold;
    font-size: 1.1em;
}
/* Konec - Styly pro odrážky uvnitř článku s třídou pageArticleDetail */

/*backtotop*/
body .back-to-top {
    right: 200px;
}

 

/* Version: 10.0 - Read More Styling (External File Polish) */
.category-perex {
    position: relative;
    max-height: 150px;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    margin-bottom: 0px !important;
}

.category-perex.is-truncated::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px; 
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.9), #fff);
    pointer-events: none;
}

.read-more-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 5px 0 10px 0; /* Zmenšená bílá plocha */
}

.read-more-btn {
    background-color: #ffffff !important;
    color: #333333 !important;
    border: 1px solid #e0e5ee !important;
    padding: 7px 22px !important; 
    font-weight: 400 !important;
    font-size: 14px !important;
    border-radius: 30px !important;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05) !important;
    text-transform: none !important;
    outline: none !important;
}

.read-more-btn:hover {
    background-color: #fcfcfc !important;
    border-color: #d1d8e5 !important;
}

/* Ikona šipky (Nahoru styl) */
.read-more-btn::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 12px;
    border-left: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(-45deg);
    margin-top: -4px;
}

.read-more-btn.is-open::before {
    transform: rotate(135deg);
    margin-top: 4px;
}




/* Propojení produktu start */
.c-product-interconnection-detail-params__products.is-type--numbers span[class^=item-type] {
    line-height: 50px;
}
.c-product-interconnection-detail-params__products.is-type--numbers.is-display--box span[class^=item-type] {
    border-radius: 50%;
}
.c-product-interconnection-detail-params__products a.is-current .item-type-numbers {
    box-shadow: inset 0px 0px 400px 110px rgb(255 255 255 / 100%);
    border-color: #009c00;
}
body .c-product-interconnection-detail-params.is-template--Classic .c-product-interconnection-detail-params__type {
    margin-bottom: 0px;
    font-size: 18px;
}
body .c-product-interconnection-detail-params.is-template--Classic .c-product-interconnection-detail-params__products span[class^=item-type] {
    width: 50px;
    height: 50px;
}
.c-product-interconnection-detail-params__products span[class^=item-type] {
    border: 1px solid #00000042;
}
.c-product-interconnection-detail-params__products a:hover {
    text-decoration: none;
}
/* Propojení produktu konec */


/*skryje příznaky na mob.zař. kromě dopravy*/
@media screen and (max-width: 768px) {
    .flag {
        display: none !important;
    }
    
    .flag.flag-custom2 {
        display: block !important;
    }
}
/*skryje příznaky na mob.zař. kromě dopravy*/
