/* === DROPDOWN MENU === */
.cb-dropdown {
  position: relative;
}
.cb-dropdown-content {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 220px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border-radius: 12px;
  padding: 12px 0;
  z-index: 1000;
  animation: cbFadeIn .18s cubic-bezier(.4,0,.2,1);
}
.cb-dropdown:hover .cb-dropdown-content,
.cb-dropdown:focus-within .cb-dropdown-content {
  display: block;
}
.cb-dropdown-link {
  display: flex;
  align-items: center;
  padding: 10px 24px;
  color: var(--cb-text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.13s;
  border: none;
  background: none;
}
.cb-dropdown-link:hover {
  background: var(--cb-soft);
  color: #14b8a6;
}
@keyframes cbFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === MEGA DROPDOWN MENU (Psi / Kočky) === */
.cb-mega-dropdown {
  position: relative;
  cursor: pointer;
}
.cb-mega-dropdown-content {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  min-width: 650px; /* Increased to accommodate content comfortably */
  background: #fff;
  box-shadow: 0 12px 48px rgba(0,0,0,0.18);
  border-radius: 16px;
  /* Add padding around the whole content so image isn't flush */
  padding: 12px; 
  z-index: 9999;
  transition: opacity 0.2s ease, visibility 0.2s ease 0.2s, transform 0.2s ease;
  transform: translateY(10px);
  /* Flex layout for grid + image */
  display: flex;
  justify-content: space-between;
}
/* New Image Column */
.cb-mega-img-container {
    width: 200px; /* Keep it substantial but not overwhelming */
    background-color: #f9f9f9;
    position: relative;
    flex-shrink: 0;
    border-radius: 12px; /* Soften edges */
    overflow: hidden; /* For border radius */
    margin-left: 20px; /* Space between links and image */
}
.cb-mega-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* Wrapper for the existing grid */
.cb-mega-links-container {
    flex: 1;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.cb-mega-title {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin: 0 0 4px 0; /* Reduced bottom margin */
    line-height: 1.2;
}
.cb-mega-view-all-bottom {
    display: inline-block;
    margin-top: 32px; /* Space from the grid */
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
    color: var(--cb-text);
    align-self: center; /* Center horizontally in flex column */
}
.cb-mega-view-all-bottom:hover {
    color: #14b8a6;
}
.cb-mega-links-container .cb-mega-grid {
    width: 100%;
}
.cb-mega-dropdown:hover .cb-mega-dropdown-content,
.cb-mega-dropdown:focus-within .cb-mega-dropdown-content {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}
/* Neviditelný most pro překlenutí mezery mezi menu a dropdownem */
.cb-mega-dropdown-content::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
}
.cb-mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 20px;
}
.cb-mega-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--cb-text);
  font-size: 15px;
  font-weight: 600;
  background: none;
  text-align: center;
  transition: background 0.14s, color 0.14s;
}
.cb-mega-link:hover {
  background: transparent;
  color: #14b8a6;
  transform: none;
}
.cb-mega-link img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}
.cb-menu-icon {
  margin-right: 4px;
  vertical-align: middle;
  color: #14b8a6;
  flex-shrink: 0;
}
.cb-framerhdr__itemContent {
  display: flex;
  align-items: center;
  gap: 4px;
}
:root{
    --cb-max: 1180px;
    --cb-bg: #fff;
    --cb-text: #0b0b0d;
    --cb-muted: rgba(11,11,13,.72);
    --cb-border: rgba(0,0,0,.10);
    --cb-soft: rgba(0,0,0,.04);
    --cb-pill: 24px;
    --cb-accent: rgb(20, 184, 166);
    --cb-shadow: 0 10px 30px rgba(0,0,0,.08);
    --cb-space: 92px;
  }



body{
font-family: 'Gabarito', sans-serif !important;

}


.sign .content-inner{
    max-width: 700px;
    padding: 40px;
}
.id--4.sign .content form{
  padding: 0px !important;
}
.form-group{
      margin-bottom: 36px !important;
}

.top-navigation-bar{
    display: none;
}

.btn:not(.cart-count){
      transition: all .15s linear;
}


