:root {
  --box-shadow: 0 2px 8px #0001;
  --color-status-open-bg: #e6ffe6;
  --color-status-soon-bg: #fffbe6;
  --color-status-closed-bg: #ffe6e6;
  --color-status-open: #285f2a;
  --color-status-closed: #5f2a2a;
  --color-status-soon: #b38b00;
  --box-shadow: 0 2px 6px #0001;
}

/* Darbo laiko lentelė */
.lk-darbo-laikas {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
  font-family: inherit;
}
.lk-darbo-laikas td {
  padding: 6px 12px;
  border-bottom: 1px solid #eee;
}
.lk-darbo-laikas tr.lk-status-open {
  background: var(--color-status-open-bg);
  color: var(--color-status-open);
  font-weight: 600;
}
.lk-darbo-laikas tr.lk-status-soon {
  background: var(--color-status-soon-bg);
  color: var(--color-status-soon);
  font-weight: 600;
}
.lk-darbo-laikas tr.lk-status-closed {
  background: var(--color-status-closed-bg);
  color: var(--color-status-closed);
  font-weight: 600;
}
.lk-darbo-laikas td:first-child {
  text-align: left;
  padding-right: 16px;
}
.lk-darbo-laikas td:last-child {
  text-align: right;
  min-width: 90px;
}

.lk-status-open-text {
  display: inline-block;
  font-size: 0.9em;
  background-color: #fefefe;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.01em;
  margin: 0.2em 0;
}
.lk-status-open {
  background-color: var(--color-status-open-bg);
  color: var(--color-status-open);
}
.lk-status-closed {
  background-color: var(--color-status-closed-bg);
  color: var(--color-status-closed);
}
.lk-status-soon {
  background-color: var(--color-status-soon-bg);
  color: var(--color-status-soon);
}
.lk-darbo-laikas-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
}
.lk-darbo-laikas-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 12px;
  border-radius: 6px;
  background: var(--color-content-bg-alt);
  white-space: nowrap;
  font-family: inherit;
  font-size: 0.98em;
}

