* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #fff;
  font-family: "Protest Strike", sans-serif;
}

/* HEADER */

.lv-header {
  height: 86px;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 999;
}

.custom-lang {
  position: relative;
  justify-self: start;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  background: #fff;
  padding: 10px 12px;
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-weight: 700;
}

.lang-btn img {
  width: 28px;
  height: 20px;
  object-fit: cover;
  border-radius: 2px;
}

.lang-dropdown {
  position: absolute;
  top: 60px;
  left: 0;
  width: 220px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,.18);
  padding: 10px 0;
  display: none;
  z-index: 99999;
}

.lang-dropdown.active {
  display: block;
}

.lang-dropdown div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 18px;
}

.lang-dropdown div:hover {
  background: #f4f4f4;
}

.lang-dropdown img {
  width: 26px;
  height: 18px;
  object-fit: cover;
}

.lv-logo {
  justify-self: center;
}

.lv-logo img {
  max-width: 118px;
  display: block;
}

.lv-phone {
  justify-self: end;
  color: #000;
  text-decoration: none;
  font-size: 25px;
  display: flex;
  align-items: center;
}

/* HERO SLIDER */

.hero-slider {
  position: relative;
  width: 100%;
  height: 390px;
  overflow: hidden;
  background: #fff;
}

.hero-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.hero-slider img.active {
  opacity: 1;
  z-index: 2;
}

/* CATEGORY GRID */

.menu-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 34px;
  padding: 16px 10px 28px;
  background: #fff;
}

.menu-category-card {
  position: relative;
  height: 212px;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  background: #ddd;
}

.menu-category-card:nth-child(1),
.menu-category-card:nth-child(4),
.menu-category-card:nth-child(7) {
  grid-column: span 2;
  height: 212px;
}

.menu-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.38);
  z-index: 1;
}

.menu-category-title {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 45px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.02;
  padding: 0 8px;
  text-shadow: 0 4px 10px rgba(0,0,0,.45);
}

/* CATEGORY HERO */

.category-hero {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: #ddd;
}

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

.category-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.30);
  z-index: 1;
}

.category-hero h1 {
  position: absolute;
  top: 74px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  margin: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 54px;
  text-transform: uppercase;
  text-shadow: 0 4px 10px rgba(0,0,0,.45);
}

/* HERO BACK BUTTON */

.hero-back-btn {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 3;
  width: 270px;
  height: 68px;
  border: 4px solid #fff;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: .5px;
  background: rgba(0,0,0,.12);
  backdrop-filter: blur(2px);
  transition: .2s;
}

.hero-back-btn:hover {
  transform: translateX(-50%) scale(1.03);
}

/* OLD CARD PRODUCT STYLE */

.category-body {
  background: #f5f5f5;
}

.category-products {
  padding: 18px 14px 40px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.lv-product-card {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,.05);
}

.lv-product-image {
  width: 100%;
  display: block;
  border-radius: 8px;
  cursor: pointer;
}

.lv-product-card h2 {
  margin: 18px 0 8px;
  font-size: 24px;
  color: #111;
}

.lv-product-card p {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: #555;
  font-weight: 700;
  line-height: 1.5;
}

.lv-price {
  display: inline-block;
  margin-top: 18px;
  background: #000;
  color: #fff;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 20px;
}

/* MENU LIST PRODUCT DESIGN */

.menu-product-list {
  background: #fff;
  padding: 18px 14px 40px;
}

.menu-product-row {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  padding: 12px 0 !important;
  width: 100%;
}

.menu-product-img {
  width: 52px !important;
  height: 52px !important;
  object-fit: cover !important;
  border-radius: 4px !important;
  flex: 0 0 52px !important;
  display: block !important;
  cursor: pointer;
}

.menu-product-content {
  flex: 1 !important;
  min-width: 0 !important;
}

.menu-product-top {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  width: 100%;
}

.menu-product-top h2 {
  margin: 0 !important;
  font-size: 17px !important;
  line-height: 1 !important;
  color: #000 !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.menu-product-dots {
  flex: 1 !important;
  border-bottom: 2px dotted #86b79f !important;
  transform: translateY(4px);
}

.menu-product-price {
  font-size: 17px !important;
  color: #000 !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
}

.menu-product-content p {
  margin: 4px 0 0 !important;
  font-family: Arial, sans-serif !important;
  font-size: 12px !important;
  color: #555 !important;
  line-height: 1.35 !important;
}

/* ICE CREAM SPECIAL MENU */

.icecream-menu {
  background: #fff;
  padding: 28px 14px 34px;
  color: #000;
}

.icecream-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.icecream-head h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1;
}

.icecream-price {
  font-size: 42px;
  color: #a52a2a;
  font-weight: 900;
}

.icecream-line {
  height: 3px;
  background: #000;
  margin: 34px 0 22px;
}

.icecream-item {
  font-size: 27px;
  padding: 12px 0 13px;
  border-bottom: 1px dotted #bbb;
  line-height: 1;
}

.icecream-note {
  margin-top: 28px;
  color: #a52a2a;
  font-size: 25px;
  line-height: 1.45;
  font-weight: 900;
}

/* FOOTER */

.site-footer {
  background: #fff;
  color: #333;
  text-align: center;
  padding: 35px 18px 34px;
  font-family: Arial, sans-serif;
  font-size: 13px;
}

.footer-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 16px;
  line-height: 1.4;
}

.footer-line a {
  color: #333;
  text-decoration: none;
}

.footer-copy {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-copy img {
  height: 28px;
  width: auto;
}

/* LIGHTBOX */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 95vw;
  max-height: 90vh;
  border-radius: 12px;
}

.close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

/* GOOGLE TRANSLATE BAR HIDE */

.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

iframe.goog-te-banner-frame {
  display: none !important;
}

body > .skiptranslate {
  display: none !important;
}

#google_translate_element {
  display: none !important;
}

/* MOBILE */

@media (max-width: 560px) {

  .hero-slider {
    height: 390px;
  }

  .menu-category-grid {
    gap: 18px 24px;
    padding: 14px 10px 24px;
  }

  .menu-category-card {
    height: 140px;
  }

  .menu-category-card:nth-child(1),
  .menu-category-card:nth-child(4),
  .menu-category-card:nth-child(7) {
    height: 140px;
  }

  .menu-category-title {
    font-size: 34px;
    line-height: 1;
    text-align: center;
  }

  .category-hero {
    height: 275px;
  }

  .category-hero h1 {
    top: 68px;
    font-size: 46px;
  }

  .hero-back-btn {
    width: 180px;
    height: 50px;
    font-size: 22px !important;
    bottom: 40px;
    border-width: 3px;
  }

  .lv-logo img {
    max-width: 108px;
  }

  .lv-phone {
    font-size: 23px;
  }

  .menu-product-list {
    padding: 14px 10px 34px;
  }

  .menu-product-img {
    width: 66px !important;
    height: 66px !important;
    flex-basis: 66px !important;
  }

  .menu-product-top h2,
  .menu-product-price {
    font-size: 15px !important;
  }

  .menu-product-content p {
    font-size: 11px !important;
  }

  .icecream-head h2 {
    font-size: 32px;
  }

  .icecream-price {
    font-size: 40px;
  }

  .icecream-item {
    font-size: 26px;
  }

  .icecream-note {
    font-size: 24px;
  }

  .site-footer {
    padding: 42px 18px 34px;
    font-size: 12px;
  }

  .footer-copy img {
    height: 24px;
  }
}