@charset "UTF-8";
:root {
  --brand: #db0d27;
  --dark: #092032;
  --body: #516171;
  --border: rgba(0,0,0,0.08);
  --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08); }

body {
  font-family: Barlow, sans-serif;
  background-color: #f5f5f5;
  color: #4a4a4a;
  margin: 0;
  overflow-x: hidden; }

h2 {
  font-size: 40px;
  text-transform: uppercase;
  line-height: 44px;
  color: #212529;
  font-weight: 800;
  padding: 40px 0;
  font-family: "Inter", sans-serif; }
  h2 a {
    color: black;
    text-decoration: none; }

.hero-section {
  position: relative;
  min-height: 100vh;
  /* Výchozí hodnota, bude upravena JS */
  overflow: hidden; }

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1; }

.hero-content {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  /* Poloprůhledné pozadí pro čitelnost */
  color: white;
  padding: 2rem;
  border-radius: 0.5rem; }

/* Responsive úpravy */
@media (max-width: 767.98px) {
  .hero-section {
    min-height: auto; }

  .hero-image {
    position: relative;
    height: 50vh;
    /* Obrázek zabírá polovinu výšky na mobilu */ }

  .hero-content {
    margin-top: -4rem;
    /* Obsah se přesune nad obrázek */
    background: rgba(0, 0, 0, 0.7); } }
.menu-roadmap .nav-link {
  padding: 0.5rem;
  transition: transform 0.2s;
  background: white;
  border-radius: 6px;
  min-width: 100%; }

.menu-roadmap .nav-link:hover {
  transform: scale(1.05);
  color: var(--brand); }

.menu-roadmap .nav-image {
  width: 100%;
  height: auto;
  /* Nastavení pevné výšky pro obrázky */
  object-fit: cover;
  /* Zajistí, že obrázky vyplní prostor bez deformace */
  border-radius: 4px; }

.menu-roadmap .col {
  display: flex; }

.menu-roadmap .nav-link span {
  font-size: 0.9rem;
  font-weight: 500; }

/* Responzivní úpravy */
@media (max-width: 767.98px) {
  .menu-roadmap .row-cols-md-5 {
    row-gap: 1rem; }

  .menu-roadmap .nav-image {
    height: auto;
    /* Menší výška obrázků na mobilu */ } }
.leadbubble {
  color: #1c1210;
  background-color: #fff;
  display: inline-block;
  border-radius: 24px;
  padding: 15px 20px;
  align-items: center;
  justify-content: center;
  border: none;
  font-size: 1.2rem;
  line-height: 1.2rem;
  letter-spacing: .3px;
  font-weight: 500;
  margin-bottom: 10px; }
  .leadbubble a {
    color: black;
    text-decoration: none; }

.btn-success {
  background: #8ea604;
  border: 0 !important; }

.btn-light {
  background: #eef3d0;
  color: #8ea604;
  border: 0 !important; }
  .btn-light:hover {
    background: #8ea604;
    color: white;
    border: 0 !important; }

/* navbar */
.top-nav {
  background-color: var(--brand);
  color: #fff;
  padding-top: 5px;
  padding-bottom: 5px; }

.top-nav p {
  display: inline-block;
  margin-bottom: 0; }

.top-nav p i {
  margin-right: 5px; }

.top-nav a {
  color: white;
  text-decoration: none; }

.navbar {
  background-color: #fff;
  box-shadow: 0;
  border-bottom: 1px solid #f3f3f3;
  padding: 15px 0; }

.navbar-brand img {
  height: 50px; }