.lk-darbo-laikas-row.lk-diena-siandien {
  background: var(--lk-today-bg, #ffe9b3);
}
.lk-darbo-laikas-row.lk-diena-siandien.lk-status-open {
  background: var(--lk-today-bg-open, #e6ffe6);
  border-left: 4px solid var(--lk-today-bg-open-border, #285f2a);
  box-shadow: var(--box-shadow);
  font-weight: 600;
}
.lk-darbo-laikas-row.lk-diena-siandien.lk-status-soon {
  background: var(--lk-today-bg-soon, #fffbe6);
  border-left: 4px solid var(--lk-today-bg-soon-border, #b38b00);
  box-shadow: var(--box-shadow);
  font-weight: 600;
}
.lk-darbo-laikas-row.lk-diena-siandien.lk-status-closed {
  background: var(--lk-today-bg-closed, #ffe6e6);
  border-left: 4px solid var(--lk-today-bg-closed-border, #5f2a2a);
  box-shadow: var(--box-shadow);
  font-weight: 600;
}

.lk-darbo-laikas-day {
  flex: 1 1 50%;
  overflow: hidden;
}
.lk-darbo-laikas-time {
  flex: 1 1 50%;
  text-align: right;
  overflow: hidden;
}
.lk-darbo-laikas-error {
  color: var(--color-status-closed);
  background: var(--color-status-closed-bg);
  padding: 12px;
  border-radius: 6px;
  font-size: 0.9em;
  font-weight: 600;
  text-align: center;
  margin-top: 12px;
}

/* Atidaryta/Uždaryta žymos */
span.lk-atidaryta {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lk-status-icon {
  height: 5em;
  vertical-align: middle;
  margin: 0 auto;
}

.lk-status-text {
  display: inline-block;
  font-size: 0.9em;
  text-align: center;
  font-weight: 400;
}

/* Patiekalų reitingas */

.lk-stars-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lk-rating {
  display: inline-block;
  font-family: inherit;
  /* font-size: 10px; */
  min-width: 220px;
}
.lk-rating .lk-stars {
  display: flex;
  gap: 2px;
  /* margin-bottom: 6px; */
}
.lk-rating .lk-star {
  font-size: 1.5em;
  color: #d1d5db;
  cursor: pointer;
  transition: color 0.18s, transform 0.18s;
  user-select: none;
  padding: 0 1px;
}
.lk-rating .lk-star-filled {
  color: #ffc700;
  text-shadow: 0 1px 2px #e2b20044;
  transform: scale(1.08);
}
.lk-rating .lk-star:hover {
  color: #ffdb70;
  transform: scale(1.15);
}
.lk-rating.lk-rated .lk-star {
  cursor: default;
  opacity: 0.85;
}
.lk-rating-avg {
  color: var(--color-content-faded);
  font-size: 0.98em;
  margin-bottom: 0;
  margin-top: 2px;
}

/* Toast žinutė */
.lk-rating-toast {
  position: fixed;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  background: #222;
  color: #fff;
  padding: 12px 28px;
  border-radius: 24px;
  font-size: 1em;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.3s;
}
.lk-rating-toast.lk-rating-toast-show {
  opacity: 0.96;
  pointer-events: auto;
}

/* Telefonas kortelė */
.lk-phone-card {
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 0.18s, background 0.18s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 1rem 2rem;
  box-shadow: var(--box-shadow);
  border: 1px solid var(--color-content-border);
  border-radius: 6px;
  margin-bottom: 20px;
  background: #2e1b11;
  background-image: url("../img/phone-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.lk-phone-card .lk-phone-number,
.lk-phone-card .lk-phone-desc,
.lk-phone-card .lk-phone-icon {
  color: inherit;
}
.lk-phone-card .lk-phone-row {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.lk-phone-card .lk-phone-icon {
  font-size: 2em;
  color: var(--color-content-primary);
  margin-top: 0;
  transition: transform 0.18s cubic-bezier(0.4, 1.4, 0.6, 1);
}
.lk-phone-card:hover .lk-phone-icon,
.lk-phone-card:focus .lk-phone-icon {
  transform: translateX(6px) scale(1.12) rotate(-8deg);
}
.lk-phone-card .lk-phone-number {
  font-size: 1.4em;
  font-weight: 600;
  font-family: "KG Second Chances Sketch", sans-serif;
  letter-spacing: 0.5px;
  color: #fff;
}
.lk-phone-card .lk-phone-desc {
  font-size: 0.7em;
  color: #fff;
  opacity: 0.85;
  text-align: center;
}

.lk-phone-info-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Patiekalų kainos */
span.lk-price-from {
  font-size: 0.6em;
}

/* Modal pagrindas */
.lk-modal-trigger {
  cursor: pointer;
}

.lk-modal.lk-modal--dish {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lk-modal-overlay {
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}
.lk-modal-content.lk-modal-content--dish {
  background: var(--color-content-bg);
  padding: 32px 24px;
  border: 1px solid var(--color-content-border);
  border-radius: 12px;
  max-width: 600px;
  width: 95vw;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  z-index: 2;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.3s cubic-bezier(.4,0,.2,1), transform 0.3s cubic-bezier(.4,0,.2,1);
}

.lk-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 2rem;
  color: #888;
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s, background 0.2s;
  background: #f3f3f3;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
.lk-modal-close:hover {
  color: #000;
  background: #e0e0e0;
}
.lk-modal-img {
  max-width: 100%;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 18px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  background: var(--color-content-bg-alt);
}
.lk-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.lk-modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  flex: 1;
}
.lk-modal-price {
  font-size: 1.8rem;
  color: var(--color-content-primary);
  font-weight: 600;
  margin-left: 8px;
}
.lk-modal-rating {
  margin-bottom: 10px;
}
.lk-modal-variations {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--color-content-text);
}
.lk-modal-variations .lk-price {
  font-size: 1.2em;
  font-weight: 600;
  color: var(--color-content-primary);
}
.lk-modal-variations .lk-euro {
  font-weight: 600;
  color: var(--color-content-primary);
}
.lk-modal-ingredients {
  margin-bottom: 12px;
}
.lk-modal-ingredient-block {
  font-size: 1rem;
  margin-bottom: 4px;
  display: flex;
  gap: 6px;
}
.lk-modal-ingredient-label {
  font-weight: 600;
  color: var(--color-content-heading);
}
.lk-modal-ingredient-values {
  color: var(--color-content-text);
  text-transform: capitalize;
}
.lk-modal-description {
  font-size: 1rem;
  color: var(--color-content-text);
  margin-top: 10px;
  line-height: 1.6;
  background: var(--color-content-bg-alt);
  border-radius: 6px;
  padding: 10px 12px;
}
/* Fade-in ir fade-out modalui */
.lk-modal {
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.lk-modal.lk-modal--visible {
  opacity: 1;
  pointer-events: auto;
}
.lk-modal.lk-modal--fadeout {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.lk-rating.lk-rating--readonly .lk-star {
  color: #d1d5db !important;
  cursor: default !important;
  opacity: 0.6;
  pointer-events: none;
  transition: none;
}
.lk-rating.lk-rating--readonly .lk-star-filled {
  color: #ffc700 !important;
  opacity: 1;
  text-shadow: none;
  transform: none;
}
.lk-rating.lk-rating--readonly .lk-star:hover {
  color: #d1d5db !important;
  transform: none;
} 

/* Misc */

.lk-kontaktu-forma {
	cursor: pointer;
}

.widget_wrap > .vc_column-inner > .wpb_wrapper:first-child {
	padding: 1rem 2rem;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--color-content-border);
    border-radius: 6px;
    margin-bottom: 20px;
	background: var(--color-content-bg);
}

.widget_wrap.dark > .vc_column-inner > .wpb_wrapper:first-child {
    background: #2e1b11;
}

.lk-sidebar-filter {
	padding: 1rem 2rem;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--color-content-border);
    border-radius: 6px;
    margin-bottom: 20px;
    background: var(--color-content-bg);
}

/* Filtrai */
form.layout_hor .w-filter-list {
  display: flex;
}

form.layout_hor .w-filter-item-values {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 0em;
  max-width: 100%;
  justify-content: center;
}

form.layout_hor .w-filter-item-title,
form.layout_hor .w-filter-item.has_value .w-filter-item-reset {
  display: none !important;
}

form.layout_hor .w-filter-item-value input {
  display: none;
}

form.layout_hor .w-filter-item-value.depth_2 {
  margin-left: 0em;
}

form.layout_hor .w-filter-item-value {
  display: flex;
  align-items: center;
  padding: 0.5em 1.2em;
  border-radius: 3px;
  background: var(--color-content-bg-alt-grad);
  color: inherit;
  cursor: pointer;
}

form.layout_hor .w-filter-item-value:hover {
  background: var(--color-content-primary-grad);
  color: #fff;
}

@media (max-width: 600px) {
    .w-filter.state_desktop.liukskebabai .w-filter-list, 
	.w-filter-item-title>span {
        display: inherit !important;
    }
}


/* Change background if input is checked */
form.layout_hor .w-filter-item-value:has(input:checked) {
  background: var(--color-content-primary-grad);
  color: #fff;
  font-weight: 600;
}

/* Modal */

.l-popup-overlay {
    background: rgba(0, 0, 0, 0.5);
}
.l-popup-box-content {
    border-radius: 0.5rem;
}

/* Home image paralax effect */
.home-image {
  overflow: hidden;
  perspective: 1000px;
}

.home-image img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

/* Header */
@media (min-width: 601px) and (max-width: 1024px) {
    .l-header.sticky .l-subheader.at_middle {
        line-height: 80px;
        height: 80px;
    }
}

@media (max-width: 768px) {
	.lk-lokacijos-meniu .w-btn-label {
		display: none;
	}
	.lk-lokacijos-meniu .icon_atleft i {
		margin-right: 0;
	}
	.lk-lokacijos-meniu.icon_atleft > i {
		margin-right: 0;
	}
}
