@charset "UTF-8";
/* barvy */
/* rozměry */
/* velikosti */
/* fonty */
/* HEADER */
.header-infoline {
  background: #F38422;
  color: white;
  text-align: center;
  padding: 7px;
  position: relative;
}

.header-layout {
  display: grid;
  grid-template-columns: 2fr 3fr 2fr;
  grid-column-gap: 40px;
  width: 1400px;
  margin: 0 auto;
  height: 100px;
  align-items: center;
}
@media (min-width: 1100px) and (max-width: 1439px) {
  .header-layout {
    width: 90%;
    grid-template-columns: 15vw 1fr 13vw;
    grid-column-gap: 10px;
  }
}
@media (min-width: 900px) and (max-width: 1099px) {
  .header-layout {
    width: 94%;
    grid-template-columns: 1fr auto 80px;
    height: 80px;
  }
}
@media (max-width: 899px) {
  .header-layout {
    width: 94%;
    grid-template-columns: 1fr auto 80px;
    height: 80px;
    gap: 20px;
  }
}

.header-menu__layout {
  width: 1400px;
  margin: 0 auto;
  height: 50px;
  border-top: 0px solid silver;
}
@media (min-width: 1100px) and (max-width: 1439px) {
  .header-menu__layout {
    width: 90%;
  }
}
@media (max-width: 899px) {
  .header-menu__layout {
    display: none;
  }
}
@media (max-width: 899px) {
  .header-menu__layout {
    display: none;
  }
}

.header {
  background: white;
  position: relative;
  width: 100%;
  z-index: 99;
  border-bottom: 0px solid silver;
}

.header-logo {
  opacity: 1;
  transition: 0.3s;
  display: flex;
  align-items: center;
}
.header-logo img {
  width: auto;
  height: 70px;
  width: auto;
}
.header-logo:hover {
  opacity: 0.5;
}
@media (max-width: 899px) {
  .header-logo img {
    height: 50px;
  }
}

.header-phone {
  width: 200px;
}
.header-phone .header-phone__text {
  font-size: 16px;
  color: #0b1826;
}
.header-phone .header-phone__number {
  font-size: 20px;
  color: #498B35;
  font-weight: 700;
}
@media (max-width: 899px) {
  .header-phone {
    display: none;
  }
}

@media (max-width: 899px) {
  .header-search {
    display: none;
  }
}

.searchbox {
  background: whitesmoke;
  display: inline-flex;
  border-radius: 10px;
}
.searchbox input {
  background: transparent;
  border: none;
  font-size: 16px;
  padding: 7px 15px;
}
.searchbox button {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
}

.header-top {
  display: grid;
  grid-template-columns: auto auto auto auto;
  flex-direction: row;
  gap: 50px;
  align-items: center;
}
@media (max-width: 899px) {
  .header-top {
    display: none;
  }
}

.header-lang .wpml-ls-legacy-dropdown {
  width: auto;
}
.header-lang .wpml-ls-legacy-dropdown a {
  border: none;
}
.header-lang img {
  width: 30px;
  height: auto;
}
@media (max-width: 899px) {
  .header-lang {
    display: none;
  }
}

.header-login a {
  color: gray;
}
.header-login a:hover {
  color: #0b1826;
}
@media (max-width: 899px) {
  .header-login {
    display: none;
  }
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  height: 50px;
}
.header-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  gap: 40px;
  align-items: center;
  height: 50px;
}
.header-nav ul li {
  display: flex;
  align-items: center;
  position: relative;
  height: 50px;
}
.header-nav ul li a {
  color: #0b1826;
  font-size: 18px;
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
}
.header-nav ul li a:hover {
  color: #498B35;
}
.header-nav ul li ul {
  display: none;
  position: absolute;
  left: 0;
  top: 50px;
  z-index: 1;
  list-style: none;
  width: 320px;
  margin: 0;
  padding: 0;
  background: #131313;
}
.header-nav ul > li:hover > ul {
  display: block;
}
.header-nav ul li ul li {
  padding: 0;
  margin: 0;
  background: none;
  width: 100%;
  display: block;
  background: #498B35;
}
.header-nav ul li ul li a {
  display: block;
  height: auto;
  padding: 15px 15px;
  color: white;
  text-decoration: none;
  text-transform: unset;
}
.header-nav ul li ul li a:hover, .header-nav .header ul.menu li ul li:hover > a {
  background: rgb(43.9140625, 83.6171875, 31.8828125);
  color: white;
}
.header-nav ul > li > ul > li > ul {
  display: none;
  left: 320px;
  top: 0;
}
.header-nav ul > li > ul > li:hover > ul {
  display: block;
}
@media (max-width: 899px) {
  .header-nav {
    display: none;
  }
}
@media (min-width: 900px) and (max-width: 1099px) {
  .header-nav {
    display: none;
  }
}
@media (min-width: 1100px) and (max-width: 1439px) {
  .header-nav ul li a {
    padding: 20px 10px;
    font-size: 15px;
  }
}

.menu-item-has-children::after {
  content: "⯆";
  color: #d6602e;
  font-size: 12px;
  margin: 0 0 0 10px;
}
.menu-item-has-children::after:hover {
  cursor: pointer;
}

.header-cartwrap {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-end;
}