.type-index .products .product{
    border: none !important;
}
.type-index .products > div{
    border: none !important;
}
.btn.btn-primary, a.btn.btn-primary{
    background: #14b8a6 !important;
        border-radius: 8px;
        border: none !important;
        transition: all 0.2s cubic-bezier(0.2, 0.9, 0.2, 1);
}


.btn.btn-primary, a.btn.btn-primary:hover{
    background: #0d9488 !important;

}

.type-index .products .product:hover{
    box-shadow: none !important;
}
.slick-slider .slick-track, .slick-slider .slick-list{
        opacity: 1 !important;
    width: 100% !important;
    transform: translate3d(0px, 0px, 0px) !important;
    margin: 0px !important;
    justify-content: center !important;
    gap: 40px !important;
}
.type-index .content .products-block:not(.klasik-produkts).products-visible.slick-slider .product, .type-product .content .products-additional.products-visible.slick-slider .product{
        width: max-content !important;
}

.products-block.products .p .name{
    font-size: 18px !important;
}
.products-block .p-code{
    display:none !important;
}

.sign .content form{
border: none;
}

.form-control:focus{
    border-color: #14b8a6 !important;
}

.form-control, select{
border-radius: 12px;
}
.btn.btn-secondary, a.btn.btn-secondary{
border-radius: 12px;
}
.sign .validator-msg.msg-error, .sign .validator-msg.msg-warning, .sign .js-validator-msg.msg-error, .sign .validator-msg.msg-info{
    background: none;
    border: none;
}
.content-wrapper #content a:not(.btn):not(.cart-count):not(.pagination-link){
    text-decoration: none !important;
}

.cb-framerhdr__label{
  color: var(--cb-text);
  text-decoration: none !important;
    font-family: "Inter","Inter Placeholder",sans-serif;
    font-size: 16px;
    font-weight: 500;
   text-decoration: none !important;
   transition: all .1s linear;
}
 .cb-framerhdr__item:hover{
    color: #14b8a6;
  }
  .container{
        margin: 0px !important;  
        width: 100% !important;
  }
  .content-wrapper-in {
  width: 100%;
  }
  .overall-wrapper{
    overflow: hidden;
  }
@media only screen and (min-width: 1100px) {  
h4.homepage-group-title, .h4.homepage-group-title {
    text-align: center !important;
        font-size: 52px;
}}

.slick-list{
    max-width: 1200px !important;
}

.homepage-products-1{
  justify-content: center;
    display: flex;
}



.social-buttons-wrapper{
  display: none !important
}


.homepage-box.before-carousel{
  padding-top: 0px !important;
}

.responsive-nav .shp-tabs-holder{
  display: none !important;
}







  /* aktivuje se až po vložení headeru */
  body.cb-framerhdr-on { padding-top: var(--cb-space); }

  /* původní Shoptet header schováme "bezpečně" až když je custom header vložený */
  body.cb-framerhdr-on #header,
  body.cb-framerhdr-on .site-header,
  body.cb-framerhdr-on .shp-header,
  body.cb-framerhdr-on header,
  body.cb-framerhdr-on .navbar,
  body.cb-framerhdr-on .top-bar,
  body.cb-framerhdr-on [data-section="header"],
  body.cb-framerhdr-on .shoptet-header,
  body.cb-framerhdr-on .shoptet-nav{
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    display: none !important;
  }

  /* ====== HEADER WRAP ====== */
  .cb-framerhdr{
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 99999;
    pointer-events: none;
  }

  .cb-framerhdr__nav{
    width: 100%;
    background: var(--cb-bg);
    pointer-events: auto;
  }

  .cb-framerhdr__content{
    max-width: var(--cb-max);
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

  /* Logo */
  .cb-framerhdr__logoStack{
    display:flex;
    align-items:center;
    gap: 12px;
    min-width: 210px;
  }
  .cb-framerhdr__logoLink{
    display:inline-block;
    width: 194px;   /* jako ve snippetu sizes=194px */
    max-width: 44vw;
    text-decoration:none;
  }


  .cb-framerhdr__logoLink img{
    display:block;
    width:100%;
    height:auto;
    object-fit: contain;
    transition: opacity .2s ease;
  }

  .cb-framerhdr__logoLink img:hover{
    opacity: 0.8;
}

  /* ====== MENU PILL ====== */
  .cb-framerhdr__menu{
    display:flex;
    align-items:center;
    justify-content:center;
    flex: 1 1 auto;
  }

  .cb-framerhdr__menuRow{
    display:flex;
    align-items:center;
    gap: 10px;
  }

  .cb-framerhdr__item{
    position: relative;
    height: 44px;
    border-radius: var(--cb-pill);
    background: transparent;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding: 0; /* obsah uvnitř */
    outline: none;
  }

  /* “bullets” (3 tečky) */
  .cb-framerhdr__bullet{
  position: absolute;

  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--cb-accent);
  pointer-events: none;

  /* start state */
  opacity: 0;
  transform: translate(-50%, -50%) scale(.55);
  will-change: transform, opacity;
  transition: all .2s cubic-bezier(.15,1.13,.79,.72);
}

 .cb-framerhdr__bullet.b1{ left: 50%; transition-delay: 0ms; }
