@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

@media (min-width: 769px) {
  .hide_above_768 {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .hide_below_768 {
    display: none !important;
  }
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
}

html {
  scroll-behavior: smooth;
  --mb-main-color: #f26622;
}

:root {
  --cc-text: black;
  --cc-btn-primary-bg: var(--mb-main-color);
  --cc-btn-primary-hover-bg: var(--mb-main-color);
  --bakery-orange: #f07b1d;
  --bakery-orange-dark: #d96a0a;
  --bakery-ink: #1a1108;
  --bakery-cream: #fff8ee;
  --bakery-dot-color: rgba(0, 0, 0, 0.18);
}

a {
  color: inherit;
  outline: none;
  text-decoration: none;
  display: block;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

* {
  box-sizing: border-box;
}

.container {
  max-width: 1320px;
  width: calc(100% - 80px);
  margin: 0 auto;
}

p {
  margin: 0;
}

img {
  max-width: 100%;
}

/* Header start */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header_outside_wrapper {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: ease-in-out 0.3s;
}

.header_wrapper {
  width: 100%;
  height: 130px;
  display: flex;
  align-items: center;
}

.header_outside_wrapper.header-bg.header-about .header_wrapper {
  height: 130px;
}

.header_logo {
  max-width: 315px;
}

.header_navigation_wrapper {
  padding-left: 10%;
}

.header_navigation_wrapper ul {
  display: flex;
  gap: 50px;
}

.header_navigation_wrapper ul li a {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  color: white;
  position: relative;
  text-decoration: none;
  transition: ease-in-out 0.3s;
}

.header_navigation_wrapper ul li a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: white;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.header_navigation_wrapper ul li a:hover::before {
  transform: scaleX(1);
}

div.header_language_wrapper {
  margin-left: auto;
}

div.header_language_wrapper ul {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

div.header_language_wrapper ul li a {
  width: 34px;
  height: 34px;
  border: 2px solid #c8d0d6;
  background: white;
  font-size: 16px;
  line-height: 19px;
  color: #707070;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.2s;
}

div.header_language_wrapper ul li.wpml-ls-current-language a {
  border: 2px solid var(--mb-main-color);
  background: var(--mb-main-color);
  color: white;
}

div.header_language_wrapper ul li a:hover {
  border: 2px solid var(--mb-main-color);
  background: var(--mb-main-color);
  color: white;
}

.header_language_wrapper .wpml-ls-legacy-list-horizontal {
  padding: 0;
  border: none;
}

.header-bg {
  background: white;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.header-bg .header_navigation_wrapper ul li a {
  color: black;
}

.header-bg .header_navigation_wrapper ul li a::before {
  background-color: black;
}

.header-bg label.hb_label span {
  background: black;
}

.header_logo img {
  height: 105px;
  width: 186px;
}

/* Header end */

.home_slider_block {
  width: 100%;
  height: 720px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.home_slider_text_part {
  padding-top: 244px;
  max-width: 482px;
}

.home_slider_text_part h1 {
  font-size: 66px;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  line-height: 89px;
  margin: 0 0 40px 0;
  color: var(--mb-main-color);
  position: relative;
  left: -200px;
  opacity: 0;
}

.home_slider_text_part p {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: white;
  position: relative;
  left: -300px;
  opacity: 0;
}

.home_slider_text_part p a {
  display: inline-block;
  font-weight: 600;
  color: var(--mb-main-color);
}

.home_slider_text_part p a:hover {
  text-decoration: underline;
}

.home_btn {
  padding: 15px 72px 15px 20px;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: black;
  position: relative;
  background: white;
  margin: 40px 0 0 0;
  border-radius: 5px;
  display: inline-block;
  position: relative;
  bottom: -200px;
  opacity: 0;
}

.home_btn::after {
  content: url("/wp-content/uploads/2022/09/orange-arrow-down.svg");
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}

.home_btn:hover::after {
  -webkit-animation-name: vert-hang;
  animation-name: vert-hang;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}

@keyframes vert-hang {
  0% {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  10% {
    -webkit-transform: translateY(-60%);
    transform: translateY(-60%);
  }

  50% {
    -webkit-transform: translateY(-15%);
    transform: translateY(-15%);
  }

  100% {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.home_slider_block .container {
  display: flex;
  position: relative;
}

.home_slider_image_part {
  padding: 145px 0 0 128px;
  position: relative;
  height: 669px;
  width: 624px;
}

.home_slider_nav {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 12px;
  top: 50%;
  right: 0;
}

.home_slider_box {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
  cursor: pointer;
  height: 26px;
}

.home_slider_box p {
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  color: white;
  transition: ease-in-out 0.4s;
}

.home_slider_box div {
  width: 15px;
  height: 15px;
  border: 1px solid #707070;
  background-color: white;
  border-radius: 50%;
  transition: ease-in-out 0.4s;
}

.sb_active div {
  height: 26px;
  border-radius: 8px;
  border: 1px solid var(--mb-main-color);
  background-color: var(--mb-main-color);
}

.sb_active p {
  color: var(--mb-main-color);
}

.home_produkti_block {
  padding-top: 50px;
  overflow: hidden;
  position: relative;
  background-image: url("/wp-content/uploads/2022/09/mb-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.home_produkti_block h2 {
  font-size: 64px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  line-height: 77px;
  color: var(--mb-main-color);
  margin: 0 0 20px 0;
  text-align: center;
}

.home_produkti_block h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  color: black;
  margin: 0 0 22px 0;
  text-align: center;
}

.home_produkti_wrap {
  background: #ffffff 0% 0% no-repeat padding-box;
  border-radius: 5px;
}

.home_produkti_upper.carousel {
  height: 173px;
  margin: 0;
  display: flex;
}

.product_category_box img {
  width: 80px;
  height: 80px;
}

.home_produkti_upper .product_category_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  width: 146.5px;
  max-width: 146.5px;
  height: 171px;
  padding: 20px 0 0 0;
}

.product_category_box p {
  font-size: 15px;
  font-weight: 600;
  line-height: 16px;
  color: black;
  margin-top: auto;
  padding-bottom: 12px;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  max-width: 94%;
}

.pcb_active {
  border-bottom: 4px solid var(--mb-main-color);
}

.pcb_active p {
  margin-bottom: -4px;
}

.product_category_box:hover:not(.pcb_active) p {
  color: var(--mb-main-color);
}

.home_produkti_lower > div {
  padding: 56px 0 72px 0;
}

.home_produkti_tab {
  height: 540px;
}

.home_produkti_row {
  padding: 0 84px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 84px 20px;
}

.home_produkti_row:nth-child(2) {
  padding-top: 84px;
}

@media (min-width: 1000px) {
  .home_produkti_tab .product_box:nth-child(4),
  .home_produkti_tab .product_box:nth-child(5),
  .home_produkti_tab .product_box:nth-child(6) {
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
}

.product_box {
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: default;
}

.product_box_title {
  font-size: 16px;
  font-weight: 600;
  line-height: 23px;
  color: black;
  margin: 0 0 12px 0;
}

.product_box_price {
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  color: black;
}

.product_box_description {
  font-size: 13px;
  font-weight: 400;
  line-height: 15px;
  color: black;
  margin: 9px 0 0 0;
  max-width: 170px;
}

.product_box_text {
  width: 170px;
}

.product_box_image {
  width: 180px;
  height: 170px;
}

.product_box_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 1600px) {
  .product_box_image {
    flex-shrink: 0;
  }
}

.home_produkti_pagination {
  height: 151px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination_wrap {
  display: flex;
  gap: 2px;
}

.pagination_box {
  width: 28px;
  height: 28px;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  color: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: ease-in-out 0.2s;
}

.pagination_box:hover {
  color: white;
  background: var(--mb-main-color);
}

.pagination_active {
  color: white;
  background: var(--mb-main-color);
}

.home_kafejnicas_block {
  padding: 50px 0;
  background: #f1efe8;
  position: relative;
}

.home_kafejnicas_block .container {
  display: flex;
  gap: 20px;
  height: 532px;
}

.kafejnicas_left {
  background: white;
  border-radius: 5px;
  width: 100%;
  height: 100%;
  max-width: 385px;
}

.kafejnicas_l_upper {
  height: 89px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e4e7ea;
}

.kafejnicas_l_upper h3 {
  font-size: 34px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  line-height: 41px;
  color: var(--mb-main-color);
  padding-left: 24px;
  margin: 0;
}

.kafejnicas_l_lower {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kafejnicas_adress {
  font-weight: 500;
  line-height: 19px;
  color: black;
  transition: ease-in-out 0.2s;
  max-width: initial;
}

.kb_active .kafejnicas_adress {
  color: var(--mb-main-color);
}

.kafejnicas_box_right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 7px;
  width: 106px;
}

.kafejnicas_light {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0ab739;
}

.kafejnicas_work_time {
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  color: black;
}

.kafejnicas_box {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.kafejnicas_box:hover .kafejnicas_adress {
  color: var(--mb-main-color);
}

.kafejnicas_right {
  background: white;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.kafejnica_left_content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px 10px 24px 24px;
  height: 310px;
}

.kafejnica_info_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.opening-hours .calender_sub_title {
  /* display: block; */
}

.opening-hours .calender_main_title {
  display: block;
  margin: 10px 0 0px;
  font-weight: bold;
}
.opening-hours .calender_main_title + br {
  display: none;
}
/* .kafejnica_info_wrap:last-of-type {
    margin-top: auto;
} */
.kafejnica_left h6 {
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  color: black;
  margin: 0;
}

.kafejnica_info,
.kafejnica_info_value {
  font-size: 17px;
  font-weight: 500;
  line-height: 22px;
}

.kafejnica_info {
  color: #8b8c8e;
}

.kafejnica_info_value {
  color: var(--mb-main-color);
  font-weight: 600;
}

.kafejnica_location {
  display: flex;
  gap: 37px;
}

.kafejnica_location img {
  display: block;
  height: auto;
}

.kafejnica_location a:nth-child(1) img {
  width: 101px;
}

.kafejnica_location a:nth-child(2) img {
  width: 109px;
}

.kafejnica_left_image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kafejnica_left_image {
  height: 280px;
  width: 100%;
}

.kafejnica_left {
  width: 450px;
}

.kafejnica_right {
  width: 100%;
  max-width: 465px;
}

.kafejnica_right #map {
  width: 100%;
  height: 100%;
  position: absolute !important;
  max-width: 525px;
  z-index: 1000000;
}

.kafejnicas_right > div {
  display: flex;
  /* position: absolute; */
  top: 0;
  left: 0;
  width: 915px;
  background: white;
}

.kb_closed .kafejnicas_adress,
.kb_closed .kafejnicas_work_time {
  opacity: 0.5;
}

.kb_closed .kafejnicas_light {
  background: #b70a0a;
}

.home_jaunumu_subscribe {
  height: 170px;
  width: 100%;
  background: var(--mb-main-color);
  display: flex;
  align-items: center;
  position: relative;
}

.home_jaunumu_subscribe .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.js-1,
.js-2 {
  color: white;
}

.js-1 {
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.js-2 {
  font-size: 44px;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  line-height: 53px;
}

.jaunumu_subscribe_right {
  display: flex;
  gap: 10px;
}

.jaunumu_subscribe_right input {
  height: 50px;
  width: 272px;
  border-radius: 5px;
  background: white;
  border: none;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  color: #909193;
  outline: none;
}

.jaunumu_subscribe_right .jaunumu-save {
  height: 50px;
  width: auto;
  border-radius: 5px;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  color: white;
  background: black;
  border: none;
  outline: none;
  cursor: pointer;
  transition: ease-in-out 0.2s;
}

.jaunumu_subscribe_right .jaunumu-save::placeholder {
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  color: white;
}

.jaunumu_subscribe_right .jaunumu-save:hover {
  background: rgba(0, 0, 0, 0.8);
}

.footer_wrapper {
  height: 517px;
  background: black;
  padding: 55px 0 0 0;
  position: relative;
}

.footer_wrapper .container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.footer_contact_btn {
  border-radius: 5px;
  border: 1.5px solid #47484a;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: #909193;
  padding: 16px 20px;
  margin: 50px 0;
  transition: 0.2s ease-in-out;
  width: fit-content;
}

.footer_contact_btn:hover {
  background: #47484a;
}

.footer_social_wrap {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.footer_social_wrap img {
  width: 24px;
  height: 24px;
  transition: 0.2s ease-in-out;
}

.footer_social_wrap img:hover {
  opacity: 0.7;
}

.footer_wrapper .footer_upper h6 {
  font-size: 34px;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  line-height: 41px;
  color: white;
  margin: 0 0 30px 0;
}

.footer_wrapper .footer_upper p {
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  color: white;
}

.footer_upper {
  display: flex;
}

.footer_column_1 {
  width: 100%;
  max-width: 270px;
}

.footer_column_2 {
  width: 100%;
  max-width: 386px;
}

.footer_column_3 {
  width: 100%;
  max-width: 325px;
}

.footer_column_4 {
  width: 100%;
  max-width: 335px;
  margin-left: auto;
}

.footer_contact_box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
}

.footer_contact_box img {
  width: 24px;
  height: 24px;
}

.footer_contact_box p {
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  color: white;
}

.footer_wrapper .footer_upper .fc4-1 {
  text-align: center;
  font-size: 12px;
}

.footer_wrapper .footer_upper .fc4-2 {
  text-align: center;
  margin-bottom: 8px;
  max-width: 335px;
  font-weight: 400;
  font-size: 10px;
  line-height: 17px;
}

.footer_column_4 img {
  background: white;
  margin: 0 auto;
  max-width: 335px;
  padding: 4px;
}

.footer_lower {
  height: 79px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.footer_lower p {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  color: white;
}

.footer_lower p a {
  color: var(--mb-main-color);
  font-weight: 700;
  display: inline-block;
}

.footer_lower p a:hover {
  text-decoration: underline;
}

.footer_lower_t2 {
  text-align: right;
}

.footer_middle {
  display: flex;
  width: 100%;
}

.home_slider_image_part img {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 496px;
  max-height: 525px;
}

.home_produkti_upper .carousel__dots {
  display: none;
}

.home_produkti_block .carousel__nav .carousel__button.is-prev {
  left: -50px;
}

.home_produkti_block .carousel__nav .carousel__button.is-next {
  right: -50px;
}

label.hb_label {
  display: flex;
  flex-direction: column;
  width: 35px;
  cursor: pointer;
  margin-left: auto;
}

label.hb_label span {
  background: black;
  border-radius: 15px;
  height: 3px;
  margin: 5px 0;
  transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.hb_label span:nth-of-type(1) {
  width: 100%;
}

.hb_label span:nth-of-type(2) {
  width: 100%;
}

.hb_label span:nth-of-type(3) {
  width: 100%;
}

.hb_label input[type="checkbox"] {
  display: none;
}

.hb_label input[type="checkbox"]:checked ~ span:nth-of-type(1) {
  width: 50%;
  transform-origin: bottom;
  transform: rotatez(45deg) translate(7px, 2px);
}

.hb_label input[type="checkbox"]:checked ~ span:nth-of-type(2) {
  width: 100%;
  transform-origin: top;
  transform: rotatez(-45deg);
}

.hb_label input[type="checkbox"]:checked ~ span:nth-of-type(3) {
  transform-origin: bottom;
  width: 50%;
  transform: translate(15px, -8px) rotatez(45deg);
}

.header_menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: white;
  z-index: 10000;
  padding: 115px 70px 100px 70px;
}

.slide-in-right {
  -webkit-animation: slide-in-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    both;
  animation: slide-in-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes slide-in-right {
  0% {
    right: -1500px;
    opacity: 0;
  }

  100% {
    right: 0px;
    opacity: 1;
  }
}

@keyframes slide-in-right {
  0% {
    right: -1500px;
    opacity: 0;
  }

  100% {
    right: 0;
    opacity: 1;
  }
}

.slide-out-right {
  -webkit-animation: slide-out-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    both;
  animation: slide-out-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes slide-out-right {
  0% {
    right: 0px;
    opacity: 1;
  }

  100% {
    right: -1500px;
    opacity: 0;
  }
}

@keyframes slide-out-right {
  0% {
    right: 0;
    opacity: 1;
  }

  100% {
    right: -1500px;
    opacity: 0;
  }
}

@media (min-width: 1200px) {
  #site-navigation {
    display: none;
  }
}

#site-navigation {
  opacity: 0;
}

nav.main-navigation.header_menu.hidden {
  z-index: 2;
  display: none;
}

.mobile_header_close {
  position: absolute;
  top: 20px;
  right: 45px;
  cursor: pointer;
}

.mobile_header_close img {
  width: 30px;
  height: 30px;
}

.mobile_header_navigation_wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
}

.mobile_header_navigation_wrapper ul li a {
  text-decoration: none;
  color: black;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
}

.kafejnicas_right #map {
  position: absolute;
  top: 0;
  left: initial;
  right: 0;
  width: 465px;
  height: 532px;
  height: 100%;
}

.hint {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

/* Icon */
.hint .info-icon {
  display: block;
  opacity: 0.85;
  transition: opacity 0.2s ease;
  margin-left: 5px;
}

.hint:hover .info-icon {
  opacity: 1;
}

/* Tooltip wrapper */
.hint-wrapper {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  z-index: 999;
  width: 200px;
}

/* Tooltip box */
.hint .hint-content {
  background: #fff; /* dark slate */
  color: #111;
  font-size: 12px;
  font-weight: normal;
  display: block;
  line-height: 1.4;
  padding: 10px 12px;
  border-radius: 8px;
  max-width: 240px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  margin: 0 !important;
}

/* Tooltip arrow */
.hint-wrapper::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

/* Hover state */
.hint:hover .hint-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.hint:before {
  content: "";
  /* inset: -35px; */
  display: inline-block;
  position: absolute;
}

@media (max-width: 767px) {
  .hint:hover .hint-wrapper {
    transform: translateX(0%) translateY(0);
  }
  .hint-wrapper {
    left: auto;
    right: -10px;
  }
  .hint-wrapper::after {
    left: auto;
    right: 6px;
  }
}

.wolt-proxy-wrapper > label {
  display: flex !important;
  align-items: center;
  gap: 5px;
}
@media (max-width: 768px) {
  .wolt-proxy-wrapper > label {
    justify-content: flex-end;
  }
}
.error-404-title,
.error-404-text {
  text-align: center;
}

.error-404-title {
  font-size: 21px;
  line-height: 36px;
  margin: 200px 0 12px 0;
}

.error-404-text {
  font-size: 60px;
  font-weight: 600;
  display: block;
  margin-bottom: 30px;
  color: black;
}

.error-404-btn {
  background: var(--mb-main-color);
  height: 46px;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 24px;
  font-size: 18px;
  color: white;
  transition: ease-in-out 0.18s;
  margin: 0 auto;
  text-decoration: none;
  margin-bottom: 150px;
}

.error-404-btn:hover {
  background: #cc561b;
}

.error-container {
  padding: 0 30px;
}

.error404 .page-header {
  position: relative;
  margin-bottom: 20px;
  font-size: clamp(32px, 4.2vw, 82px);
  margin-top: 250px;
}

.error404 .page-header:before {
  content: "404";
  position: absolute;
  top: 50%;
  left: 50%;
  color: #f1f1f1;
  font-weight: 700;
  font-size: 5em;
  line-height: 1;
  z-index: -1;
  transform: translate(-50%, -50%);
}

.error404 .page-header h3 {
  position: relative;
  padding: 1.5em 0;
  text-align: center;
  text-transform: uppercase;
  font-weight: 900;
  font-size: inherit;
  line-height: 1;
  color: var(--mb-main-color);
  margin-bottom: 20px;
}

.error404 .page-content {
  text-align: center;
  line-height: 1.1;
}

.error404 .page-content .error-404-btn {
  margin-top: 30px;
}

@media (max-width: 991px) {
  .error404 .page-header {
    margin-top: 150px;
  }
  .error-404-btn {
    margin-bottom: 80px;
  }
  .error404 .page-content h1 {
    font-size: 1.6rem;
  }
}

.jaunumu-success p {
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  color: white;
}

.page-main {
  margin: 130px 0 70px 0;
}

.par_mums_wrapper p {
  font-size: 17px;
  line-height: 26px;
  max-width: 800px;
  margin: 12px 0;
}

.grid:after {
  content: "";
  display: block;
  clear: both;
}

.grid-sizer,
.grid-item {
  width: 32.333%;
  padding-right: 5px;
  padding-left: 5px;
  padding-top: 10px;
}

.grid-item {
  float: left;
}

.grid-item img {
  display: block;
  max-width: 100%;
  width: 100%;
}

.grid-item img {
  cursor: pointer;
}

.gallery_title {
  padding-top: 100px;
  font-size: 48px;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  color: var(--mb-main-color);
  margin: 0 0 20px 0;
}

.par_mums_banner {
  margin-top: 130px;
  height: 195px;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.par_mums_banner .container {
  position: relative;
  height: 100%;
}

.page-main.about-main {
  margin: 0;
}

.par_mums_title {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  margin: 0;
  color: white;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-size: 48px;
}

.par_mums_b {
  display: flex;
  gap: 160px;
  flex-wrap: wrap;
}

.par_mums_b_item {
  width: 100%;
  max-width: 320px;
  position: relative;
}

.par_mums_b_item:first-child {
  max-width: 360px;
}

.par_mums_block {
  background: #f1efe8;
  padding: 65px 0 110px 0;
}

.par_mums_block h1 {
  font-size: 48px;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  color: var(--mb-main-color);
  margin: 0 0 55px 0;
}

.par_mums_block h3 {
  font-size: 30px;
  line-height: 32px;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  color: var(--mb-main-color);
  margin: -8px 0 24px 0;
}

.par_mums_block p {
  font-size: 17px;
  font-weight: 600;
  line-height: 30px;
  color: black;
}

.par_mums_b_item img {
  position: absolute;
  left: -9px;
  top: 1px;
  transform: translateX(-50%) translateY(-50%);
}

.page_part {
  background-image: url("/wp-content/uploads/2022/09/mb-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.header-offset {
  position: absolute;
  top: -190px;
  width: 0;
  height: 0;
}

.gallery {
  margin-bottom: 0;
  padding-bottom: 124px;
}

.page-info-bar {
  background-color: var(--mb-main-color);
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  width: 100%;
  top: 130px;
  z-index: 100;
  transition: ease-in-out 0.2s;
  padding: 10px 20px;
}

.page-info-bar p {
  color: white;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  transition: ease-in-out 0.2s;
}

.page-info-bar.info-bar-expanded {
  height: auto;
}

.page-info-bar.info-bar-expanded p {
  max-width: 1100px;
}

html[lang="de-DE"] .page-info-bar:not(.info-bar-expanded) {
  height: auto;
}

@media (min-width: 768px) {
  .home_produkti_wrap .carousel__viewport::before,
  .home_produkti_wrap .carousel__viewport::after {
    content: "";
    position: absolute;
    height: 171px;
    width: 146.5px;
    background: white;
    opacity: 0.5;
    top: 0;
    left: 0;
    z-index: 10;
    box-shadow: 0 0 12px 12px white;
    pointer-events: none;
  }

  .home_produkti_wrap .carousel__viewport::after {
    left: initial;
    right: 0;
  }
}

.footer_logo {
  width: 192px;
  height: 262px;
}

.kafejnica_special_1 {
  color: var(--mb-main-color);
  font-size: 18px;
  font-weight: 600;
}

.p_sm_text {
  font-size: 12px;
  display: inline;
}

.flt1 {
  text-align: center;
}

@media (min-width: 1300px) {
  html[lang="ru-RU"] .home_slider_text_part h1 {
    font-size: 60px;
    line-height: 78px;
  }

  html[lang="de-DE"] .home_slider_text_part h1 {
    font-size: 70px;
    line-height: 86px;
  }
}

@media (min-width: 1200px) {
  .product_box:nth-child(1),
  .product_box:nth-child(2),
  .product_box:nth-child(3) {
    margin-left: auto;
  }

  .product_box:nth-child(4),
  .product_box:nth-child(5),
  .product_box:nth-child(6) {
    margin-right: auto;
  }

  .product_box_text {
    width: auto;
    max-width: 240px;
  }

  .product_box_image
    img[data-src="/wp-content/uploads/2022/09/produkts-2.png"] {
    background-color: red;
  }

  .product_box {
    gap: 5px;
  }
}

.page-main-content {
  padding: 60px 0 40px 0;
}

.page-main-content p {
  margin: 1rem 0;
  line-height: 25px;
}

.page-main-content a {
  display: inline-block;
}

.page-main-content ul {
  list-style: initial;
  padding: 0 0 0 25px;
}

.jaunumu_subscribe_right .jaunumu_checkbox {
  width: auto;
  height: auto;
  opacity: 0;
  position: absolute;
  left: 4px;
}

.jaunumi_check_wrap {
  display: flex;
  align-items: center;
  height: 43px;
  gap: 10px;
  position: relative;
}

.jaunumi_check_wrap a {
  display: inline-block;
  text-decoration: underline;
}

.jaunumi_check_wrap p {
  font-weight: 500;
  line-height: 21px;
  color: white;
}

.checkmark {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background-color: #eee;
  position: relative;
}

.jaunumi_check_wrap .jaunumu_checkbox:checked ~ label .checkmark {
  background-color: #2196f3;
}

.jaunumi_check_wrap .jaunumu_checkbox:checked ~ label .checkmark:after {
  display: block;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkmark:after {
  left: 7px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.jaunumi_check_wrap label:hover .checkmark {
  background-color: #ccc;
}

.jaunumi_check_wrap label {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (min-width: 1200px) {
  .header_logo_mobile {
    display: none;
  }
}

@media (max-width: 1199px) {
  .header-bg .header_logo_desktop {
    display: none;
  }

  .header_outside_wrapper:not(.header-bg) .header_logo_mobile {
    display: none;
  }
}

.home_kafejnicas_block .container {
  height: auto;
  min-height: 560px;
}

.kafejnicas_left,
.kafejnicas_right {
  height: auto;
}

.kafejnica_left_content {
  height: auto;
}

.kafejnica_ad_text p {
  font-size: 17px;
  font-weight: 500;
  line-height: 22px;
  color: #8b8c8e;
  margin: 0 0 14px 0;
}

.kafejnica_ad_text p strong,
.kafejnica_ad_text p b {
  color: var(--mb-main-color);
  font-weight: 600;
}

.kafejnica_ad_text h6 {
  margin: 10px 0 10px 0;
}

.kafejnica_ad_text h6 {
  font-weight: 700;
}

.kafejnica_left_content td {
  color: #8b8c8e;
  font-size: 17px;
  line-height: 1.3em;
  font-weight: 500;
  padding: 2px 5px;
}

.kafejnica_left_content td strong {
  color: var(--mb-main-color);
  font-weight: 600;
}

@media (max-width: 500px) {
  .kafejnica_left_content td {
    font-size: 15px;
  }
}

#popup-content,
#popup-content--clone {
  border-radius: 10px;
  max-width: 770px;
  width: 100%;
  padding: 0;
  display: flex;
  justify-content: space-between;
  gap: 0;
  flex-wrap: initial;
  flex-direction: column;
  background: white;
}

.popup_upper {
  height: 352px;
  width: 100%;
  background: #f26522;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  padding: 96px 58px 20px 58px;
  position: relative;
}

.popup_element_1 {
  display: block;
  position: absolute;
  bottom: 0;
  right: 38px;
}

.popup_element_2 {
  left: 25px;
  top: -38px;
  position: absolute;
}

.popup_upper p:nth-child(1) {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px 0;
  max-width: 250px;
  position: relative;
  z-index: 6;
}

.popup_upper p:nth-child(2) {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  position: relative;
  z-index: 6;
}

.popup_lower {
  padding: 54px 56px 12px 56px;
  width: 100%;
}

.popup_lower table {
  width: 100%;
  border-spacing: 0;
  margin: 0;
  border: initial;
  border-collapse: collapse;
  margin-bottom: 40px;
}

.popup_lower table thead th {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2em;
  text-align: center;
  color: black;
}

@media (min-width: 1200px) {
  .popup_lower table thead th {
    padding-left: 28px;
    padding-right: 28px;
  }
}

.popup_lower table thead tr th {
  padding-bottom: 20px;
  border-bottom: 1px solid #c9c9c9;
}

.popup_lower table tbody tr:nth-child(1) td {
  padding-top: 20px;
}

.popup_lower table tbody tr {
  font-size: 16px;
  text-align: center;
  color: black;
}

.popup_lower table tbody td:nth-child(1) {
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .popup_upper {
    padding: 52px 25px 16px 25px;
    height: auto;
  }

  .popup_upper p:nth-child(1) {
    font-size: 22px;
    margin: 0 0 18px 0;
    max-width: 165px;
  }

  .popup_upper p:nth-child(2) {
    font-size: 18px;
  }

  .popup_element_1 {
    width: 190px;
    height: 174px;
    right: 16px;
    z-index: 1;
  }

  .popup_element_2 {
    width: 94px;
    height: 47px;
    left: 25px;
    top: -17px;
  }
}

.pmt_content {
  display: flex;
  flex-direction: column;
}

.pmt_row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  margin: 0;
}

.pmt_row:not(:last-of-type) {
  border-bottom: 1px solid #c9c9c9;
}

.pmt_row p {
  font-size: 16px;
  color: black;
  margin: 0;
}

.pmt_row p:nth-child(1) {
  font-weight: 600;
}

.pmt_row p:nth-child(2) {
  text-align: right;
}

.pmt_navigation {
  display: flex;
  gap: 10px;
  padding: 20px 0 32px 0;
  margin: 20px 0 0 0;

  overflow: auto;
  width: calc(100% + 50px);
  position: relative;
  left: -25px;
  padding-left: 25px;
  padding-right: 25px;
}

.pmt_navigation button {
  background: #efefef;
  border-radius: 23px;
  padding: 12px 16px;
  margin: 0;
  border: initial;
  flex-shrink: 0;

  font-family: inherit;
  font-weight: 500;
  font-size: 15px;
  color: black;
  line-height: 1.25em;
}

.pmt_navigation button.active {
  background: #f26522;
  font-weight: 700;
  color: white;
}

.pmt_controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
  margin: 0 0 44px 0;
}

.pmt_controls .pmt_name {
  font-weight: 500;
  font-size: 18px;
  color: #000000;
  text-align: center;
  margin: 0;
}

.pmt_prev,
.pmt_next {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: initial;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  background-position: center;
  outline: 2px solid transparent;
  border: initial;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.25s;
}

.pmt_prev {
  background-image: url("../../images/mb_2024_ligo_left_arrow.svg");
}

.pmt_next {
  background-image: url("../../images/mb_2024_ligo_right_arrow.svg");
}

.pmt_prev:focus-visible,
.pmt_next:focus-visible {
  outline: 2px solid black;
}

.pmt_prev.disabled,
.pmt_next.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .popup_lower {
    padding: 38px 25px 0 25px;
  }
}

#view_holiday_worktime_btn {
  background: var(--mb-main-color);
  border: initial;
  border-radius: 5px;
  padding: 8px 14px;
  cursor: pointer;
  width: fit-content;
  color: white;
  font-weight: 500;
  font-family: inherit;

  display: flex;
  align-items: center;
  gap: 6px;
}

#view_holiday_worktime_btn img {
  display: block;
  width: 20px;
  height: 20px;
  filter: invert(1);
}

@media (max-width: 768px) {
  #view_holiday_worktime_btn {
    font-size: 14px;
  }

  .home_kafejnicas_block .container {
    min-height: initial !important;
  }
}

.kafejnica_left .kafejnica_holiday_title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2em;
  color: var(--mb-main-color);
  margin: 8px 0 0 0;
}

.tortes_tab_left {
  width: 100%;
  max-width: 910px;
  display: grid;
  grid-template-columns: 225px 210px 365px;
  gap: 32px 40px;
}

.tortes_custom_tab.home_produkti_tab {
  height: auto;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.tortes_custom_tab.home_produkti_tab .product_box {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: initial;
  margin: 0;
  width: 100%;
}

.tortes_custom_tab.home_produkti_tab .product_box .product_box_title {
  display: flex;
  align-items: baseline;
  gap: 1px 16px;
  margin: 0 0 5px 0;
  flex-wrap: wrap;
}

.tortes_custom_tab.home_produkti_tab .product_box .product_box_title span {
  display: flex;
  align-items: center;
  height: 25px;
  border-radius: 13px;
  background: #f26522;
  padding: 5px 10px;
  margin: 0;

  font-weight: 600;
  font-size: 12px;
  color: white;
}

.tortes_custom_tab.home_produkti_tab .product_box .product_box_price {
  font-weight: 500;
  font-size: 15px;
  margin: 0 0 10px 0;
}

.tortes_custom_tab.home_produkti_tab .product_box .product_box_description {
  margin: 0;
}

.tortes_tab_right {
  width: 100%;
  max-width: 406px;
  background: #f9f9f9;
  border-radius: 10px;
  padding: 46px 42px 50px 42px;
  box-shadow: rgba(0, 0, 0, 0.1) 6px 10px 15px;
  position: relative;
  z-index: 5;
  overflow: hidden;
}

.tortes_tab_right::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -72px;
  right: -10px;
  width: 250px;
  height: 284px;
  background-image: url("../../images/tortes_bg_element.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.tortes_tab_right p {
  margin: 0 0 16px 0;
  font-size: 16px;
  color: black;
}

.tortes_text_1,
.tortes_text_2,
.tortes_text_3 {
  margin: 0 0 16px 0;
  font-size: 16px;
}

p.tortes_text_1 {
  font-weight: 600;
  font-size: 18px;
  color: #f26522;
}

.tortes_text_3 {
  font-weight: 600;
}

.tortes_text_4 {
  font-size: 18px;
}

@media (max-width: 1400px) {
  .tortes_custom_tab.home_produkti_tab {
    flex-direction: column;
    gap: 30px;
  }

  .tortes_tab_left {
    max-width: initial;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1000px) {
  .tortes_tab_left {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .tortes_tab_left {
    gap: 0;
  }

  .tortes_custom_tab.home_produkti_tab .product_box {
    padding: 22px 2px;
  }

  .tortes_custom_tab.home_produkti_tab .product_box:not(:last-child) {
    border-bottom: 1px solid #e1e1e1;
  }

  .tortes_tab_right {
    max-width: initial;
    padding: 52px 30px;
  }
}

@media (max-width: 600px) {
  .tortes_tab_left {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Menu Grid Design 29_Dec_25 */

.product-box-inner {
  width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.3);
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
}

.product-box-inner .product_box_image {
  width: 100%;
  max-width: 100%;
  position: relative;
  height: 280px;
  background-color: #f1efe8;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.5rem 1.5rem 0 0;
  overflow: hidden;
}

.product-box-inner .product_box_image img {
  mix-blend-mode: multiply;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.product-box-inner .qty-wrap {
  border: 1px solid #ada9a9;
  border-radius: 5px;
  margin-bottom: 8px;
  display: flex;
  width: 105px;
}

.product-box-inner .qty-wrap button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  width: 30px;
}

.product-box-inner .qty-wrap .qty {
  border: none;
  text-align: center;
  width: calc(100% - 60px);
  appearance: none;
  height: 36px;
  outline: none !important;
}

.product-box-inner
  .qty-wrap
  input.qty[type="number"]::-webkit-outer-spin-button,
.product-box-inner
  .qty-wrap
  input.qty[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-box-inner .qty-wrap input.qty[type="number"] {
  -moz-appearance: textfield;
}

.product-box-inner .product_box_buttons {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
}

.product_box_buttons .out-of-stock {
  color: #b70a0a;
}

.qty-error {
  margin-bottom: 10px;
  line-height: 1.2;
}

.view_cart_btn button {
  background-color: #000;
  border: none;
  color: #fff;
  padding: 6px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  font-family: "Montserrat";
  font-size: 14px;
}

.view_cart_btn button:hover {
  background-color: rgb(0 0 0 / 85%);
}

.product-cats-tags {
  position: absolute;
  top: 0;
  left: 0;
  top: 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 5px;
  padding: 12px;
  font-size: 14px;
}

.product-cats-tags > div {
  display: inline-block;
  padding: 3px 11px;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
}

.product-box-inner .product_box_text {
  width: 100%;
  max-width: 100%;
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-other-details {
  position: relative;
  padding: 35px 25px;
  border-radius: 10px;
  max-width: 700px;
  max-height: calc(100vh - 150px);
  overflow-y: auto;
}

.product-other-details > div:not(:first-child) {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f2662226;
}

.product-other-details .product_box_description {
  font-size: inherit;
  color: inherit;
  line-height: inherit;
  max-width: 100%;
}

.product-other-details h4 {
  margin-top: 0;
  margin-bottom: 8px;
  color: #000000;
}

.product-other-details .mfp-close {
  background-color: var(--mb-main-color);
  border-radius: 100%;
  color: #fff;
  right: 5px;
  top: 5px;
  width: 32px;
  height: 32px;
  line-height: 34px;
}

.product-other-details ul {
  list-style: unset;
}

.product-other-details ul,
.product-other-details ol {
  padding-left: 20px;
  margin: 10px 0;
}

.mfp-auto-cursor .mfp-content {
  margin: 50px auto;
}

/* Header Cart CSS */

.cart-icon a.my-cart-link {
  display: flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: var(--mb-main-color);
  color: #fff;
  position: relative;
}

.cart-icon {
  margin-left: 50px;
}

.cart-icon span.my-cart-icon {
  filter: invert(1) brightness(1);
  display: flex;
  width: 20px;
}

.cart-icon span.my-cart-count {
  position: absolute;
  width: 17px;
  height: 17px;
  background: var(--wc-content-bg);
  border-radius: 100%;
  color: #000;
  font-size: 9px;
  line-height: 17px;
  text-align: center;
  top: 6px;
  right: 8px;
}

.cart-icon span.my-cart-icon img {
  transform: scale(1.3);
}

@media (max-width: 1200px) {
  .cart-icon {
    margin-left: auto;
  }

  .cart-icon ~ label.hb_label {
    margin-left: 20px;
  }
}

@media (max-width: 500px) {
  .product-box-inner .product_box_image {
    height: 200px;
  }

  body .branch-tabbing .home_produkti_row {
    gap: 30px 0;
  }

  body .branch-tabbing .home_produkti_row {
    padding: 0 10px;
  }
}

@media (min-width: 1001px) and (max-width: 1200px) {
  .home_produkti_block .branch-tabbing .home_produkti_row .product_box {
    width: 50%;
  }
}

.page_video_popup {
  position: fixed;
  z-index: 110;
  right: 40px;
  bottom: 40px;
  width: 390px;
  height: auto;
}

#page_video_container {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

#page_video_popup_close {
  border: initial;
  border-radius: 50%;
  background: white;
  padding: 0;
  margin: 0;
  width: 24px;
  height: 24px;
  background-image: url("../../images/x-solid.svg");
  background-repeat: no-repeat;
  background-size: 12px 12px;
  background-position: center;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  cursor: pointer;

  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

@media (max-width: 1400px) {
  .page_video_popup {
    width: 250px;
  }
}

@media (max-width: 320px) {
  .page_video_popup {
    display: none;
  }
}

#page_video_prev,
#page_video_next {
  width: 38px;
  height: 38px;

  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  border: initial;
  display: block;
  background: initial;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: center;
}

#page_video_prev {
  background-image: url("../../images/chevron-left.svg");
  left: -40px;
  right: initial;
}

#page_video_next {
  background-image: url("../../images/chevron-right.svg");
  left: initial;
  right: -40px;
}
.calender_sub_title {
  color: #8b8c8e;
}
.calender_value {
  color: var(--mb-main-color);
}
.kafejnica_info {
  color: var(--mb-main-color);
  font-weight: 700;
}

.kafejnica_location {
  gap: 15px;
}
.kafejnica_location > a {
  color: var(--mb-main-color);
  font-weight: 600;
}
.kafejnica_location a:nth-child(1) img {
  width: 80px;
}
.kafejnica_location a:nth-child(2) img {
  width: 100px;
}

/* ── Outer section wrapper ── */
.bakery-order-section {
  position: relative;
  width: 100%;
  padding-inline: 2rem;
  overflow: hidden;
  background: var(--mb-main-color);
  background: linear-gradient(235deg, #e8650a 0%, #f07b1d 55%, #f98c2a 100%);
}

/* dot-grid texture */
.bakery-order-section::before {
  /* content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    var(--bakery-dot-color) 1px,
    transparent 1px
  );
  background-size: 18px 18px;
  pointer-events: none;
  z-index: 0; */
}

/* ── Brand header ── */
.bakery-brand-header {
  position: relative;
  z-index: 1;
  padding: 40px 32px 14px;
  display: flex;
  align-items: center;
  gap: 10px;

  border-bottom: 4px dotted var(--bakery-ink);
}

.bakery-brand-logo {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.bakery-brand-name {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--bakery-ink);
  text-transform: lowercase;
}

/* ── Headline row ── */
.bakery-headline-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 61% 39%;
  align-items: center;
  gap: 15px;
  padding-block: 5px;
  border-top: 4px dotted var(--bakery-ink);
  border-bottom: 4px dotted var(--bakery-ink);
}

.bakery-order-title {
  margin: 0;
  font-size: clamp(52px, 9vw, 79px);
  line-height: 1;
  color: var(--bakery-ink);
  padding: 20px 10px 10px 15px;
  border-right: 4px dotted var(--bakery-ink);
}

.bakery-order-subtitle {
  font-size: clamp(28px, 4.5vw, 48px);
  color: #f59e2d;
  font-weight: 600;
  line-height: 1;
}

/* ── Two-column content area ── */
.bakery-content-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 61% 39%;
  min-height: 340px;
  padding-block: 5px;
  border-bottom: 4px dotted var(--bakery-ink);
}

/* ── Map panel ── */
.bakery-map-panel {
  padding: 5px 10px 5px 0px;
  position: relative;
  border-right: 4px dotted var(--bakery-ink);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bakery-map-canvas {
  position: relative;
  width: 100%;
  /* max-width: 280px; */
  height: 100%;
}
.bakery-order-section #bakery-map {
  height: 100%;
}

/* ── Address list panel ── */
.bakery-address-panel {
  padding: 0px 0px 0px 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bakery-address-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0 14px 15px;
  border-bottom: 4px dotted var(--bakery-ink) !important;
  cursor: pointer;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

/* slide-in hover fill */
.bakery-address-row::after {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.06);
  transition: left 0.22s ease;
}

.bakery-address-row:hover::after {
  left: 0;
}
.bakery-address-row.bekery-active::after {
  left: 0;
}
.bakery-address-row:last-child {
  border-bottom: none !important;
}

.bakery-address-street {
  font-size: clamp(20px, 1.9vw, 22px);
  font-weight: 600;
  color: var(--bakery-ink);
  letter-spacing: 0.01em;
}

.bakery-address-arrow {
  margin-left: auto;
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity 0.15s,
    transform 0.15s;
  font-size: 14px;
  color: var(--bakery-ink);
}

.bakery-address-row:hover .bakery-address-arrow {
  opacity: 0.6;
  transform: translateX(0);
}

.bakery-address-row.bekery-active .bakery-address-arrow {
  opacity: 0.6;
  transform: translateX(0);
}

.bakery-order-subtitle.show-in-mobile {
  display: none;
}
/* ── Responsive ── */
@media (max-width: 600px) {
  .bakery-content-grid {
    grid-template-columns: 1fr;
  }
  .bakery-map-panel {
  }
  .bakery-order-subtitle {
    display: none;
  }
}
.page-id-7102 .header_outside_wrapper,
.page-id-7162 .header_outside_wrapper,
.page-id-7163 .header_outside_wrapper {
  position: fixed;
  background: white;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.page-id-7102 .header_outside_wrapper.header-bg,
.page-id-7162 .header_outside_wrapper.header-bg,
.page-id-7163 .header_outside_wrapper.header-bg {
  position: sticky;
}
.page-id-7102 .header_navigation_wrapper ul li a,
.page-id-7162 .header_navigation_wrapper ul li a,
.page-id-7163 .header_navigation_wrapper ul li a {
  color: black;
}
/*.page-info-bar {
  top: 0;
} */

/* Branch Tooltip Card */
.tooltip-card {
  width: 390px;
  display: flex;
  background: white;
  border-radius: 12px;
  overflow: hidden;
}

/* Image Side */
.tooltip-image {
  width: 160px;
  height: 100%;
  min-height: 160px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Text Side */
.tooltip-text {
  flex: 1;
  padding: 0px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
}

.tooltip-title {
  margin: 0 0 8px 0;
  font-size: 19px;
  color: #222;
}

.tooltip-address {
  margin: 0 0 12px 0;
  color: #555;
  line-height: 1.4;
}

/* Links Row */
.tooltip-links {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.tooltip-link {
  text-decoration: none;
}
.tooltip-link img {
  width: 80px;
}
.tooltip-link:hover {
  color: #000;
}

/* Phone */
.tooltip-phone {
  color: var(--mb-main-color);
  font-weight: 600;
}

.tooltip-phone a {
  color: inherit;
  text-decoration: none;
}

.tooltip-phone a:hover {
}

/* Timing */
.tooltip-timing {
  margin: 12px 0 15px 0;
  font-size: 14px;
}
.tooltip-timing_info {
  font-weight: bold;
}

/* .page-template-page-test-php .site-header,
.page-template-page-test-php .page-info-bar {
  display: none;
} */

@media (max-width: 767px) {
  .bakery-order-title {
    margin: 0;
    font-size: clamp(30px, 9vw, 34px);
  }
  .bakery-headline-row,
  .bakery-content-grid {
    grid-template-columns: 1fr;
  }
  .bakery-headline-row,
  .bakery-order-title,
  .bakery-map-panel {
    border-width: 3px;
  }
  .bakery-map-panel {
    padding-bottom: 10px;
    border-bottom: 3px dotted var(--bakery-ink);
  }
  .bakery-headline-row .bakery-order-subtitle {
    display: none;
  }
  .bakery-address-panel {
    margin-top: 10px;
    margin-left: 5px;
    border-left: 4px dotted var(--bakery-ink);
    /* border-bottom: 4px dotted var(--bakery-ink); */
  }
  .bakery-order-subtitle.show-in-mobile {
    display: block;
    padding: 12px 11px 25px;
    border-bottom: 4px dotted var(--bakery-ink) !important;
  }
  .bakery-map-canvas {
    min-height: 250px;
  }
}
@media (max-width: 767px) {
  .tooltip-card {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    padding-right: 10px;
  }
  .tooltip-image {
    width: 100%;
  }
  .tooltip-text {
    padding: 0px 0px;
  }
  .tooltip-image {
    min-height: 140px;
  }
}
@media (max-width: 480px) {
  .gm-style .gm-style-iw {
    max-width: 70vw !important;
    width: 70vw !important;
  }

  .gm-style .gm-style-iw-d {
    overflow: auto !important;
  }
  .gm-ui-hover-effect {
    width: 35px !important;
    height: 35px !important;
  }
  .gm-ui-hover-effect > span {
    margin: 5px !important;
  }
}