.navbar-nav .nav-link {
  color: #1c1210;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 10px 15px; }
  .navbar-nav .nav-link:hover {
    color: var(--brand); }
  .navbar-nav .nav-link.active {
    color: var(--brand);
    text-decoration: underline; }

@media (max-width: 991.98px) {
  .main-navbar .navbar-nav {
    text-align: center;
    /* Vystředí text položek menu */
    width: 100%;
    /* Zajistí, že položky zaberou celou šířku */ }

  .main-navbar .navbar-nav .nav-item {
    padding: 0.5rem 0;
    /* Nahradí px-3 pro vertikální rozložení */ }

  .main-navbar .navbar-contact {
    text-align: center;
    width: 100%;
    margin: 1rem 0 0 0;
    align-items: center;
    /* Vystředí obsah uvnitř flex-column */ }

  .main-navbar .navbar-contact p {
    margin: 10px;
    /* Rozumný padding mezi položkami */ } }
.navbar-contact {
  display: flex; }
  .navbar-contact p {
    margin: 0 0 0 20px;
    color: #1c1210;
    background-color: #f7f7f7;
    display: flex;
    min-height: 48px;
    border-radius: 24px;
    padding: 5px 16px;
    align-items: center;
    justify-content: center;
    border: none;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: .3px;
    font-weight: 500; }
  .navbar-contact a {
    color: #1c1210;
    text-decoration: none; }
    .navbar-contact a:hover {
      color: #000;
      text-decoration: underline; }
  .navbar-contact i {
    color: var(--brand);
    margin-right: 4px; }

@media (max-width: 991px) {
  .navbar-contact {
    text-align: center;
    margin-top: 10px;
    font-size: 0.85rem; } }
.category-nav {
  border-bottom: 0;
  top: 0;
  z-index: 1000;
  padding: 12px 0;
  max-width: 100%;
  /* Prevents overflow beyond viewport */
  overflow-x: hidden;
  /* Hides any overflow from the section itself */ }
  .category-nav.sticky {
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -ms-sticky;
    position: -o-sticky;
    position: sticky;
    opacity: 0; }
    .category-nav.sticky.is-stuck {
      opacity: 1; }
  .category-nav .nav-image {
    max-width: 80px;
    height: auto;
    padding-bottom: 9px; }
  .category-nav.is-stuck {
    background: white; }
    .category-nav.is-stuck .nav-image {
      display: none; }
  .category-nav .nav {
    flex-wrap: nowrap; }
  .category-nav .nav-link {
    color: #000;
    font-weight: 600;
    font-size: .96rem;
    padding: 8px 20px;
    margin: 0 10px 0;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid transparent;
    background-color: white; }
  .category-nav.is-stuck .nav-link {
    border-radius: 4px; }
  .category-nav .nav-link.active {
    border: 1px solid var(--brand);
    background-color: white;
    color: var(--brand); }
  .category-nav .nav-link:hover {
    color: var(--brand); }

.btn-add-to-cart {
  background-color: var(--brand);
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 10px 25px;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  width: 100%;
  text-align: center; }
  .btn-add-to-cart:hover {
    background-color: var(--brand);
    transform: scale(1.02); }

.cart-icon {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #8ea604;
  color: #fff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  cursor: pointer; }
  .cart-icon:hover {
    transform: scale(1.1); }
  .cart-icon span {
    font-size: 1.5rem;
    font-weight: 600; }

.cart-count {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #fff;
  color: #8ea604;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700; }

.footer {
  background-color: var(--brand);
  color: #fff;
  padding: 60px 0 60px; }
  .footer .border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important; }
  .footer h3 {
    padding-bottom: 1rem; }
  .footer a {
    color: var(--brand);
    text-decoration: none;
    margin: 0 0px; }
    .footer a:hover {
      color: var(--brand); }
  .footer .vexe_copy {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem; }
  .footer .vexe_copy:hover {
    color: white;
    text-decoration: underline; }
  .footer .social-icons {
    margin-top: 20px; }
    .footer .social-icons a {
      font-size: 1.5rem;
      margin: 0 10px; }

.footer-menu a {
  color: white !important;
  /* Bílé písmo */
  text-decoration: none; }

.footer-menu a:hover {
  color: #f8f9fa !important;
  /* Světlejší odstín při hover */
  text-decoration: underline;
  /* Lehký efekt při hover */ }

.footer-categories a {
  background-color: rgba(255, 255, 255, 0.1);
  margin: 0 5px 5px 0;
  border-radius: 5px;
  display: inline-block; }

.footer-categories a:hover {
  background-color: rgba(255, 255, 255, 0.3); }

@media (max-width: 768px) {
  .navbar-brand img {
    height: 40px; }

  .category-nav .nav-link {
    font-size: 0.9rem;
    padding: 6px 15px; }

  .product-card img {
    height: 180px; }
  .product-card .card-title {
    font-size: 1.1rem; }
  .product-card .card-text {
    font-size: 0.85rem; }

  .cart-icon {
    width: 60px;
    height: 60px; } }
@media (max-width: 576px) {
  .product-card img {
    height: 150px; }
  .product-card .card-title {
    font-size: 1rem; }
  .product-card .card-text {
    font-size: 0.8rem; }

  .btn-add-to-cart {
    font-size: 0.9rem;
    padding: 8px 20px; } }
.actionbar {
  background: white; }

@media (max-width: 767px) {
  .carousel-inner .carousel-item > div {
    display: none; }
    .carousel-inner .carousel-item > div:first-child {
      display: block; } }
.carousel-inner .carousel-item .card {
  border: 0;
  margin: 0 15px;
  border-radius: 6px; }
.carousel-inner .carousel-item .card-img img {
  border-radius: 6px; }
.carousel-inner .carousel-item.active {
  display: flex; }
.carousel-inner .carousel-item-next, .carousel-inner .carousel-item-prev {
  display: flex; }
.carousel-inner .carousel-item-end, .carousel-inner .carousel-item-start {
  transform: translateX(0); }

/* medium and up screens */
@media (min-width: 768px) {
  .carousel-inner .carousel-item-end.active, .carousel-inner .carousel-item-next {
    transform: translateX(25%); }
  .carousel-inner .carousel-item-start.active, .carousel-inner .carousel-item-prev {
    transform: translateX(-25%); } }
.carousel-control-prev {
  left: -15%; }

.carousel-control-next {
  right: -15%; }

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e"); }

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); }

