/* =========================================================
   ZÁKLADNÍ TYPOGRAFIE A GLOBÁLNÍ STYLY
========================================================= */

body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    color: #111;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
button,
.btn,
.cta,
.homepage-group-title,
.homepage-products-heading-1,
.homepage-products-heading-2,
.homepage-products-heading-3,
.homepage-products-heading-4 {
    font-family: neue-haas-grotesk-display, "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    text-align: left;
    padding-left: 30px;
}

h1 { font-size: 48px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

/* =========================================================
   NAVIGACE A MENU
========================================================= */

nav a,
.navigation a,
.menu a {
    font-family: Inter, system-ui, sans-serif;
    font-weight: 900 !important;
    text-transform: uppercase;
}

.menu-level-1 > li > a,
.menu-level-1 > li > a b {
    font-weight: 800 !important;
    font-size: 16px !important;
}

.itemsTotal {
    display: none;
}

/* =========================================================
   SKRÝT LEVEL 3 MENU
========================================================= */

.navigation-in .menu-level-3 {
    display: none !important;
}

.breadcrumbs.navigation-home-icon-wrapper {
    display: none;
}

/* =========================================================
   OBECNÉ LAYOUTY A WRAPPERY
========================================================= */

.content,
.products-block > div,
.product-slider-holder.has-navigation,
.content-wrapper.container {
    padding: 0 !important;
}

.container { width: 100%; }

.products-block {
    margin-left: 0;
    margin-right: 0;
}

.full-width.footer-newsletter-full-width { background: #00c6ff; }

.carousel { margin-bottom: -1px; }



/* =========================================================
   LOGO
========================================================= */

.site-name img {
    width: 150px;
    height: auto;
}

/* =========================================================
   PRODUKTOVÉ KARTY
========================================================= */

.product {
    position: relative;
}

.product .image {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.product:hover .image img {
    transform: scale(1.05);
}

/* 🔥 UPRAVENO – tlačítko přes obrázek */
.product .p-tools {
    position: absolute;
    bottom: 30%; /* POSUN NAHORU */
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 100%;
    display: flex;
    justify-content: center;
    opacity: 0;
    transition: .3s ease;
    pointer-events: none;
}

.product:hover .p-tools {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.product .btn-cart {
    width: 80%;
    background: #000;
    color: #fff;
    border-radius: 6px;
    padding: 15px 0;
    font-weight: 700;
    font-size: 14px;
}

/* =========================================================
   CUSTOM FLAG
========================================================= */

.flag.flag-custom1 {
    padding: 10px 8px;
    font: 700 14px Montserrat, sans-serif;
    color: #fff;
    background: linear-gradient(to right, #00c6ff, #ff0);
    border-radius: 0;
}

.shp-tabs-holder { display: none; }

/* =========================================================
   SUBCATEGORY GRID S OBRÁZKY
========================================================= */

.subcategories.with-image li a {
    border: none !important;
    background: none !important;
    height: auto !important;
    padding: 0 !important;
    border-radius: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: center !important;
}

.subcategories.with-image li a .image {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: auto !important;
    margin-bottom: 10px;
}

.subcategories.with-image li a .image img {
    max-height: 380px !important;
    width: auto !important;
    max-width: none !important;
    display: block;
    margin: 0 auto;
    transition: transform .3s ease;
}

.subcategories.with-image li a:hover img {
    transform: scale(1.1);
}

.subcategories.with-image li a .text {
    padding: 0 !important;
    width: auto !important;
    text-align: center !important;
    white-space: normal !important;
    line-height: 1.2 !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: .5px;
}

.subcategories li a .text {
    max-height: none !important;
    overflow: visible !important;
}

/* =========================================================
   BENEFIT BANNERS
========================================================= */

.benefit-banners-full-width {
    background: #000 !important;
    padding: 40px 0;
}

.benefit-banners-full-width .benefitBanner__title,
.benefit-banners-full-width .benefitBanner__data {
    color: #fff !important;
}

.benefit-banners-full-width .benefitBanner__img {
    filter: brightness(0) invert(1);
}

/* =========================================================
   RESPONSIVE: TABLET DO 1024 PX
========================================================= */

@media (max-width:1024px) {
    h1 { font-size: 34px; }
    h2 { font-size: 28px; }
    h3 { font-size: 22px; }

    .site-name img { width: 100px !important; }

    .subcategories.with-image {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr);
        justify-items: center;
        gap: 30px;
    }

    .subcategories.with-image li {
        width: 100% !important;
        float: none !important;
    }

    .subcategories.with-image li a .image img {
        max-height: 180px !important;
    }
}

/* =========================================================
   RESPONSIVE: DO 768 PX
========================================================= */

@media (max-width:768px) {
    .product .p-tools {
        position: relative;
        opacity: 1;
        margin-top: 12px;
        pointer-events: auto;
    }
}

/* =========================================================
   RESPONSIVE: DO 600 PX
========================================================= */

@media (max-width:600px) {
    .subcategories.with-image {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
        width: 100%;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .subcategories.with-image li {
        width: auto !important;
        float: none !important;
        padding: 0 !important;
        margin: 0 !important;
        box-sizing: border-box;
    }

    .subcategories.with-image li a .image img {
        max-height: 85px !important;
        width: auto !important;
    }

    .subcategories.with-image li a .text {
        font-size: 12px !important;
        line-height: 1.1;
    }
}

/* =========================================================
   RESPONSIVE: DALŠÍ STYLY DO 768 PX
========================================================= */

@media (max-width:768px) {
    .content-wrapper.container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    nav a,
    .navigation a,
    .menu a {
        font-family: Inter, system-ui, sans-serif;
    }

    .benefit-banners-full-width .benefitBanner {
        flex-direction: column;
        gap: 28px;
    }

    .benefit-banners-full-width .benefitBanner__img {
        width: 52px;
    }

    .benefit-banners-full-width .benefitBanner__title {
        font-size: 22px;
    }

    .benefit-banners-full-width .benefitBanner__data {
        font-size: 12px;
    }
}

/* =========================================================
   RESPONSIVE: OD 768 PX
========================================================= */

@media (min-width:768px) {
    .welcome-wrapper,
    .one-column-body .welcome-wrapper .welcome {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .welcome-wrapper {
        font-size: 16px;
        padding: 0;
    }
}

/* =========================================================
   HEADER
========================================================= */

header#header {
    padding-bottom: 10px;
}

/* =========================================================
   DROPDOWN – KOMPAKTNÍ (desktop + tablet) – STEJNÝ STYL + GAP
========================================================= */

@media (min-width:768px){

.navigation-in .menu-level-1 > li{
    position: relative;
}

/* vypnout hover */
.navigation-in .menu-level-1 > li:hover > .menu-level-2{
    display: none !important;
}

/* dropdown box */
.navigation-in .menu-level-1 > li > .menu-level-2{
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;

    display: flex;
    flex-direction: column !important;

    width: 260px !important;
    padding: 8px 0 !important;

    background: #fff !important;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);

    gap: 5px; /* 🔥 mezera mezi položkama */
}

/* layout */
.navigation-in .menu-level-2{
    flex-direction: column !important;
}

/* kill spacing */
.navigation-in .menu-level-2 li,
.navigation-in .menu-level-2 li > div{
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* položky */
.navigation-in .menu-level-2 li{
    display: block !important;
    width: 100% !important;
}

/* obrázky pryč */
.navigation-in .menu-level-2 .menu-image,
.navigation-in .menu-level-2 img{
    display: none !important;
}

/* 🔥 HLAVNÍ STYL – STEJNÝ JAK MENU */
.navigation-in .menu-level-2 li a{
    display: block !important;
    width: 100% !important;

    padding: 10px 16px !important;
    text-align: left !important;
    margin-left: 10px !important;

    font-family: Inter, system-ui, sans-serif !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;

    font-size: 14px !important;
    line-height: 1.2 !important;

    white-space: nowrap !important;
}

/* zabít wrapper omezení */
.navigation-in .menu-level-2 li a *{
    margin: 0 !important;
    padding: 0 !important;
    white-space: nowrap !important;
}

.navigation-in .menu-level-2 .text{
    margin: 0 !important;
    padding: 0 !important;
    white-space: nowrap !important;
}

/* hover */
.navigation-in .menu-level-2 li a:hover{
    background:#f5f5f5;
}

}


/* =========================================================
   MOBILE FIX – submenu pod sebe
========================================================= */

@media (max-width:768px){

.navigation-in .menu-level-2{
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
}

.navigation-in .menu-level-2 li{
    width: 100% !important;
}

.navigation-in .menu-level-2 li a{
    display: block !important;
    width: 100% !important;
    padding: 12px 16px !important;
    text-align: left !important;
    border-bottom: 1px solid #eee;

    font-family: Inter, system-ui, sans-serif !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
}

/* obrázky pryč */
.navigation-in .menu-level-2 img,
.navigation-in .menu-level-2 .menu-image{
    display: none !important;
}

}
/* =========================================================
   KONKRÉTNÍ MENU ITEM
========================================================= */

li.menu-item-673.ext.exp {
    background: none;
}

/* =================================
   REMOVE HEADING PADDING ON PRODUCT PAGE
================================= */

.type-detail h1,
.type-detail h2,
.type-detail h3,
.type-detail h4,
.type-detail h5,
.type-detail h6 {
    padding-left: 0 !important;
}

/* =========================================================
   DETAIL PRODUKTU – TLAČÍTKA, KOŠÍK, ODSAZENÍ
========================================================= */

button.btn.btn-conversion.add-to-cart-button {
    border-radius: 2px;
    max-width: 350px;
    min-height: 65px;
}

span.quantity {
    display: none;
}

.p-detail-inner .p-to-cart-block .add-to-cart {
    justify-content: left;
}

.p-data-wrapper {
    margin-top: 30px;
}

.buttons-wrapper.social-buttons-wrapper {
    display: none;
}

.stars-wrapper {
    margin-bottom: 20px !important;
}

.p-detail-inner .buttons-wrapper,
.p-detail-inner .detail-parameters,
.p-detail-inner .p-detail-inner-header,
.p-detail-inner .p-price-wrapper,
.p-detail-inner .p-short-description,
.p-detail-inner .p-to-cart-block,
.p-detail-inner .size-id-wrapper,
.p-detail-inner .surcharge-list {
    margin-bottom: 15px;
}


.description-inner .basic-description > h4:first-child {
    display: none;
}

.p-detail-inner {
    padding: 0 10px;
}



/* =========================================================
   SKRYTÍ VYBRANÝCH PRVKŮ
========================================================= */
.full-width.homepage-latest-contribution-full-width {
    display: none;
}

h1.category-title {
    display: none;
}

div#category-header {
    display: none;
}

.subcategories li a:before {
    display: none;
}

/* =========================================================
   CUSTOM ANNOUNCEMENT BAR
========================================================= */

.custom-announcement-bar {
    background: #00C6FF;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.1px !important;
    position: relative;
}

@media (max-width:700px) {
    .custom-announcement-bar {
        display: none !important;
    }
}



/* =========================================================
   SOCIAL ICONS
========================================================= */

.bar-social {
    position: absolute;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.bar-social svg {
    width: 24px;
    height: 24px;
    fill: white;
    opacity: 0.95;
    transition: opacity .2s ease;
}

.bar-social a:hover svg {
    opacity: 0.7;
}

/* =========================================================
   SLIDER
========================================================= */

.bar-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 700px;
    max-width: 90%;
    gap: 18px;
}

.bar-message-wrapper {
    overflow: hidden;
    width: 600px;
}

.bar-message {
    text-align: center;
    white-space: nowrap;
    letter-spacing: 0px;
    text-transform: uppercase;
}

/* =========================================================
   ARROWS
========================================================= */

.bar-arrow {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bar-arrow svg {
    width: 18px;
    height: 18px;
    stroke: white;
    stroke-width: 2;
    fill: none;
    opacity: 0.9;
    transition: opacity .2s ease;
}

.bar-arrow:hover svg {
    opacity: 0.6;
}

/* =========================================================
   ANIMACE
========================================================= */

.slide-left {
    animation: slideLeft .35s ease;
}

.slide-right {
    animation: slideRight .35s ease;
}

@keyframes slideLeft {
    0% {
        transform: translateX(60px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideRight {
    0% {
        transform: translateX(-60px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width:768px) {
    .bar-social {
        display: none;
    }

    .bar-slider {
        width: 100%;
        max-width: 360px;
        gap: 10px;
    }

    .bar-message-wrapper {
        width: 260px;
    }

    .bar-message {
        font-size: 13px;
    }
}




/* =========================================================
   MOBILE MENU – SKRÝT AUTOMATICKY PŘIDANÉ KATEGORIE
========================================================= */

@media (max-width: 768px) {

    .navigation-in .menu-level-1 > li.appended-category {
        display: none !important;
    }

}


/* =========================================================
   HODNOCENÍ / HVĚZDIČKY
========================================================= */

.stars .star,
.stars .star:hover {
    color: #00C6FF;
}

/* Force filled stars after voting */

.star-list .star.star-on::before {
    color: #00C6FF !important;
    opacity: 1 !important;
}

.star-list .star.star-on {
    color: #00C6FF !important;
}



/* =========================================
   PRODUCT GRID – GAP + CARD LOOK (FINAL FIX)
========================================= */


/* karta */
.product {
    background: #fff;
    border: 1px solid #eaeaea;
    padding: 12px;
    transition: all .25s ease;
    box-sizing: border-box;

}

/* hover */
.product:hover {
    border-color: #ddd;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}


/* =========================================================
   MOBILE FIX – KOŠÍK TLAČÍTKO (POSLEDNÍ PŘEPIS)
========================================================= */

@media (max-width:768px) {

    .product {
        overflow: hidden;
    }

    .product .p-tools {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;

        opacity: 1 !important;
        pointer-events: auto !important;

        margin: 10px auto 0 auto; /* 🔥 CENTROVÁNÍ */
        width: 80%;
        padding: 0 10px;
        box-sizing: border-box;

        display: flex;
        justify-content: center; /* 🔥 jistota na střed */
    }

    .product .btn-cart {
        width: 100% !important;
        padding: 12px 0;
        font-size: 13px;
        border-radius: 6px;
    }
    .products-block>div .p .p-in {
    order: 3;
    padding-top: 0px !important;
}

}





/* =========================================================
   DETAIL TLAČÍTKO — STEJNÝ STYL JAKO KOŠÍK
========================================================= */

.product .p-tools .btn.btn-primary {
    width: 80%;
    background: #000 !important;
    color: #fff !important;
    border-radius: 6px;
    padding: 15px 0;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none !important;
    text-decoration: none;
}

.product .p-tools .btn.btn-primary:hover {
    background: #222 !important;
}

.product .p-tools .btn.btn-primary i {
    font-size: 14px;
}

@media (max-width:768px) {
    .product .p-tools .btn.btn-primary {
        width: 100% !important;
        padding: 12px 0;
        font-size: 13px;
        border-radius: 6px;
    }
}

.cart-content.checkout-box-wrapper {
    display: none;
}


.products-related-wrapper.products-wrapper.product-slider-holder.has-navigation {
    display: none;
}

h2.products-related-header.products-header {
    display: none;
}

time {
    display: none !important;
}