.cb-framerhdr__bullet.b2{ left: 50%;  transition-delay: 45ms; }
.cb-framerhdr__bullet.b3{ left: 50%;  transition-delay: 90ms; }


.cb-framerhdr__item:hover .cb-framerhdr__bullet.b1{ transition-delay: 45ms; transform: translate(-45px, 10px) !important }
.cb-framerhdr__item:hover .cb-framerhdr__bullet.b2{ transition-delay: 45ms; transform: translate(30px, 15px) scale(.75) !important;}
.cb-framerhdr__item:hover .cb-framerhdr__bullet.b3{ transition-delay: 90ms; transform: translate(-5px, -20px) scale(.65) !important; }



.listingControls .loadMore .btn{
  
}


  .cb-framerhdr__itemContent{
    height: 44px;
    border-radius: var(--cb-pill);
    
    display:flex;
    align-items:center;
    padding: 0 16px;
    
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
  }

  .box.box-bg-variant{
    border: none !important;
    background: none !important;
  }
  

 .sidebar-inner>div:last-child {
    border: none !important;
    background: none !important;
}

  /* Hover/active efekt jako ve Frameru */
  .cb-framerhdr__item:hover .cb-framerhdr__bullet
{
  opacity: 1;

}

  .cb-framerhdr__item:hover .cb-framerhdr__itemContent{
      text-decoration: none !important;
    background: #fff;
   
  }

   .cb-framerhdr__item:hover .cb-framerhdr__label{
   color: #14B8A6;
  }



@media only screen and (max-width: 768px)
  { 
  .cb-login{
    display: none !important;

}
  }
  .cb-framerhdr__item[aria-current="page"] .cb-framerhdr__itemContent{
   
    background: #fff;
  }

  /* ====== RIGHT SIDE (language + buttons) ====== */
  .cb-framerhdr__right{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap: 12px;
    min-width: 260px;
  }

  .cb-lang{
    position: relative;
    display:flex;
    align-items:center;
    gap: 8px;
  }


.cart-content.checkout-box-wrapper, .cart-content.summary-wrapper, .checkout-box{
      border-radius: 24px;
}

  /* “fake” select jako ve snippetu (šedé pozadí, ikona, caret) */
  .cb-lang__btn{
    display:flex;
    align-items:center;
    gap: 8px;
    padding: 10px 10px;
    border-radius: 10px;
    border: none;
    background: #eee;
    color: #000;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    cursor: pointer;
    user-select: none;
  }
  .cb-lang__icon{
    width: 18px;
    height: 18px;
    display:block;
  }
  .cb-lang__caret{
    width: 12px;
    height: 12px;
    display:block;
    opacity: .7;
  }
  .cb-lang__select{
    position:absolute;
    inset: 0;
    opacity: 0;
    width:100%;
    height:100%;
    cursor:pointer;
  }

  .cb-login{
    display:inline-flex;
    align-items:center;
    gap: 10px;
    text-decoration:none;
    border-radius: 12px;
    padding: 10px 12px;
    background: transparent;
    color: var(--cb-text);
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: background .15s ease, transform .15s ease;
  }
  .cb-login:hover{ transform: scale(1.02); }

  .cb-login__img{
    width: 24px;
    height: 24px;
    display:block;
  }

  /* Košík – jednoduchý pill (můžeš smazat, pokud nechceš) */
  .cb-cart{
    position: relative;
    display:inline-flex;
    align-items:center;
    gap: 8px;
    text-decoration:none;
    border-radius: 12px;
    padding: 10px 12px;
    background: var(--cb-soft);
    color: var(--cb-text);
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(0,0,0,.08);
  }
  .cb-cart__badge{
    display:none; /* JS přepne na flex */
    position: absolute;
    top: 4px;
    right: 8px;
    min-width: 16px;
    height: 16px;
    padding: 0;
    border-radius: 999px;
    background: #e74c3c;
    color: #fff;
    border: 2px solid #fff;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
    animation: cbBadgePop 0.3s ease-out;
    justify-content: center;
    align-items: center;
  }