.menu-box {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 15px;
  transition: border-color 0.3s;
  background: #fff;
  height: 100%; }
  .menu-box.active {
    border-color: #b4c312; }
  .menu-box:hover {
    box-shadow: 0 20px 44px #80574d0f; }
    .menu-box:hover .menu-title {
      color: var(--brand); }

.menu-ribbon {
  position: absolute;
  top: 32px;
  left: -1px;
  background-image: url("data:image/svg+xml,%3Csvg width='105' height='24' fill='none' version='1.1' viewBox='0 0 105 24' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3ClinearGradient id='a' x2='104.9' y1='12' y2='12' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%238ea604' offset='0'/%3E%3Cstop stop-color='%239eb904' offset='1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='m0 0h104.03c0.80833 0 1.1718 1.0097 0.54726 1.5213l-11.177 9.1527c-0.83866 0.6868-0.83866 1.9652 0 2.652l11.177 9.1527c0.62457 0.5116 0.26107 1.5213-0.54726 1.5213h-104.03z' fill='url(%23a)' stroke-width='1.0021'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: .2px;
  text-transform: uppercase;
  padding: 8px 32px 4px 16px; }

.menu-backgroundtext {
  position: absolute;
  top: 40px;
  left: 0;
  bottom: 0;
  z-index: 1;
  font-size: 128px;
  line-height: 128px;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
  color: #8ea604;
  opacity: 0.05; }

.menu-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  aspect-ratio: 1/1; }

.menu-title {
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: 10px; }

.menu-desc {
  color: #666;
  font-size: 0.9rem;
  height: 40px;
  overflow: hidden; }

.menu-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 10px; }

.menu-price {
  font-weight: bold;
  color: #000; }

.menu-box-horizontal {
  flex-direction: row; }
  .menu-box-horizontal .menu-image {
    float: left;
    max-width: 120px;
    margin-right: 30px; }

.menu-box-2-2 .menu-image {
  max-width: 327px;
  margin-right: 50px; }
.menu-box-2-2 .menu-title {
  font-size: 2rem; }
.menu-box-2-2 .menu-desc {
  font-size: 1.2rem;
  height: auto; }
.menu-box-2-2 .menu-price {
  display: flex;
  align-items: flex-start;
  padding: 8px 16px;
  background-color: var(--brand);
  border-radius: 4px;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.2rem;
  font-weight: 500; }

.menu-box .menu-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  /* vyplní celý dostupný prostor */ }

.btn-square {
  width: 36px;
  height: 36px;
  padding: 0; }

.custom-align-start {
  padding-left: calc((100vw - 1320px) / 2);
  /* nebo 1140px, 960px – dle šířky containeru */ }

@media (max-width: 1399.98px) {
  .custom-align-start {
    padding-left: calc((100vw - 1140px) / 2); } }
@media (max-width: 1199.98px) {
  .custom-align-start {
    padding-left: calc((100vw - 960px) / 2); } }
@media (max-width: 991.98px) {
  .custom-align-start {
    padding-left: calc((100vw - 720px) / 2); } }
@media (max-width: 767.98px) {
  .custom-align-start {
    padding-left: calc((100vw - 540px) / 2); } }
@media (max-width: 575.98px) {
  .custom-align-start {
    padding-left: 12px; } }
.scrolling-wrapper {
  white-space: nowrap; }

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none; }
  .no-scrollbar::-webkit-scrollbar {
    display: none; }