.header-cart {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  background: #d6602e;
  padding: 5px 20px;
  border-radius: 10px;
}
.header-cart a {
  text-decoration: none;
  color: white;
}
.header-cart .cart-icon {
  position: relative;
  display: inline-block;
}
.header-cart .cart-icon svg {
  width: 40px;
  height: auto;
  color: white;
}
@media (max-width: 899px) {
  .header-cart .cart-icon svg {
    width: 32px;
  }
}
.header-cart .cart-count {
  background: #498B35;
  color: white;
  display: inline-flex;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
@media (max-width: 899px) {
  .header-cart .cart-total {
    display: none;
  }
}
@media (max-width: 899px) {
  .header-cart {
    gap: 0;
  }
}

.mob-nav {
  display: none;
  position: absolute;
  background: #498B35;
  width: 100%;
  z-index: 99999;
  left: 0;
  top: 80px;
}
.mob-nav ul {
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
}
.mob-nav ul li a {
  float: left;
  font-size: 16px;
  width: 100%;
  color: white;
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  font-weight: 400;
}
.mob-nav ul li a:hover {
  background: rgb(43.9140625, 83.6171875, 31.8828125);
}

.mob-nav-btn {
  display: none;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  color: gray;
}
.mob-nav-btn svg {
  width: 80%;
  height: auto;
}
.mob-nav-btn svg:hover {
  cursor: pointer;
  color: #0b1826;
}
@media (max-width: 899px) {
  .mob-nav-btn {
    display: flex;
  }
}
@media (min-width: 900px) and (max-width: 1099px) {
  .mob-nav-btn {
    display: flex;
  }
}

.offset {
  height: 0px;
  display: block;
}

/* */
.slider {
  height: 500px;
  margin: 20px 0 80px 0;
  overflow: clip;
  border-radius: 10px;
}
.slider .carousel-inner {
  height: 100%;
}
@media (max-width: 899px) {
  .slider {
    height: auto;
    margin: 20px 0 30px 0;
  }
}

.hp-crossroads__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin: 0 0 50px 0;
}
@media (max-width: 899px) {
  .hp-crossroads__items {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.crossroads-item {
  background: #498B35;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr 150px;
  overflow: clip;
}
@media (max-width: 899px) {
  .crossroads-item {
    grid-template-columns: 1fr;
  }
}
.crossroads-item .crossroads-item__data {
  padding: 20px;
}
.crossroads-item .crossroads-item__title h3 {
  color: white;
  text-decoration: none;
  font-size: 22px;
}
.crossroads-item .crossroads-item__title h3 a {
  color: white;
  text-decoration: none;
  font-size: 22px;
}
.crossroads-item .crossroads-item__title h3 a:hover {
  text-decoration: underline;
}
@media (max-width: 899px) {
  .crossroads-item .crossroads-item__title h3 a {
    font-size: 18px;
  }
}
.crossroads-item .crossroads-item__links ul {
  list-style: none;
  padding: 0;
}
.crossroads-item .crossroads-item__links ul li a {
  color: white;
  font-size: 16px;
}
.crossroads-item .crossroads-item__links ul li a:hover {
  text-decoration: none;
}
@media (max-width: 899px) {
  .crossroads-item .crossroads-item__links ul li {
    display: inline-flex;
  }
}
@media (max-width: 899px) {
  .crossroads-item .crossroad-item__pic {
    display: none;
  }
}

.hp-usp {
  margin: 40px 0;
}
@media (max-width: 899px) {
  .hp-usp {
    margin: 0;
  }
}

.hp-products {
  padding: 50px 0;
}

.hp-products__items {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media (max-width: 899px) {
  .hp-products__items {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

.hp-headline {
  text-align: center;
  padding: 0 0 40px 0;
}
.hp-headline h2 {
  font-size: 26px;
  color: #498B35;
  font-weight: 700;
}

.hp-news {
  padding: 80px 0;
}

.hp-news__items {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 899px) {
  .hp-news__items {
    grid-template-columns: 1fr;
  }
}

/* PRODUCT */
.product-top__layout {
  display: grid;
  grid-template-columns: 550px 1fr;
  gap: 100px;
}
@media (max-width: 899px) {
  .product-top__layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.product-title h1 {
  font-size: 32px;
}
@media (max-width: 899px) {
  .product-title h1 {
    font-size: 28px;
  }
}

.product-tags {
  display: inline-flex;
  padding: 0 0 20px 0;
  gap: 10px;
}
.product-tags .tag {
  display: inline-flex;
  background: white;
  padding: 5px 10px;
  border-radius: 15px;
  border: 1px solid silver;
}
.product-tags .tag-novinka {
  background: #498B35;
  color: white;
  border: 1px solid #498B35;
}

.product-perex {
  margin: 0 0 20px 0;
  font-size: 16px;
  line-height: 160%;
}

.product-image {
  border: 0px solid silver;
  margin: 0 0 20px 0;
  border-radius: 10px;
  overflow: clip;
}

.product-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 20px;
}
.product-gallery a {
  border-radius: 10px;
  overflow: hidden;
}

.product-price {
  display: inline-flex;
  gap: 5px;
}
.product-price .product-price__normal .price-regular {
  font-size: 26px;
  font-weight: 700;
}
.product-price .product-price__normal .price-without-dph {
  font-size: 16px;
  color: gray;
  margin: 5px 0 0 0;
}
.product-price .product-price__sale {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: start;
}
.product-price .product-price__sale .price-discount__badge {
  background: #f53f2b;
  color: white;
  padding: 7px 10px;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  border-radius: 5px;
}
.product-price .product-price__sale .price-discount__incl {
  font-size: 26px;
  color: #f53f2b;
  font-weight: 700;
}
.product-price .product-price__sale .price-without-dph {
  font-size: 16px;
  color: gray;
  margin: 5px 0 0 0;
}
.product-price .product-price__sale .price-regular__former {
  font-size: 17px;
  text-decoration: line-through;
  margin: 10px 0 0 0;
  font-weight: 400;
}
.product-price .product-price__number {
  font-size: 20px;
}
.product-price .product-price__currency {
  font-size: 20px;
}

.product-form {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
.product-form .product-form__qt input {
  padding: 10px;
  font-size: 18px;
  width: 50px;
  border-radius: 5px;
  border: 1px solid #b0c3b0;
  text-align: center;
}
.product-form .product-form__btn button {
  background: #50a850;
  padding: 11px 15px;
  color: white;
  border: none;
  font-size: 17px;
  border-radius: 5px;
  font-weight: 700;
}
.product-form .product-form__btn button:hover {
  background: #0b1826;
  cursor: pointer;
}
.product-form .product-form__btn button:disabled, .product-form .product-form__btn button[disabled] {
  background: silver;
}

.product-buy {
  gap: 20px;
  padding: 30px;
  background: #E0ECE2;
  border-radius: 10px;
  display: grid;
  grid-template-columns: auto auto;
}
@media (max-width: 899px) {
  .product-buy {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.product__add-cart {
  display: inline-flex;
  width: 100%;
  justify-content: flex-end;
}

.product-variations {
  padding: 20px 0;
}
.product-variations .product-variations-select {
  margin: 0 0 20px 0;
}
.product-variations .product-variations-select select {
  width: 100%;
}
.product-variations .product-variations-select select {
  appearance: none; /* Skryje výchozí šipku */
  -webkit-appearance: none;
  -moz-appearance: none;
  background: white url("/wp-content/themes/mwc/img/arrow.svg") no-repeat right center;
  background-size: 35px;
  padding-right: 40px; /* Rezerva pro ikonu */
}
.product-variations .select-variants {
  padding: 10px;
  font-size: 18px;
  border: 1px solid silver;
  border-radius: 10px;
}

.product-stock {
  padding: 20px 0;
}
.product-stock .stock-status {
  font-weight: 700;
  font-size: 20px;
}
.product-stock .stock-status .stock-status__info {
  font-size: 15px;
  font-weight: 400;
  color: #0b1826;
}
.product-stock .instock, .product-stock .skladem {
  color: #30B457;
}
.product-stock .onbackorder, .product-stock .predobjednavka {
  color: #3697D3;
}
.product-stock .outofstock, .product-stock .neni-skladem {
  color: #E45E55;
}

.product-data {
  padding: 20px 0;
}
.product-data .product-data__item {
  display: inline-flex;
  width: 100%;
  gap: 10px;
  color: gray;
  font-size: 15px;
}
.product-data .product-data__item a {
  color: gray;
}
.product-data .product-data__item a:hover {
  color: #0b1826;
}

.product-content {
  font-size: 16px;
  line-height: 150%;
}
.product-content h3 {
  font-size: 20px;
  color: gray;
}
.product-content h4 {
  font-size: 18px;
  color: gray;
}
.product-content p {
  font-size: 16px;
}
.product-content ul {
  list-style: none;
  padding-left: 0;
  position: relative;
  line-height: 150%;
  margin: 0 0 30px 0;
}
.product-content ul li {
  font-size: 16px;
  position: relative;
  padding-left: 30px;
  line-height: 150%;
  margin: 0 0 5px 0;
}
.product-content ul li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #d6602e;
  font-size: 10px;
}

.product-info__layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 50px;
  background: white;
  border-radius: 10px;
  margin: 80px 0;
}
@media (max-width: 899px) {
  .product-info__layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.product-info__layout .product-headline {
  margin: 0 0 30px 0;
}
.product-info__layout .product-headline h3 {
  color: #498B35;
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}
.product-info__layout .product-content {
  padding: 40px;
}
@media (max-width: 899px) {
  .product-info__layout .product-content {
    padding: 30px 15px;
  }
}
.product-info__layout .product-content__blocks .textpic-item {
  display: flex;
  margin: 70px 0;
  gap: 30px;
}
.product-info__layout .product-content__blocks .textpic-item .textpic-item__pic {
  width: 30%;
}
.product-info__layout .product-content__blocks .textpic-item .textpic-item__text {
  width: 70%;
}
.product-info__layout .product-content__blocks .textpic-item .textpic-item__text h3 {
  margin: 0 0 20px 0;
}
@media (max-width: 899px) {
  .product-info__layout .product-content__blocks .textpic-item .textpic-item__text {
    font-size: 15px;
  }
}
@media (max-width: 899px) {
  .product-info__layout .product-content__blocks .textpic-item {
    gap: 20px;
    margin: 40px 0;
  }
}
.product-info__layout .product-content__blocks .textpic-item:nth-child(even) .textpic-item__pic {
  order: 2;
}
.product-info__layout .product-content__blocks .textpic-item:nth-child(even) .textpic-item__text {
  order: 1;
}
.product-info__layout .product-parameters {
  padding: 40px;
}
@media (max-width: 899px) {
  .product-info__layout .product-parameters .woocommerce-product-attributes-item__label {
    font-size: 14px;
  }
}
@media (max-width: 899px) {
  .product-info__layout .product-parameters .woocommerce-product-attributes-item__value {
    font-size: 14px;
  }
}
@media (max-width: 899px) {
  .product-info__layout .product-parameters {
    padding: 15px;
  }
}

div:focus-visible {
  outline: none !important;
}

.product:focus-visible {
  outline: none !important;
}

.woocommerce-product-gallery__image {
  border-radius: 10px;
  overflow: hidden;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li {
  width: 23%;
  margin: 1%;
  border-radius: 10px;
  overflow: hidden;
}

.button {
  padding: 10px 15px;
  border-radius: 5px;
  border: none;
  font-weight: 700;
}
.button:hover {
  cursor: pointer;
}

.summary .price {
  display: none;
}
.summary .cart .quantity {
  background: yellow;
}
.summary .cart .quantity input {
  font-size: 18px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid silver;
}
.summary .cart .single_add_to_cart_button {
  background: #30B457;
  color: white;
  font-size: 18px;
}
.summary .cart .single_add_to_cart_button:hover {
  background: #45B467;
}

.product_title {
  color: black;
  font-size: 30px;
}

.woocommerce-product-details__short-description p {
  font-size: 20px;
  color: #0b1826;
}

.storefront-product-pagination {
  display: none;
}

.product_meta {
  border: none !important;
}

.product-price-stock {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  padding: 20px 0;
}

.product-prices .product-prices__tax {
  font-size: 26px;
  font-weight: 700;
  color: #0b1826;
}
.product-prices .product-prices__without {
  font-size: 15px;
  font-weight: 400;
  color: #0b1826;
}

.stock {
  display: none;
}

.product-related__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 10px;
  padding: 30px 0;
}
@media (max-width: 899px) {
  .product-related__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

.single-product div.product .product_meta a {
  text-decoration: none;
}

.posted_in {
  display: none !important;
}

.msf-product-description {
  margin: 0 0 30px 0;
  font-size: 16px;
  line-height: 170%;
}
.msf-product-description h3 {
  font-size: 18px;
  color: #0b1826;
  margin: 0 0 20px 0;
}
.msf-product-description p {
  color: #565656;
}
.msf-product-description ul {
  list-style: none;
  padding: 0 0 0 8px;
  margin: 20px 0;
}
.msf-product-description ul li {
  padding: 3px 0 3px 20px;
  line-height: 150%;
  font-size: 16px;
}
.msf-product-description ul li::before {
  content: "•";
  color: #30B457;
  font-weight: bold;
  position: absolute;
  display: inline-block;
  width: 25px;
  margin-left: -25px;
}

.woocommerce-product-attributes-item--dimensions {
  display: none;
}

.msf-product-attributes h3 {
  font-size: 18px;
  color: #0b1826;
  margin: 0 0 20px 0;
}
.msf-product-attributes .attributes-headline {
  font-size: 16px;
  font-weight: 700;
}

.woocommerce-product-attributes {
  width: 100%;
  border-collapse: collapse;
  /* tabulka */
}
.woocommerce-product-attributes td {
  background: transparent !important;
  text-align: left;
  color: #0b1826;
  border-bottom: 1px solid #D4D4D4;
  font-size: 16px;
}
.woocommerce-product-attributes th {
  background: transparent !important;
  text-align: left;
  color: #0b1826;
  font-weight: 700;
  border-bottom: 1px solid #D4D4D4;
  font-size: 16px;
}
.woocommerce-product-attributes table:not(.has-background) th {
  background: transparent !important;
  text-align: left;
  border-bottom: 1px solid gray;
}
.woocommerce-product-attributes table:not(.has-background) tbody td {
  background: transparent;
  text-align: left;
  border-bottom: 1px solid gray;
}
.woocommerce-product-attributes .woocommerce-product-attributes-item {
  border-bottom: 1px solid gray;
}
.woocommerce-product-attributes .woocommerce-product-attributes-item__value {
  background: red;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  border: 0px solid #dcdcdc;
  padding: 20px;
  background: white;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.product-card .product-card__tags {
  position: absolute;
  top: 20px;
  left: 0;
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
  z-index: 3;
}
.product-card .product-card__tags .tag {
  background: gray;
  color: white;
  padding: 5px;
  font-size: 15px;
  display: inline-block;
}
.product-card .product-card__pic {
  width: 100%;
  height: auto;
  border-radius: 10px;
  position: relative;
}
.product-card .product-card__pic img {
  width: 100%;
  height: auto;
}
.product-card .product-card__pic .pic-primary {
  position: relative;
}
.product-card .product-card__pic .pic-secondary {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.8s;
}
.product-card .product-card__data {
  text-align: left;
  padding: 0 0 10px 0;
}
@media (max-width: 899px) {
  .product-card .product-card__data {
    text-align: center;
  }
}
.product-card .product-card__data .product-card__title {
  margin: 0 0 10px 0;
}
.product-card .product-card__data .product-card__title a {
  color: #0b1826;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
}
.product-card .product-card__data .product-card__title a:hover {
  text-decoration: underline;
}
@media (max-width: 899px) {
  .product-card .product-card__data .product-card__title a {
    font-size: 15px;
  }
}
.product-card .product-card__data .product-card__perex {
  font-size: 15px;
  color: gray;
}
@media (max-width: 899px) {
  .product-card .product-card__data .product-card__perex {
    display: none;
  }
}
.product-card .product-card__data .product-card__pricebtn {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin: 20px 0;
}
@media (max-width: 899px) {
  .product-card .product-card__data .product-card__pricebtn {
    padding: 0;
    grid-template-columns: 1fr;
  }
}
.product-card .product-card__data .product-card__price .product-card__price--sale {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.product-card .product-card__data .product-card__price .product-card__price--sale .price-discont-badge {
  background: #f53f2b;
  color: white;
  display: inline-block;
  padding: 2px;
  border-radius: 5px;
}
.product-card .product-card__data .product-card__price .product-card__price--sale .price-sale {
  display: inline-block;
  font-weight: 700;
  font-size: 18px;
  color: #f53f2b;
}
.product-card .product-card__data .product-card__price .price-regular {
  color: #0b1826;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 0px 0;
}
@media (max-width: 899px) {
  .product-card .product-card__data .product-card__price .price-regular {
    font-size: 17px;
  }
}
.product-card .product-card__data .product-card__price .price-regular--sale {
  text-decoration: line-through;
  color: gray;
  font-weight: 500;
}
.product-card .product-card__data .product-card__price .price-without-dph {
  color: #757575;
  font-size: 14px;
}
@media (max-width: 899px) {
  .product-card .product-card__data .product-card__price .price-without-dph {
    margin: 4px 0 0 0;
  }
}
.product-card .product-card__data .product-card__stock {
  font-weight: 700;
  text-align: center;
}
.product-card .product-card__data .product-card__stock .instock {
  color: #498B35;
}
.product-card .product-card__data .product-card__stock .onbackorder {
  color: blue;
}
.product-card .product-card__data .product-card__stock .outofstock {
  color: red;
}
@media (max-width: 899px) {
  .product-card .product-card__data .product-card__stock {
    font-size: 14px;
  }
}
.product-card .product-card__data .product-card__price--sale .price-sale {
  color: red;
}
.product-card .product-card__data .product-card__price--sale .price-regular {
  text-decoration: line-through;
}
.product-card .product-card__data .product-card__btn {
  margin: 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
.product-card .product-card__data .product-card__btn a {
  background: #d6602e;
  color: white;
  padding: 7px 15px;
  display: inline-block;
  font-size: 15px;
  text-decoration: none;
  border-radius: 5px;
}
.product-card .product-card__data .product-card__btn a:hover {
  background: black;
  text-decoration: none;
}
@media (max-width: 899px) {
  .product-card .product-card__data .product-card__btn a {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 14px;
  }
}
.product-card:hover .product-card__pic .pic-secondary {
  display: block;
  opacity: 1;
}

.cat-page {
  padding: 0 0 80px 0;
}

.cat-top {
  margin: 50px 0;
}
.cat-top h1 {
  color: #498B35;
  font-size: 40px;
  padding: 0;
  margin: 0;
}
@media (max-width: 899px) {
  .cat-top {
    margin: 20px 0;
    padding: 0;
  }
  .cat-top h1 {
    font-size: 28px;
  }
}

.cat-desc {
  color: #0b1826;
  margin: 0 0 40px 0;
  line-height: 150%;
}
.cat-desc p {
  padding: 0;
  margin: 0;
}
@media (max-width: 899px) {
  .cat-desc {
    padding: 0;
    margin: 0 0 20px 0;
  }
}

.cat-subcats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin: 0 0 50px 0;
}
.cat-subcats .subcat-item {
  background: white;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 15px;
  border: 1px solid white;
  align-items: center;
  padding: 7px;
  text-decoration: none;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}
.cat-subcats .subcat-item .subcat-item__pic {
  width: 50px;
  height: 50px;
}
.cat-subcats .subcat-item .subcat-item__text {
  color: #0b1826;
  text-decoration: none;
}
.cat-subcats .subcat-item:hover {
  border: 1px solid silver;
}

.cat-items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin: 0 0 80px 0;
}
@media (max-width: 899px) {
  .cat-items {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
@media (min-width: 900px) and (max-width: 1099px) {
  .cat-items {
    grid-template-columns: 1fr 1fr;
  }
}

.cat-longdesc {
  text-align: justify;
  color: #0b1826;
  margin: 0 0 70px 0;
  line-height: 150%;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
}
.cat-longdesc p {
  padding: 0;
  margin: 0 0 10px 0;
}
@media (min-width: 1100px) and (max-width: 1439px) {
  .cat-longdesc {
    padding: 0;
  }
}
@media (min-width: 900px) and (max-width: 1099px) {
  .cat-longdesc {
    padding: 0;
  }
}
@media (max-width: 899px) {
  .cat-longdesc {
    padding: 0;
    margin: 0 0 20px 0;
    grid-template-columns: 1fr;
  }
}
.cat-longdesc .cat-longdesc__text {
  font-size: 16px;
}
@media (max-width: 899px) {
  .cat-longdesc .cat-longdesc__text {
    font-size: 15px;
    line-height: 135%;
    text-align: left;
  }
}
.cat-longdesc .cat-longdesc__pic img {
  border-radius: 10px;
}
@media (max-width: 899px) {
  .cat-longdesc .cat-longdesc__pic {
    display: none;
  }
}

a {
  color: #3697D3;
}
a:hover {
  color: #13679B;
}

a:focus, button:focus, .button.alt:focus, input:focus, textarea:focus, input[type=button]:focus, input[type=reset]:focus,
input[type=submit]:focus, input[type=email]:focus, input[type=tel]:focus, input[type=url]:focus,
input[type=password]:focus, input[type=search]:focus {
  color: #3697D3;
}

.woocommerce-form-login input {
  width: 90%;
}
.woocommerce-form-login .woocommerce-form-login__rememberme {
  margin: 0 0 20px 0;
}
.woocommerce-form-login .show-password-input {
  border: none;
  color: gray;
  border-radius: 10px;
}
.woocommerce-form-login button[type=submit] {
  background: #498B35;
  color: white;
  font-size: 16px;
}
.woocommerce-form-login button[type=submit]:hover {
  background: rgb(121.125, 195.375, 98.625);
}

.woocommerce-MyAccount-navigation ul {
  background: whitesmoke;
  border-radius: 10px;
  list-style: none;
  padding: 0;
}
.woocommerce-MyAccount-navigation ul li {
  border-bottom: 1px solid silver;
  padding: 10px;
}
.woocommerce-MyAccount-navigation ul li a {
  color: #0b1826;
  padding: 10px;
  text-decoration: none;
}
.woocommerce-MyAccount-navigation ul li a:hover {
  text-decoration: underline !important;
}
.woocommerce-MyAccount-navigation ul li a::before {
  all: unset;
  content: "" !important;
}
.woocommerce-MyAccount-navigation ul li:last-child {
  border: none;
}

.woocommerce-orders-table {
  width: 100%;
  background: white;
  border-collapse: collapse;
}
.woocommerce-orders-table td, .woocommerce-orders-table th {
  padding: 15px 10px;
  border-bottom: 1px solid #d3dbde;
  text-align: left;
  background: transparent !important;
}
.woocommerce-orders-table .woocommerce-orders-table__cell-order-actions a {
  text-decoration: none !important;
  background: #3697D3;
  color: white;
}
.woocommerce-orders-table .woocommerce-orders-table__cell-order-actions a:hover {
  background: #13679B;
}
.woocommerce-orders-table tr:nth-child(even) {
  background: #e9f1f6;
}

mark {
  background: transparent;
}

fieldset {
  background: transparent;
  padding: 0;
  margin: 40px 0;
  border: none;
}
fieldset legend {
  background: transparent;
  font-weight: 700;
  color: #13679B;
  font-size: 20px;
}

table:not(.has-background) th {
  background-color: transparent !important;
}

.layout-page ul {
  padding: 0 !important;
}

.order_details {
  background: white;
}

ul.order_details li {
  font-size: 17px;
  text-transform: none;
  padding: 15px !important;
  border-bottom: 1px solid #d3dbde;
  color: #0b1826;
}

ul.order_details li strong {
  font-size: 17px;
}

.woocommerce-table--order-details {
  border-collapse: collapse;
  width: 100%;
}
.woocommerce-table--order-details th, .woocommerce-table--order-details td {
  text-align: left;
  padding: 15px;
  border-bottom: 1px solid #d3dbde;
  color: #0b1826;
  font-size: 17px;
}
.woocommerce-table--order-details table:not(.has-background) th {
  background: transparent !important;
}
.woocommerce-table--order-details .woocommerce-table__product-name {
  background: transparent !important;
}
.woocommerce-table--order-details a {
  color: #3697D3;
}

.woocommerce-customer-details {
  color: #0b1826;
  font-size: 17px;
  font-style: normal;
}
.woocommerce-customer-details address {
  font-style: normal;
  background: white;
  padding: 15px;
  line-height: 140%;
  color: #0b1826;
}
.woocommerce-customer-details p {
  font-style: normal;
}

.wc-block-cart-items__row {
  background: white;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
}
.wc-block-cart-items__row .wc-block-components-product-price {
  color: #0b1826;
  font-weight: 700;
}

.wc-block-components-shipping-calculator button {
  background: #3697D3 !important;
  color: white;
  border-radius: 5px;
  border: none;
}
.wc-block-components-shipping-calculator button:hover {
  background: #13679B !important;
}

.wp-block-woocommerce-cart-order-summary-block {
  background: white;
  padding: 15px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  color: #0b1826;
}

.wc-block-cart .wc-block-cart__submit-container {
  padding: 15px !important;
}
.wc-block-cart .wc-block-cart__submit-container a {
  border-radius: 10px;
  background: #30B457;
  text-decoration: none;
  font-weight: 700;
}
.wc-block-cart .wc-block-cart__submit-container a:hover {
  background: #45B467;
}

.wc-block-components-totals-coupon__form button {
  background: #3697D3 !important;
  color: white;
  border-radius: 5px;
  border: none;
}
.wc-block-components-totals-coupon__form button:hover {
  background: #13679B !important;
}

.wp-block-heading {
  display: none;
}

.with-empty-cart-icon {
  color: #30B457;
  display: block;
}

.wp-block-woocommerce-empty-cart-block .wc-block-grid__products {
  display: none;
}

.woocommerce form .form-row .required {
  display: none;
}

.woocommerce-message {
  background: #30B457;
}

.woocommerce-error {
  background: #E45E55;
}
.woocommerce-error li {
  color: white !important;
  padding: 10px !important;
}
.woocommerce-error::before {
  content: "";
}

.woocommerce-billing-fields__field-wrapper .form-row.woocommerce-validated input.input-text {
  border: 2px solid green;
}
.woocommerce-billing-fields__field-wrapper .form-row.woocommerce-invalid input.input-text {
  border: 2px solid red;
}
.woocommerce-billing-fields__field-wrapper input {
  width: 95%;
  padding: 10px 2%;
  font-size: 17px;
  background: white;
  border: 1px solid #a7c2cc;
  border-radius: 5px;
}
.woocommerce-billing-fields__field-wrapper textarea {
  width: 95%;
  padding: 10px 2%;
  font-size: 17px;
  background: white;
  border: 1px solid #a7c2cc;
  border-radius: 5px;
}

.input-text {
  width: 95%;
  padding: 10px 2%;
  font-size: 17px;
  background: white;
  border: 1px solid #a7c2cc;
  border-radius: 5px;
}

.woocommerce-checkout-review-order {
  background: transparent !important;
}

.woocommerce-checkout-review-order-table {
  width: 100%;
  background: white;
  border: 1px solid silver;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
  border-collapse: collapse;
}
.woocommerce-checkout-review-order-table td, .woocommerce-checkout-review-order-table th {
  padding: 10px;
  border-bottom: 1px solid silver;
  color: #0b1826;
  background: transparent !important;
  text-align: left;
}
#payment .payment_methods > li:not(.woocommerce-notice) {
  background: transparent !important;
  padding: 0;
}

.star-rating span:before, .quantity .plus, .quantity .minus, p.stars a:hover:after, p.stars a:after, .star-rating span:before,
#payment .payment_methods li input[type=radio]:first-child:checked + label:before {
  color: #3697D3;
}

#payment .payment_methods {
  background: white;
  border: 1px solid silver;
}

#payment .place-order {
  padding: 0px;
}

#payment .payment_methods > li .payment_box, #payment .place-order {
  background: transparent !important;
}

.wc_payment_method {
  border-bottom: 1px solid silver;
}

.payment_box {
  padding: 0 20px 20px 20px !important;
}

#payment .payment_methods li p {
  font-size: 14px;
  color: gray;
}

#payment .payment_methods > .woocommerce-PaymentMethod > label, #payment .payment_methods > .wc_payment_method > label {
  padding: 20px;
}

.woocommerce-privacy-policy-text p {
  padding: 0px;
  font-size: 13px !important;
  color: gray;
}
.woocommerce-privacy-policy-text p a {
  color: #3697D3;
}

.woocommerce-terms-and-conditions-checkbox-text {
  font-size: 16px;
}
.woocommerce-terms-and-conditions-checkbox-text a {
  color: #3697D3;
}

#payment .place-order .button {
  background: #30B457;
}

/* košík */
.layout-page ul li {
  padding: 0px 10px;
}

/* zásilkovna */
.toret-vyber-pobocky {
  font-size: 16px;
}

.zas-hd-tlac {
  background: #ba1b02;
  color: white;
  padding: 5px;
  font-size: 16px;
  display: block;
  margin: 5px 0;
  text-align: center;
}
.zas-hd-tlac:hover {
  background: #0b1826;
  color: white;
}

.zas-tlac {
  background: #ba1b02;
  color: white;
  padding: 5px;
  font-size: 16px;
  display: block;
  margin: 5px 0;
  text-align: center;
}
.zas-tlac:hover {
  background: #0b1826;
  color: white;
}

/* Search */
.search-products__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
}

/* PAGE */
.page-top .page-top__title {
  padding: 30px 0;
}
.page-top .page-top__title h1 {
  font-size: 40px;
  color: #498B35;
}

h2, h3 {
  display: block !important;
}

.wpcf7-form {
  width: 100%;
  margin: 0 auto;
  background: white;
  padding: 30px;
  border-radius: 10px;
}
@media (max-width: 899px) {
  .wpcf7-form {
    width: 80%;
  }
}
.wpcf7-form .f_row-right {
  text-align: right;
}
.wpcf7-form .f_row p {
  margin: 0;
  padding: 0;
}
.wpcf7-form .f_row label {
  margin: 0;
  padding: 0;
}
.wpcf7-form .f_row .label {
  text-align: left;
}
.wpcf7-form .f_row .input {
  margin: 0 0 15px 0;
}
.wpcf7-form .f_row .input input {
  padding: 10px 1%;
  width: 98%;
  border: 1px solid silver;
  border-radius: 10px;
  font-size: 17px;
}
.wpcf7-form .f_row .input textarea {
  padding: 1%;
  width: 98%;
  border: 1px solid silver;
  border-radius: 10px;
  font-size: 17px;
  font-family: "Inter", sans-serif;
}
.wpcf7-form .f_row input[type=submit] {
  background: #3697D3;
  border-radius: 20px;
  color: white;
  font-weight: 700;
  font-size: 18px;
  padding: 10px 25px;
  border: none;
  cursor: pointer;
}
.wpcf7-form .f_row input[type=submit]:hover {
  background: black;
}
.wpcf7-form .wpcf7-spinner {
  display: block;
}

.wpcf7 form .wpcf7-response-output {
  margin: 0 0 30px 0;
}

.wpcf7 form.sent .wpcf7-response-output {
  border: none;
  background: #30B457;
  color: white;
  border-radius: 5px;
  padding: 15px;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  border: none;
  padding: 15px;
  background: #F1D561;
  color: #0b1826;
  border-radius: 5px;
}

/* článek - detail */
.article-layout {
  display: grid;
  width: 1400px;
  margin: 0 auto;
  grid-template-columns: 1fr 300px;
  gap: 80px;
}
@media (min-width: 1100px) and (max-width: 1439px) {
  .article-layout {
    width: 90%;
  }
}
@media (min-width: 900px) and (max-width: 1099px) {
  .article-layout {
    grid-template-columns: 1fr;
    width: 94%;
  }
}
@media (max-width: 899px) {
  .article-layout {
    grid-template-columns: 1fr;
    width: 94%;
  }
}

.article-top .article-top__title {
  padding: 40px 0 0px 0;
}
.article-top .article-top__title h1 {
  font-size: 40px;
  color: #498B35;
}
.article-top .article-top__info {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin: 0 0 40px 0;
}
.article-top .article-top__date {
  color: gray;
}
.article-top .article-top__category {
  color: gray;
}

.article-content {
  margin: 0 0 100px 0;
  padding: 40px;
  background: white;
  border-radius: 10px;
}
.article-content h2 {
  font-size: 32px;
  color: #d6602e;
}
.article-content h3 {
  font-size: 22px;
  color: #498B35;
}
.article-content h4 {
  font-size: 20px;
  display: block;
}
.article-content p {
  font-size: 17px;
  line-height: 150%;
}
.article-content ul li {
  font-size: 17px;
  line-height: 150%;
}
.article-content .article-tags {
  padding: 50px 0;
}
.article-content .article-tags .tag-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.article-content .article-tags .tag-list li {
  display: inline-block;
}
.article-content .article-tags .tag-list li a {
  color: #498B35;
  border-radius: 20px;
  border: 1px solid #498B35;
  text-decoration: none;
  padding: 5px 10px;
  font-size: 15px;
}
.article-content .article-tags .tag-list li a:hover {
  background: #498B35;
  color: white;
}

.article-side .article-side__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

/* článek - karta */
.article-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.article-card .product-card__cat {
  position: absolute;
  top: 20px;
}
.article-card .product-card__cat .tagcat {
  padding: 7px 20px;
  color: white;
  -webkit-border-top-right-radius: 10px;
  font-weight: 700;
  -webkit-border-bottom-right-radius: 10px;
  -moz-border-radius-topright: 10px;
  -moz-border-radius-bottomright: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.article-card .product-card__cat .tagcat-novinky {
  background: #498B35;
}
.article-card .product-card__cat .tagcat-blog {
  background: #0b1826;
}
.article-card .product-card__cat .tagcat-recepty {
  background: #d6602e;
}
.article-card .article-card__pic {
  overflow: hidden;
  margin: 0 0 15px 0;
  position: relative;
}
.article-card .article-card__pic img {
  transform: scale(1);
  transition: 0.3s;
  border-radius: 10px;
}
.article-card .article-card__pic img:hover {
  transform: scale(1.2);
}
.article-card .article-card__text .article-item__text-name h3 {
  font-size: 18px;
  text-decoration: none;
  color: #0b1826;
  line-height: 130%;
}
.article-card .article-card__text .article-item__text-name h3 a {
  font-size: 18px;
  text-decoration: none;
  font-weight: 600;
  color: #0b1826;
}
.article-card .article-card__text .article-item__text-name h3 a:hover {
  text-decoration: underline;
  color: #0b1826;
}
.article-card .article-card__text .article-card__text-date {
  color: gray;
  margin: 0 0 10px 0;
}
.article-card .article-card__text .article-card__text-link {
  padding: 15px 30px;
}
.article-card .article-card__text .article-card__text-link a {
  color: #F38422;
  text-decoration: none;
  font-weight: 700;
}
.article-card .article-card__text .article-card__text-link a:hover {
  text-decoration: underline;
}
.article-card .article-card__text .article-item__text-date {
  color: #adadad;
  font-size: 16px;
}
.article-card__mini .article-card__text-date {
  font-size: 14px;
}
.article-card__mini .article-card__text .article-item__text-name h3 {
  margin: 0 0 10px 0;
}
.article-card__mini .article-card__text .article-item__text-name h3 a {
  color: #498B35;
}

.archive-items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin: 0 0 80px 0;
}

/* košík */
.woocommerce-cart .article-content {
  all: unset;
}

/* FOOTER */
.footer {
  background: white;
  padding: 50px 0;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 2fr;
  grid-column-gap: 60px;
  width: 1400px;
  margin: 0 auto;
}
@media (min-width: 1100px) and (max-width: 1439px) {
  .footer-layout {
    width: 90%;
  }
}
@media (min-width: 900px) and (max-width: 1099px) {
  .footer-layout {
    width: 94%;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 899px) {
  .footer-layout {
    width: 94%;
    grid-template-columns: 1fr;
  }
}

.footer-col h3 {
  color: black;
  font-size: 20px;
}
@media (max-width: 899px) {
  .footer-col h3 {
    text-align: center;
  }
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  padding: 5px 0;
}
.footer-col ul li a {
  color: #0b1826;
  font-size: 15px;
  text-decoration: none;
}
.footer-col ul li a:hover {
  color: #3697D3;
  text-decoration: underline;
}
@media (max-width: 899px) {
  .footer-col ul li {
    text-align: center;
  }
}

@media (max-width: 899px) {
  .footer-col__produkty {
    display: none;
  }
}

@media (max-width: 899px) {
  .footer-col__onas {
    display: none;
  }
}

@media (max-width: 899px) {
  .footer-col__sledujtenas {
    display: none;
  }
}

.content-right {
  justify-content: right;
  display: flex;
}
@media (max-width: 899px) {
  .content-right {
    justify-content: center;
  }
}

.ft-contact__items {
  gap: 15px;
  display: flex;
  flex-direction: column;
}

.ft-contact-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 20px;
}
.ft-contact-item .ft-contact-item__icon {
  background: #30B457;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}
.ft-contact-item .ft-contact-item__icon svg {
  color: white;
  width: 24px;
  height: auto;
}
.ft-contact-item .ft-contact-item__value a {
  font-size: 17px;
  color: #0b1826;
  text-decoration: none;
}
.ft-contact-item .ft-contact-item__value a:hover {
  text-decoration: underline;
}

.storefront-handheld-footer-bar {
  display: none;
}

.tiraz {
  padding: 20px 0;
  font-size: 14px;
  color: gray;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: white;
}
.tiraz p {
  margin: 0;
  padding: 0;
  font-size: 14px;
}
@media (max-width: 899px) {
  .tiraz .firma {
    text-align: center;
  }
}
.tiraz .autor {
  text-align: right;
}
.tiraz .autor .logo {
  width: 80px;
  display: inline-block;
  opacity: 0.3;
  filter: invert(0);
}
.tiraz .autor .logo:hover {
  opacity: 1;
}
@media (max-width: 899px) {
  .tiraz .autor {
    text-align: center;
  }
}

.layout-1 {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 40px;
  width: 1400px;
  margin: 0 auto;
}
@media (min-width: 1100px) and (max-width: 1439px) {
  .layout-1 {
    width: 90%;
  }
}
@media (min-width: 900px) and (max-width: 1099px) {
  .layout-1 {
    width: 94%;
  }
}
@media (max-width: 899px) {
  .layout-1 {
    width: 94%;
  }
}

.layout-1-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 40px;
  width: 1400px;
  margin: 0 auto;
}
@media (min-width: 1100px) and (max-width: 1439px) {
  .layout-1-1 {
    width: 90%;
  }
}
@media (min-width: 900px) and (max-width: 1099px) {
  .layout-1-1 {
    width: 94%;
  }
}
@media (max-width: 899px) {
  .layout-1-1 {
    width: 94%;
    grid-template-columns: 1fr;
  }
}

.layout-page {
  margin: 0 auto;
  width: 1000px;
  padding: 0 0 80px 0;
}
@media (min-width: 1100px) and (max-width: 1439px) {
  .layout-page {
    width: 90%;
  }
}
@media (min-width: 900px) and (max-width: 1099px) {
  .layout-page {
    width: 94%;
  }
}
@media (max-width: 899px) {
  .layout-page {
    width: 94%;
  }
}

@media (min-width: 1100px) and (max-width: 1439px) {
  .display-desktop {
    display: none;
  }
}
@media (min-width: 900px) and (max-width: 1099px) {
  .display-desktop {
    display: none;
  }
}
@media (max-width: 899px) {
  .display-desktop {
    display: none;
  }
}

@media (min-width: 1440px) {
  .display-mobile {
    display: none;
  }
}
@media (min-width: 1100px) and (max-width: 1439px) {
  .display-mobile {
    display: none;
  }
}
@media (min-width: 900px) and (max-width: 1099px) {
  .display-mobile {
    display: none;
  }
}
@media (max-width: 899px) {
  .display-mobile {
    display: display;
  }
}

html {
  font-family: "Inter", sans-serif;
}

body {
  font-family: "Inter", sans-serif;
  padding: 0;
  margin: 0;
  background-color: #F3F3F3 !important;
}

img {
  width: 100%;
  height: auto;
}

h1, h2, h3, p {
  font-family: "Inter", sans-serif;
}

#page {
  overflow-x: clip;
  position: relative;
}

.entry-title {
  font-size: 50px;
  color: #3697D3;
  line-height: 120%;
}
@media (max-width: 899px) {
  .entry-title {
    font-size: 30px;
  }
}

.entry-content h1 {
  font-size: 50px;
  color: #3697D3;
  line-height: 120%;
}
@media (max-width: 899px) {
  .entry-content h1 {
    font-size: 30px;
  }
}
.entry-content p {
  color: #0b1826;
  font-size: 17px;
  line-height: 150%;
}
.entry-content .wp-block-list {
  list-style: none;
  padding: 0 0 0 8px;
  margin: 20px 0;
}
.entry-content .wp-block-list li {
  padding: 3px 0 3px 20px;
  line-height: 150%;
  font-size: 17px;
  color: #0b1826;
}
.entry-content .wp-block-list li::before {
  content: "•";
  color: #30B457;
  font-weight: bold;
  position: absolute;
  display: inline-block;
  width: 25px;
  margin-left: -25px;
}

.contact_block {
  background: red;
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 40px;
}
@media (max-width: 899px) {
  .contact_block {
    font-size: 16px !important;
    gap: 20px;
    grid-template-columns: 40px 1fr;
  }
}

.contact_icon .wp-block-media-text__media {
  width: 50px;
}
.contact_icon img {
  width: 50px;
}
.contact_icon a {
  color: #3697D3;
  text-decoration: none;
}

.contact_icon.wp-block-media-text {
  grid-template-columns: 50px auto !important;
  padding: 0px 0 !important;
}
.ups-items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
}
.ups-items .ups-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  align-items: center;
}
/* HP */
.hp-top {
  background: gray;
}
@media (max-width: 899px) {
  .hp-top {
    background-size: contain;
    background: url("/wp-content/themes/msf/img/top_mobil.webp") center center !important;
  }
}
.hp-top .center-content {
  height: 600px;
  width: 50%;
  display: flex;
  justify-content: start;
  align-items: center;
}
@media (max-width: 899px) {
  .hp-top .center-content {
    height: 80vh;
    width: 100%;
    justify-content: center;
  }
}
.hp-top .hp-top__text h1 {
  color: #3697D3;
  font-size: 50px;
  font-family: "Shantell Sans", cursive;
}
.hp-top .hp-top__text p {
  color: #0b1826;
  font-size: 20px;
  line-height: 150%;
}
.hp-top .hp-top__text .btn-top {
  background: #30B457;
  color: white;
  padding: 10px 20px;
  font-weight: 700;
  border-radius: 20px;
  text-decoration: none;
  display: inline-block;
  margin: 20px 0;
}
.hp-top .hp-top__text .btn-top:hover {
  background: #45B467;
}
@media (max-width: 899px) {
  .hp-top .hp-top__text {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    text-align: center;
    border-radius: 10px;
  }
  .hp-top .hp-top__text h1 {
    font-size: 30px;
    line-height: 140%;
  }
  .hp-top .hp-top__text p {
    font-size: 16px;
  }
}