.quantity{
    border: none !important;
}
.radio-wrapper:last-child{  
      border-radius: 16px;
}
.radio-wrapper:last-child {
    overflow: hidden;
}
.box.box-bg-default {
    background-color: #f6f6f6;
    border: none !important;
    border-radius: 16px;
}

.co-box.co-billing-address {
    border: none;
}

.co-box.co-box-additional::before{
    display: none !important;
}

.box.box-bg-default {
    padding: 24px !important
}

.row .cart-row{
  padding-left: 20px;
  padding-right: 20px;
}
#checkoutSidebar .form-group.consents{
      border: none !important;
      margin-bottom: 0px !important;
      margin-left: -24px;
      margin-right: -24px;
}

.ordering-process .contact-box.no-image ul{
  background: none !important;
}

.btn.next-step-finish{
  border-radius: 16px !important;
}

@media screen and (max-width: 991px) {
    .order-summary-inner:not(.otevreno) .order-summary-item.price {
        margin-left: -24px;
        margin-right: -24px;
    }
}

@media screen and (max-width: 767px) {
    .order-summary-inner h4 {
        background: none !important;
        border-bottom: none !important;
    }
}

@media screen and (max-width: 767px) {
    .order-summary-item.price {
        margin-left: -24px !important;
        margin-right: -24px !important;
    }
}
select, select.form-control{
    border-radius: 16px;
}


.btn.next-step-forward, .btn.next-step-finish{
    border-radius: 16px !important;
}

.country-flags{
  border: none !important;
}

.co-box{
  border: none !important;
  padding: 0px !important;
}

.cart-content {
    padding: 20px !important;
}

#orderFormButton{
     border-radius: 16px !important;
}

#checkoutSidebar .order-summary-inner{
  border: none !important;
      padding: 0px !important;
}

#checkoutSidebar .next-step{
    border-color: white;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    margin-left: -24px;
    margin-right: -24px;
}


.order-summary-item.price{
  border: none !important;
}


    ol.cart-header::before {
    background-color: white;
    }

.order-summary-item.price {
    border-top-right-radius: 24px;
    border-top-left-radius: 24px;
}

ol.cart-header li a span::before, ol.cart-header li strong span::before{
    border-radius: 99px;
    background: #64cfc0 !important;
    color: white !important;
    border: none !important;
}
    
@media (max-width: 767px) {
    .ordering-process .content-wrapper.container {
        margin-top: 20px !important;
    }
    .cart-table tr {
    border: none !important;
    } 

}

@media (max-width: 468px) {
.p-detail-inner{
    max-width: 100% !important;
}
.cb-sticky-left{
  display: block !important;
}
.container.breadcrumbs-wrapper{
  margin-top: 10px !important;
}

}

.filtrovat{
  border: none !important;
  border-radius: 12px;
           background: none !important;
}
.category-header div{   
   border-radius: 12px;
          background: none !important;
}
.otevreno .filter-sections{
          background: none !important;
}

  @keyframes cbBadgePop {
    0% { transform: scale(0.5); opacity: 0; }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
  }

  /* Sticky/scroll micro */
  .cb-framerhdr.is-scrolled .cb-framerhdr__nav{
    
  }

  /* Mobil: menu schovej (uděláme burger až když budeš chtít) */
  @media (max-width: 980px){
    .cb-framerhdr__menu{ display:none; }
    .cb-framerhdr__burger{ display: flex; }
    .cb-framerhdr__logoStack{ min-width:auto; }
    .cb-framerhdr__right{ min-width:auto; }
    body.cb-framerhdr-on{ padding-top: 68px; }
  }

.cb-cart__icon{
  width: 24px;
  height: 24px;
  display: inline-block;
}

