.navigation-buttons>a[data-target=cart] i {
    background-color: #FD9D18;
}
/* Flex řádek pro zarovnání loga, menu a košíku */
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

/* Vycentrování navigace */
#navigation {
  flex: 1 1 auto;
  display: flex !important;
  justify-content: center;
  max-width: 100%;
  padding: 0;
}

/* Přizpůsobení jednotlivých bloků */
.site-name-wrapper,
.navigation-buttons {
  flex-shrink: 0;
}

/* Skrytí původního vyhledávání (pro jistotu i přes CSS) */
.search {
  display: none !important;
}
@media (min-width: 768px) {
    .header-top>div {
        align-self: center;
        flex: 0 1 20%;
    }
}


#header {
    background-color: #5CAA1F;
    border: 0;
}
@media (min-width: 768px) {
    .navigation-in {
        background-color: #fff;
        border-radius: 50px;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
justify-content: center;
        align-items: center;
        width: 100%;
        
    }
    
}

@media (min-width: 768px) {
    #navigation {
        height: 56px;
    }
}
.navigation-in.menu {
    height: 100%;
}
@media (min-width: 768px) {
    #header .cart-count {
        color: #fff;
    }
}
@media (min-width: 768px) {
    .navigation-in>ul>li {
        border: none !important;
    }
}
@media (min-width: 768px) {
    .navigation-in>ul>li>a {
        color: #000;
    }
}

/* Zabrání horizontálnímu scrollu */
html, body {
  overflow-x: hidden;
}

body.type-index .row.banners-row {
  position: relative;
  z-index: 1;
}



.hero {
  color: white;
}

.hero-inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1 1 500px;
}

.hero-content h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 600px;
}

.hero-content a {
  color: #fff !important;
  text-decoration: underline;
}