.product-bc {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 15px 0;
}
.product-bc a {
  color: gray;
  font-size: 14px;
}
.product-bc a:hover {
  color: #0b1826;
}
.product-bc .separator {
  color: silver;
  display: inline-flex;
}
.product-bc .separator svg {
  width: 14px;
}

/* USP lišta */
.usp-block {
  border-top: 0px solid silver;
  background: white;
}

.usp-items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 80px;
  padding: 50px 0;
}
@media (max-width: 899px) {
  .usp-items {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 10px 0;
  }
}
@media (min-width: 900px) and (max-width: 1099px) {
  .usp-items {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
.usp-items .usp-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: center;
}
@media (max-width: 899px) {
  .usp-items .usp-item {
    grid-template-columns: 40px 1fr;
  }
}
@media (min-width: 900px) and (max-width: 1099px) {
  .usp-items .usp-item {
    grid-template-columns: 40px 1fr;
  }
}
.usp-items .usp-item .usp-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.usp-items .usp-item .usp-item__icon svg {
  width: 100%;
  height: auto;
  color: #30B457;
}
.usp-items .usp-item .usp-item__text {
  color: #0b1826;
  font-size: 18px;
  font-weight: 500;
}

.storefront-breadcrumb {
  padding: 20px 0 !important;
  margin: 0 !important;
}

.email-fakturace {
  background: yellow;
}
.email-fakturace p {
  margin: 0 0 5px 0;
  padding: 0;
  color: red;
}

.wp-block-gallery.has-nested-images figure.wp-block-image {
  flex-grow: 0;
}

.wpml-ls-statics-footer {
  display: none;
}

.otgs-development-site-front-end {
  display: none;
}

/*# sourceMappingURL=styles.css.map */