.cb-cart{
  background: transparent;         /* víc jako ve Frameru */
  border: none;
  padding: 10px 10px;
}
.cb-cart:hover{
  transform: scale(1.05); 
}

/* Hamburger button */
.cb-framerhdr__burger{
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin: 0;
}

.cb-framerhdr__burger span{
  width: 24px;
  height: 2px;
  background: var(--cb-text);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.cb-framerhdr__burger.is-open span:nth-child(1){
  transform: rotate(45deg) translate(10px, 10px);
}

.cb-framerhdr__burger.is-open span:nth-child(2){
  opacity: 0;
}

.cb-framerhdr__burger.is-open span:nth-child(3){
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile menu overlay */
.cb-framerhdr__menuOverlay{
  display: none;
  position: fixed;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--cb-border);
  flex-direction: column;
  padding: 20px;
  gap: 10px;
  box-shadow: var(--cb-shadow);
  animation: slideDown 0.3s ease-out;
  z-index: 99998;
}

.cb-framerhdr__menuOverlay.is-open{
  display: flex;
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cb-framerhdr__menuOverlay .cb-framerhdr__item{
  width: 100%;
  height: auto;
  padding: 12px 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cb-framerhdr__menuOverlay .cb-framerhdr__bullet{
  display: none;
}

.cb-framerhdr__menuOverlay .cb-framerhdr__label{
  font-size: 16px;
  font-weight: 500;
}


@media only screen and (max-width: 1100px) {
  .p-detail{
margin: 0px 40px !important;
  }
  }

  @media only screen and (max-width: 480px) {
  .p-detail{
margin: 0px 0px !important;
  }
  }



/* 1) Zruš underline všude v custom headeru */
.cb-framerhdr a,
.cb-framerhdr a:hover,
.cb-framerhdr a:focus,
.cb-framerhdr a:active{
  text-decoration: none !important;
}

/* 2) Zruš underline i u labelu (kdyby se dědil) */
.cb-framerhdr__label{
  color: var(--cb-text);
  text-decoration: none !important;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
   text-decoration: none !important;
   transition: all 0.45s cubic-bezier(0.22, 1.61, 0.36, 1);
   
}






/* 3) Pokud by Shoptet dělal underline pseudo-elementem */
.cb-framerhdr a::after,
.cb-framerhdr a::before{
  text-decoration: none !important;
  border-bottom: 0 !important;
}

body:not(.type-index) .products-block > div{
      border: none !important;
}
.product:hover{
  box-shadow: none !important;
}



.content-wrapper.container{
      display: flex;
    justify-content: center;
}

body:not(.type-index) .products-block{
  border: none !important
}
.breadcrumbs{
    max-width: 1200px;
}
.listSorting__controls{
  border: none !important;
}
.listSorting__controls li button{
  border: none !important;
}


.products-block.products .p .name{
      height: auto !important;
}


.empty-cart-boxes > div{
  display: none;
}
.cart-empty{
  padding-bottom: 0px !important;
}


#content .btn.unveil-button, #footer .btn.unveil-button{
  border-radius: 8px;
}

.pagination__link, .btn.pagination__link, .pagination__currentPage{
      border: none !important;
      background: none !important;
}

.btn.pagination__link:hover{
 color: rgb(99, 99, 99) !important;
}

.content-wrapper #content a:not(.btn):not(.cart-count):not(.pagination-link){
      box-shadow: none !important;
      border: none;
      transition: color .15s linear
}

.content-wrapper #content a:not(.btn):not(.cart-count):not(.pagination-link):hover{
    color: #015957;
}
.p-info-wrapper .btn.btn-conversion::before{
      font-size: 20px;
}

.subcategories::before{
      background: none !important;
}
.subcategories::after{
     background: none !important;
}

.products-block .p-bottom>div{
    align-items: start !important;
    flex-direction: column !important;
    gap: 24px;
}

.products-block .p-bottom .p-tools{
      width: 100% !important;
}

.btn.btn-primary, a.btn.btn-primary {
    max-height: 40px;
    align-items: center !important;
    display: flex;
    justify-content: center !important;
    text-transform: capitalize;
}


.cart-content.checkout-box-wrapper, .cart-content.summary-wrapper, .checkout-box{
  border: none !important;
}

.empty-cart-boxes{
  border-top: none !important;
}