.scroll-item {
  flex-shrink: 0;
  cursor: pointer;
  white-space: nowrap; }
  .scroll-item.disabled {
    opacity: 0.5;
    cursor: default; }

.ps-align {
  padding-left: calc((100vw - 1320px) / 2);
  padding-right: calc((100vw - 1320px) / 2);
  /* zarovnání na stejný okraj jako container */ }

@media (max-width: 1399.98px) {
  .ps-align {
    padding-left: calc((100vw - 1140px) / 2);
    padding-right: calc((100vw - 1140px) / 2); } }
@media (max-width: 1199.98px) {
  .ps-align {
    padding-left: calc((100vw - 960px) / 2);
    padding-right: calc((100vw - 960px) / 2); } }
@media (max-width: 991.98px) {
  .ps-align {
    padding-left: calc((100vw - 720px) / 2);
    padding-right: calc((100vw - 720px) / 2); } }
@media (max-width: 767.98px) {
  .ps-align {
    padding-left: calc((100vw - 540px) / 2);
    padding-right: calc((100vw - 540px) / 2); } }
@media (max-width: 575.98px) {
  .ps-align {
    padding-left: 12px;
    padding-right: 12px; } }
.googlemap-responsive {
  overflow: hidden;
  position: relative;
  height: 500px; }
  .googlemap-responsive iframe {
    left: 0;
    top: 0;
    height: 500px;
    width: 100%;
    position: absolute; }

.delivery-section {
  padding: 3rem 0; }

.search-container {
  max-width: 500px;
  margin: 0 auto 2rem auto; }

.search-container input {
  border-radius: 0.25rem 0 0 0.25rem; }

.search-container button {
  border-radius: 0 0.25rem 0.25rem 0;
  background-color: #007bff;
  border-color: #007bff; }

.search-container button:hover {
  background-color: #0056b3;
  border-color: #0056b3; }

#result {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 0.25rem;
  display: none; }

.table-delivery {
  background-color: #fff;
  border-radius: 0.25rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); }

.table-delivery th, .table-delivery td {
  padding: 1rem;
  vertical-align: middle; }

.table-delivery th {
  background-color: #f8f9fa; }

/* Zaoblení vnějších rohů tabulky na 5px */
.table-delivery {
  border-radius: 5px;
  overflow: hidden;
  /* Zajistí, že obsah respektuje zaoblení */ }

.table-delivery thead th:first-child {
  border-top-left-radius: 5px; }

.table-delivery thead th:last-child {
  border-top-right-radius: 5px; }

.table-delivery tbody tr:last-child td:first-child {
  border-bottom-left-radius: 5px; }

.table-delivery tbody tr:last-child td:last-child {
  border-bottom-right-radius: 5px; }

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