.hero-button {
  display: inline-block;
  background-color: #5CAA1F;
  color: white;
  font-weight: bold;
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.hero-button:hover {
  background-color: #4a9519;
}

.hero-icons {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  gap: 20px;
}

.hero-icon {
  flex: 1 1 250px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.hero-icon img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-top: 4px;
}

.hero-icon p {
  font-size: 14px;
  line-height: 1.4;
}

.hero-image {
  flex: 1 1 400px;
  text-align: right;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

.categories {
  padding: 10px;
  color: white;
  text-align: center;
}

.categories-inner {
  margin: 0 auto;
}

.categories h2 {
  font-size: 22px;
  margin-bottom: 30px;
  color: #fff;
  font-weight: 400;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.category-card {
  background: #E9F4F2;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  text-decoration: none;
  color: #222;
}

.category-card:hover {
  transform: translateY(-10px);
 background: #E9F4F2 !important;
}

.category-card img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px;
}

.category-card h3 {
  font-size: 18px;
  font-weight: 400;

}





.trust-banner {
  background-color: #5CAA1F;
  margin: 0 10px;
  border-radius: 10px;
  overflow: hidden;
}

.trust-banner-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  margin: 0 auto;
  min-height: 500px; /* výška celého banneru */
}

.trust-banner-image {
  flex: 1 1 50%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.trust-banner-image img {
  width: 80%;
  height: auto;
  display: block;
  margin: 0;
  margin-top: 30px;
}

.trust-banner-content {
  flex: 1 1 50%;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trust-banner-content h2 {
  font-size: 40px;
  line-height: 1.4;
  margin-bottom: 20px;
  font-weight: 400;
  color: white;
}

.trust-banner-content p {
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: 300;
  color: white;
}

.trust-banner-btn {
  display: inline-block;
  padding: 16px 32px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 14px;
  border-radius: 999px;
  background-color: transparent;
  color: white !important;
  text-decoration: none;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
  width: fit-content;
}

.trust-banner-btn:hover {
  background-color: white;
  color: #5CAA1F !important;
}

@media (max-width: 768px) {
  .trust-banner-inner {
    flex-direction: column;
    min-height: auto;
  }

  .trust-banner-content {
    order: 2;
    padding: 40px 20px;
    text-align: center;
    align-items: center;
  }

  .trust-banner-image {
    order: 1;
    justify-content: center;
    align-items: flex-end;
  }

  .trust-banner-content h2 {
    font-size: 24px;
  }

  .trust-banner-content p {
    font-size: 15px;
  }

  .trust-banner-btn {
    margin-top: 20px;
  }
}

.section-benefits .trust-banner-btn {
  border: 1px solid rgba(92, 170, 31, 0.4); /* 40 % zelený border */
  background-color: transparent;
  color: #5CAA1F !important;
  font-weight: 400;
  padding: 16px 32px;
  font-size: 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
  display: inline-block;
}

.section-benefits .trust-banner-btn:hover {
  background-color: #5CAA1F;
  color: white !important;
}

 .section-benefits {
  padding: 60px 20px;
  background-color: #ffffff;
}

.section-benefits-inner {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.section-benefits-left {
  flex: 1 1 45%;
}

.section-benefits-left h2 {
  font-size: 40px;
  line-height: 1.4;
  color: #2E5C00;
  margin-bottom: 30px;
  font-weight: 400;
}

.section-benefits-left strong {
  font-weight: 600;
  color: #2E5C00;
}

.section-benefits-image {
  flex: 1 1 50%;
  text-align: center;
}

.section-benefits-image img {
  max-width: 100%;
  height: auto;
  display: block;
}



.baby-section {
    position: relative;
    padding: 20px;
    z-index: 1;
  }
  
  .baby-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-color: #DFF7FC;
    z-index: -1;
  }
  
  .baby-section-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    justify-content: center;
  }
  
  .baby-benefits {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  
  .baby-benefits-left {
    text-align: left;
    align-items: flex-start;
  }
  
  .baby-benefits-right {
    text-align: right;
    align-items: flex-end;
  }
  
  .baby-benefits-left .baby-benefit {
    flex-direction: row;
    justify-content: flex-start;
  }
  
  .baby-benefits-right .baby-benefit {
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
  
  .baby-benefit {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  
  .baby-benefit img {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
  }
  
  .baby-benefit h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #2E5C00;
  }
  
  .baby-benefit p {
    margin: 4px 0 0;
    font-size: 14px;
    font-weight: 400;
    color: #2E5C00;
  }
  
  .baby-image {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .baby-image img {
    width: 80%;
    max-width: 100%;
    height: auto;
  }
  
  /* ✅ Responzivita */
  @media (max-width: 992px) {
    .baby-section-inner {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 40px;
    }
  
    .baby-image {
      order: -1;
      width: 100%;
      justify-content: center;
    }
  
    .baby-benefits-left,
    .baby-benefits-right {
      align-items: flex-start;
      text-align: left;
    }
  
    .baby-benefits-right .baby-benefit {
      flex-direction: row;
      justify-content: flex-start;
      text-align: left;
    }
  
    .baby-benefit img {
      width: 46px;
      height: 46px;
    }
  }
  
  .footer-contact-photo {
    width: 60px;
}
.footer-contact-inner {
    display: flex
;
    gap: 15px;
}
  .blog-wrapper .h4 {
    margin: 0;
}
  .news-item .text .title {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 5px;
    color: #306201;
}
.blog-wrapper .news-item .description {
    display: none;
}

@media (min-width: 1200px) {
  .homepage-blog-wrapper.row.blog-wrapper:after {
    display: none;
}
  .homepage-blog-wrapper.row.blog-wrapper:before {
    display: none;
}
    .blog-wrapper .news-item {
        flex-basis: calc(33.33% - 20px);
        width: calc(33.33% - 20px);
        background-color: #fff;
        border-radius: 10px;
    }
        .blog-wrapper {
        padding: 40px 0px 80px 0px;
    }
}

.news-item .image img {
    height: 250px;
    object-fit: cover;
}

.homepage-blog-wrapper.row.blog-wrapper {
    gap: 20px;
    justify-content: space-between !important;
}


  .footer-column {
    flex: 1 1 48%;
    min-width: 280px;
}
.footer-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}
  .custom-footer {
    border-top-width: 0;
    background-color: #EFF6E9;
    padding-left: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}


#footer>.container {
  background-color: #EFF6E9;
}
  .certifications-section {
position: relative;
padding: 80px 20px;
z-index: 1;
}

.certifications-section::before {
content: "";
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
width: 100vw;
height: 100%;
background-color: #E9F9FC;
z-index: -1;
}

.certifications-inner {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
text-align: center;
max-width: 1200px;
margin: 0 auto;
}

.certification-item img {
width: 80px;
height: 80px;
margin-bottom: 20px;
}

.certification-item p {
font-size: 15px;
color: #333;
line-height: 1.6;
}

.certification-item strong {
font-weight: 600;
}

  .row.banners-content.body-banners {
  display: flex;
  flex-direction: column;
}

.body-banners .col-sm-4,
.body-banners .col-sm-8 {
width: 100%;
}

button.btn.btn-cart.add-to-cart-button {
  border-radius: 50px;
  padding: 10px 20px;
}

button.btn.btn-cart.add-to-cart-button:before {
  display: none;
}
.products-block .p-bottom>div {
  align-items: center;
}


  .footer-transport-payment-banner {
    border-top: 1px solid rgba(92, 170, 31, 0.1);
    padding: 30px 0;
}
  .footer-transport-payment {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}
#footer .site-name {
        display: none;
        text-align: left;
    }


.custom-footer > div[class*="custom-footer__banner"] {
  flex: 1 1 calc(25% - 20px); /* 6 sloupců s mezerou */
}

.custom-footer > div.full-width,
.custom-footer > div[class*="custom-footer__banner"].full-width {
  flex: 1 1 100%;
}

/* Oprava defaultní mezery Shoptetu */
.custom-footer .banner {
  margin: 0 !important;
}

/* ======================
   Typografie & odkazy
   ====================== */

.footer-contact-box h3 {
  font-size: 22px;
  margin: 0 0 10px 0;
  color: rgba(0, 0, 0, 0.8);
}

.footer-links {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links li a {
  font-size: 15px;
  color: #FF5123;
  font-weight: 400;
  text-decoration: underline;
  transition: color 0.2s ease-in-out;
}

.footer-links li a:hover {
  color: #e64714;
}

/* ======================
   Responzivita
   ====================== */

@media (max-width: 1024px) {
  .custom-footer > div[class*="custom-footer__banner"] {
    flex: 1 1 calc(50% - 20px); /* 2 bannery na řádek */
  }
}

@media (max-width: 600px) {
  .custom-footer {
    flex-direction: column;
  }
  .custom-footer > div[class*="custom-footer__banner"] {
    flex: 1 1 100%;
  }
}

.custom-footer__banner1 {
    width: 100% !important;
}





.content-wrapper.homepage-box.middle-banners-wrapper {
    border: 0;
    margin: 0;
    padding: 0;
}

.product-of-the-month {
  background-color: #EEEBFF;
  border-radius: 20px;
  padding: 60px 40px;
  margin: 40px 0;
  overflow: hidden;
}

.product-month-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.product-month-content {
  flex: 1 1 550px;
  color: #6C4CD4;
}

.product-month-label {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
  color: #6C4CD4;
}

.product-month-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: #6C4CD4;
}

.product-month-description {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.product-month-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  font-size: 15px;
  line-height: 1.6;
}

.product-month-benefits li {
  margin-bottom: 8px;
}

.product-month-btn {
  display: inline-block;
  background-color: #6C4CD4;
  color: white !important;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.product-month-btn:hover {
  background-color: #543bb2;
}

.product-month-image {
  flex: 1 1 300px;
  text-align: center;
}

.product-month-image img {
  max-width: 100%;
  height: auto;
}

/* ✅ Responzivita */
@media (max-width: 768px) {
  .product-month-inner {
    flex-direction: column;
    text-align: center;
  }

  .product-month-content {
    flex: 1 1 100%;
  }

  .product-month-image {
    flex: 1 1 100%;
  }

  .product-month-content h2 {
    font-size: 24px;
  }

  .product-month-description {
    font-size: 15px;
  }

  .product-month-benefits {
    font-size: 14px;
  }

  .product-month-btn {
    margin-top: 20px;
  }
}


.homepage-box.welcome-wrapper {
    border: 0;
}
  .type-category .content-wrapper-in {
    background-color: #fff;
}
  /*@media (min-width: 768px) {
    body.ordering-process {
        background-color: #E9F9FC;
    }
}*/
  .section-benefits {
    background-color: transparent;
}
  .responsive-nav {
    margin-bottom: 0px;
}
  .shp-tabs-holder {
    background-color: transparent;
}
  div#tab-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 0px 10px 10px 10px;
}
    .container.breadcrumbs-wrapper {
    display: none;
}
  @media (max-width: 768px) {
.p-detail-inner {
    margin: 0px -10px !important;
    padding: 20px !important;
    border-radius: 0px;
}
  }
.p-detail-inner {
    background-color: #fff;
    margin: 30px -20px;
    padding: 30px;
    border-radius: 10px;
}
    .columns-4 .products-block>div {
        flex: 0 0 auto;
        width: 25%;
        background-color: #fff;
        border-radius: 10px;
        padding: 30px;
            border: 0;
    width: calc((100% - 60px) / 4);
    }

    .products-block {
    gap: 20px;
}

footer#footer {
  background-color: #EFF6E9;
}

.content-wrapper-in {
  background-color: #fff;
}
  @media (min-width: 768px) {
            #header .site-name a img {
    max-height: 100px;
    }
    .header-top {
        height: unset;
    }
    .navigation-in.menu {
    background-color: transparent;
}
    #navigation {
        height: 60px;
    }
   /*.container.navigation-wrapper {
    width: 1458px;
}*/
}
  @media (min-width: 768px) {
ul.menu-level-1 {
    background-color: #fff;
    padding: 30px;
    border-radius: 50px;
    height: 60px;
    display: flex;
    align-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}
}
.hero-content p {
    font-weight: 300;
    letter-spacing: 0.1px;
}
  .hero-content h1 {
    font-size: 50px;
    max-width: 80%;
}
a.hero-button {
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    background-color: #fff;
    color: #000;
    padding: 20px 35px;
}

a.hero-button:hover {
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    background-color: #E9F9FC;
    color: #3B8B82;
    padding: 20px 35px;
}

body.type-index .row.banners-row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, #5CAA1F 0%, #3B8B82 40%);
  z-index: -1;
  pointer-events: none;
}


  .category-card img {
    margin: 0px;
}

   .category-grid a {
        max-width: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
        padding: 30px;
        gap: 0px;
        flex-wrap: nowrap;
        overflow: hidden;
    }
    .category-card h3 {
    margin: 0;
}

.benefitBanner.position--benefitHomepage {
    display: none;
}
body.type-index .row.banners-row::before {
  height: 50%;
}
  