:root {
  --title-color: #111010 !important;
  --theme-color_original: #eb0029;
  --theme-color: #91da4b !important; /* old red - #eb0029 */
  --theme-green: #a3d977 !important;
  --smoke-color2: rgba(196, 221, 176, 0.35) !important;
  --icon-font: "Font Awesome 5 Free" !important;
}
/* Убираем горизонтальную прокрутку */
html,
body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}
.flex {
  display: flex;
}
.justify-between {
  justify-content: space-between;
}
.align-center {
  align-items: center;
}
.relative {
  position: relative;
}
.pd-8-12 {
  padding: 8px 12px;
}
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  display: none !important;
}

bdi .woocommerce-Price-currencySymbol {
  margin-left: 4px;
}
.sushi-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(5, 1fr);
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  width: 100%;
  margin: 0 auto;
  height: 75vh;
}

.sushi-grid .sushi-item {
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}
.sushi-grid .sushi-item .sushi-item_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--theme-green);
  background-size: 120%;
  background-position: center 70%;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.sushi-grid .sushi-item .overlay {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  bottom: 8px;
  left: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  border-radius: 8px;
  background: radial-gradient(
    circle at 180% -80%,
    transparent 40%,
    rgba(255, 255, 255, 0.95) 100%
  );
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 10px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.sushi-grid .sushi-item .title {
  position: relative;
  color: var(--title-color);
  opacity: 0.85;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 0.9;
  z-index: 1;
  margin-left: 10px;
}
.sushi-grid .sushi-item.item-3 .title,
.sushi-grid .sushi-item.item-4 .title,
.sushi-grid .sushi-item.item-5 .title {
  font-size: 1rem;
}
.sushi-grid .sushi-item:hover .overlay {
  background: rgba(255, 255, 255, 0);
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.sushi-grid .sushi-item:hover .title {
  color: transparent;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.sushi-grid .sushi-item:hover .sushi-item_bg {
  border-radius: 0 0 0 0;
  -webkit-border-radius: 0 0 0 0;
  -moz-border-radius: 0 0 0 0;
  -ms-border-radius: 0 0 0 0;
  -o-border-radius: 0 0 0 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.sushi-item.item-1 {
  grid-area: 1 / 1 / 4 / 3;
}
.sushi-item.item-2 {
  grid-area: 1 / 3 / 3 / 6;
}
.sushi-item.item-6 {
  grid-area: 4 / 1 / 6 / 4;
}
.sushi-item.item-7 {
  grid-area: 4 / 4 / 6 / 6;
}
.sushi-item.item-8 {
  grid-area: 1 / 6 / 3 / 8;
}
.sushi-item.item-9 {
  grid-area: 3 / 6 / 6 / 8;
}
.sushi-item.item-3 {
  grid-area: 3 / 3 / 4 / 4;
}
.sushi-item.item-4 {
  grid-area: 3 / 4 / 4 / 5;
}
.sushi-item.item-5 {
  grid-area: 3 / 5 / 4 / 6;
}

.product-image-wrapper {
  position: relative;
  display: inline-block;
}

/* Стили для блока с метками */
.custom-product-tags {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  z-index: 2;
}

/* Стили для отдельных меток */
.custom-product-tags > div {
  background-color: var(--theme-color);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 3px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  line-height: 1;
}

.custom-product-tags .vegan {
  background-color: var(--theme-green);
  color: #2d4a14;
  font-weight: 600;
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.custom-product-tags .losos {
  background-color: #ffa07a; /* лосось */
}

.custom-product-tags .ugor {
  background-color: #8b4513; /* угорь */
}

.custom-product-tags .tunec {
  background-color: #dc143c; /* тунец */
}

.custom-product-tags .kurica {
  background-color: #f5deb3; /* курица */
  color: #333; /* тёмный текст на светлом фоне */
}

.custom-product-tags .krevetka {
  background-color: #ffb6c1; /* креветка */
  color: #333;
}

.custom-product-tags .krab {
  background-color: #ff6347; /* краб */
}

.pattern-title {
  font-family: var(--e-global-typography-primary-font-family);
  background-image: none !important;
  font-size: 4.2rem !important;
  color: #fff !important;
  background-clip: unset;
}
.pattern-title.pattern-title2 {
  font-size: 5.6rem !important;
}

.offerbox .discount_style4 .p {
  line-height: normal;
}
.offerbox .discount_style4 .percentage {
  font-size: 2.8rem;
}
.offerbox .discount_style4 .percentage.bigger {
  font-size: 4rem;
  margin-bottom: -10px;
}
.menu-tabs .nav-link img {
  width: 80px;
  height: 80px;
}

.sushi-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
  transform-origin: center;
  margin-right: 10px;
}

.sushi-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: center;
  transition: transform 0.5s ease;
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  -ms-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
}

.sushi-icon.spin svg {
  animation: fancy-cube-spin 1.2s ease-in-out forwards;
  -webkit-animation: fancy-cube-spin 1.2s ease-in-out forwards;
}

@keyframes fancy-cube-spin {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
    -webkit-transform: translateY(0) rotate(0deg) scale(1);
    -moz-transform: translateY(0) rotate(0deg) scale(1);
    -ms-transform: translateY(0) rotate(0deg) scale(1);
    -o-transform: translateY(0) rotate(0deg) scale(1);
  }
  10% {
    transform: translateY(-10px) rotate(20deg) scale(1.05);
    -webkit-transform: translateY(-10px) rotate(20deg) scale(1.05);
    -moz-transform: translateY(-10px) rotate(20deg) scale(1.05);
    -ms-transform: translateY(-10px) rotate(20deg) scale(1.05);
    -o-transform: translateY(-10px) rotate(20deg) scale(1.05);
  }
  30% {
    transform: translateY(0) rotate(100deg) scale(1);
    -webkit-transform: translateY(0) rotate(100deg) scale(1);
    -moz-transform: translateY(0) rotate(100deg) scale(1);
    -ms-transform: translateY(0) rotate(100deg) scale(1);
    -o-transform: translateY(0) rotate(100deg) scale(1);
  }
  50% {
    transform: translateY(-6px) rotate(180deg) scale(1.05);
    -webkit-transform: translateY(-6px) rotate(180deg) scale(1.05);
    -moz-transform: translateY(-6px) rotate(180deg) scale(1.05);
    -ms-transform: translateY(-6px) rotate(180deg) scale(1.05);
    -o-transform: translateY(-6px) rotate(180deg) scale(1.05);
  }
  70% {
    transform: translateY(0) rotate(270deg) scale(0.98);
    -webkit-transform: translateY(0) rotate(270deg) scale(0.98);
    -moz-transform: translateY(0) rotate(270deg) scale(0.98);
    -ms-transform: translateY(0) rotate(270deg) scale(0.98);
    -o-transform: translateY(0) rotate(270deg) scale(0.98);
  }
  100% {
    transform: translateY(0) rotate(360deg) scale(1);
    -webkit-transform: translateY(0) rotate(360deg) scale(1);
    -moz-transform: translateY(0) rotate(360deg) scale(1);
    -ms-transform: translateY(0) rotate(360deg) scale(1);
    -o-transform: translateY(0) rotate(360deg) scale(1);
  }
}

.food-menu .food-menu_content .food-menu_desc {
  font-size: 0.75rem;
  line-height: 1rem;
}
.food-menu_img {
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important;
}
.food-menu_img img {
  aspect-ratio: 1/1;
  object-fit: cover;
}

.food-menu_img:before {
  border-radius: 2px !important;
  -webkit-border-radius: 2px !important;
  -moz-border-radius: 2px !important;
  -ms-border-radius: 2px !important;
  -o-border-radius: 2px !important;
}
.food-menu_title a {
  text-transform: uppercase;
}

.home-slider .th-menu_title {
  line-height: 1.1 !important;
  min-height: 80px;
}

.shop-category-title {
  font-size: 24px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #ccc;
}

.products-in-category {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.custom-product {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.custom-product-image img {
  max-width: 140px;
  height: auto;
}

.custom-product-details {
  flex: 1;
}

.custom-product-details h3 {
  margin: 0 0 10px;
}

.short-description {
  font-style: italic;
  color: #666;
}

.product-attrs {
  margin: 5px 0 10px;
  color: #444;
}

.custom-add-to-cart-form {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}

.custom-qty-input {
  width: 60px;
  padding: 4px;
  font-size: 14px;
}

.custom-add-to-cart-btn {
  background: var(--theme-color);
  color: white;
  padding: 8px 14px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  -webkit-transition: background 0.3s;
  -moz-transition: background 0.3s;
  -ms-transition: background 0.3s;
  -o-transition: background 0.3s;
}

.custom-add-to-cart-btn:hover {
  background: #e65c00;
}

.shop-menu {
  gap: 24px;
}

.arrow-wrap .slick-arrow {
  opacity: 1 !important;
  visibility: visible !important;
}

.about-img .about-box {
  display: none;
}
.about-box_number {
  color: #fff !important;
  text-decoration: none !important;
}

.about-box_number:hover,
.about-box_number:active,
.about-box_number:focus,
.about-box_number:visited {
  color: #fff !important;
}

/* На мобильных */
@media (max-width: 768px) {
  .about-box_number,
  .about-box_number:hover,
  .about-box_number:active {
    color: #fff !important;
  }
}
.breadcumb-wrapper {
  background-color: var(--title-color) !important;
  padding: 16px 0 !important;
}
.category-anchor-menu {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 16px;
  line-height: 0.9;
}
#menu-menu {
  position: relative;
  transition: all 0.3s ease;
  z-index: 99;
}

#menu-menu.fixed {
  position: fixed;
  top: 104px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background: #fff;
  padding: 10px 20px 0 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.th-product.list-view {
  min-height: 160px;
}

.th-product.list-view .product-img {
  position: relative;
  height: 100%;
  width: auto !important;
  max-width: unset !important;
  aspect-ratio: 1/1;
}

.popular-products-slider .slick-prev,
.popular-products-slider .slick-next {
  font-size: 0;
  line-height: 0;
}

.popular-products-slider .slick-prev:before {
  content: "←";
  font-size: 30px;
  font-family: Arial, sans-serif;
}

.popular-products-slider .slick-next:before {
  content: "→";
  font-size: 30px;
  font-family: Arial, sans-serif;
}
.th-product.list-view .product-img a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.th-product.list-view:hover .product-img,
.th-product.list-view .product-img {
  background-color: transparent !important;
}
.th-product.list-view .product-content {
  padding: 24px 12px 64px 12px !important;
  min-height: 240px;
  overflow: hidden;
}
.th-product.list-view .product-content {
  transform: none !important;
  -webkit-transform: none !important;
}
.th-product .product-img img,
.product-normal-img img {
  object-fit: cover;
  width: 100% !important;
  height: 100% !important;
}
.th-product .product-title a {
  text-transform: uppercase;
  font-weight: 700;
}
.th-product.list-view .product-text {
  line-height: 1.1;
}
.th-product .price {
  font-weight: 900 !important;
  font-size: 1.6rem;
}
.title-price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.th-product.list-view .product-title {
  margin: 0 0 12px 0 !important;
}
.sub-title.subtitle-selector .icon {
  height: 32px;
}
.category-anchor-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
  justify-content: center;
  position: relative; /* Изначально в потоке */
  z-index: 100;
  background: #fff;
  transition: all 0.3s ease;
}
/* Когда прилипает */
.category-anchor-menu.stuck {
  position: fixed;
  top: 99px;
  left: 0;
  right: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding-bottom: 24px;
}

/* На мобильных - скрытие при скролле вниз */
@media (max-width: 1024px) {
  .category-anchor-menu.stuck.scroll-down {
    transform: translateY(-100%);
  }
}
.category-anchor-item {
  display: inline-block;
  width: 100px;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease;
  padding: 0px 4px;
  border-radius: 0;
  border-right: 1px dashed #a5a5a5;
}
.category-anchor-item:last-child {
  border-right: none;
}

.category-anchor-item:hover {
  transform: translateY(-3px);
}

.category-anchor-item img {
  width: 80px !important;
  height: 80px !important;
  margin-bottom: 12px;
  display: block;
}

.term-name {
  font-size: 0.75rem;
  color: var(--title-color);
  line-height: 0.875rem;
}
.menu-anchor {
  position: relative;
  top: -280px;
  height: 1px;
  visibility: hidden;
}

.checkout-inline-error-message {
  font-weight: bolder;
  color: var(--theme-color);
  line-height: 1 !important;
  font-size: 0.875rem;
}

.slick-slide .th-menu_desc {
  font-size: 0.875rem;
  line-height: 1rem;
  min-height: 3rem;
  margin-bottom: 24px;
}
.slick-slide .th-menu_price {
  font-size: 1.6rem;
}

#map-header {
  background: var(--title-color) !important;
}

.checkout-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkout-section h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}

.checkout-section input[type="text"],
.checkout-section input[type="tel"],
.checkout-section input[type="email"],
.checkout-section input[type="number"],
.checkout-section textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
}

.checkout-section label {
  font-size: 15px;
  display: block;
  font-weight: 500;
}

.checkout-section input[type="checkbox"],
.checkout-section input[type="radio"] {
  margin-right: 6px;
  transform: scale(1.1);
}

.delivery-method label {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: #f0f0f0;
  border-radius: 6px;
  margin-right: 12px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: 0.2s;
}

.delivery-method input[type="radio"]:checked + span {
  font-weight: bold;
  color: var(--theme-color);
}

input[type="number"] {
  max-width: 100px;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}
.radio-card {
  display: flex;
  align-items: center;
  border: 2px solid #ccc;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  background: #fff;
  transition: 0.2s ease;
}
.radio-card:hover {
  border-color: var(--theme-color);
  color: var(--theme-color);
}
.radio-card input[type="radio"] {
  display: none;
}
.radio-card input[type="radio"]:checked + span {
  font-weight: bold;
  position: relative;
  color: var(--theme-color);
}
.checkout-section label {
  display: block;
  margin-bottom: 10px;
}
.checkout-section input[type="text"],
.checkout-section input[type="email"],
.checkout-section input[type="tel"],
.checkout-section input[type="number"],
.checkout-section textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
  background: #fff;
}
input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px !important;
  height: 18px !important;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--theme-color);
  border-radius: 4px;
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  vertical-align: middle;
  cursor: pointer;
  position: relative;
  background: #fff;
  margin-right: 0 !important;
  padding: 0 !important;
}

input[type="checkbox"]:checked {
  border: 5px solid var(--theme-color);
}

.checkout-section label {
  display: flex;
  align-items: center;
  font-size: 15px;
  gap: 10px;
  cursor: pointer;
}
.error-field {
  border-color: red !important;
  background: #fff0f0;
}

.checkout-inline-error-message {
  color: red;
  font-size: 13px;
  margin-top: 4px;
}
#checkout-map {
  z-index: 1;
}
.custom-checkout-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.custom-checkout-left {
  min-width: 0;
  padding: 24px;
  background-color: #f9fafa;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.checkout-section {
  margin-bottom: 24px;
}

.checkout-section h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-weight: 600;
}

.checkout-section label {
  display: block;
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.4;
}

.checkout-section input[type="text"],
.checkout-section input[type="email"],
.checkout-section input[type="tel"],
.checkout-section input[type="number"],
.checkout-section textarea {
  display: block;
  width: 100%;
  max-width: 420px;
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
  margin-top: 4px;
}

.checkout-section textarea {
  resize: vertical;
}

.radio-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.radio-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  user-select: none;
}

.radio-card input[type="radio"] {
  accent-color: var(--theme-color);
  transform: scale(1.2);
}

.persons-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 240px;
  margin-top: 8px;
}

.persons-qty .qty-btn {
  width: 40px;
  height: 40px;
  font-size: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.persons-qty input[type="number"] {
  height: 40px;
  text-align: center;
  padding: 0;
  font-size: 1rem;
}

.custom-checkout-right-container {
  align-self: start;
  height: auto; /* на всякий случай — убираем фикс/100vh */
  position: sticky;
  top: 118px; /* сколько отступать от верха при прилипании */
}

/* типичная причина поломки — таблицы/широкие изображения */
.custom-checkout-right img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* если тема где-то задаёт вертикальный скролл обёрткам — глушим */
.th-container,
.container,
.content-area,
#primary {
  overflow: visible !important;
}
.single-product #woosw_wishlist,
.single-product .actions .woosw-btn {
  display: none !important;
}
.product-wrap {
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
}
.product-wrap .product-image-wrapper {
  flex: 1 1 60%;
}
.product-wrap .product-about {
  flex: 1 1 40%;
}
.woocommerce-Reviews {
  margin-top: 120px;
}
.product-attributes-inline {
  font-weight: bold;
}
.woocommerce-product-description {
  margin-bottom: 80px;
}

/* Заголовки секций */
.checkout-section h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Радио-кнопки (способ доставки и города) */
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.radio-card {
  display: inline-block;
  border: 1px solid #ccc;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  background-color: #fff;
  font-weight: 500;
  color: #111;
}

.radio-card input[type="radio"] {
  display: none;
}

.radio-card input[type="radio"]:checked + span {
  color: var(--theme-color);
  font-weight: 700;
}

/* Поля ввода */
.checkout-section input[type="text"],
.checkout-section input[type="tel"],
.checkout-section input[type="email"],
.checkout-section input[type="number"],
.checkout-section textarea {
  width: 100%;
  max-width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
  font-size: 15px;
  margin-bottom: 12px;
}

/* Чекбоксы */
.checkout-section label input[type="checkbox"] {
  margin-right: 4px !important;
}

/* Персоны — кнопки */
.persons-qty {
  display: flex;
  gap: 8px;
  align-items: center;
  max-width: 220px;
  margin-bottom: 12px;
}

.qty-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

/* Комментарий */
.checkout-section textarea {
  resize: vertical;
  border-radius: 8px;
}

.custom-checkout-right .mini_cart_item .remove {
  display: none !important;
}

/* Правая колонка чекаута (мини-вид) */
.custom-checkout-right .woocommerce-mini-cart {
  margin: 0;
  padding: 0;
}

.custom-checkout-right .mini_cart_item {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Правая колонка: жёстко 80x80, если вдруг стили темы не применились */
.custom-checkout-right .woocommerce-mini-cart img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
}

/* Скрыть крестик удаления, если нужно */
.custom-checkout-right .mini_cart_item .remove {
  display: none !important;
}
.wpr-mini-cart-image img,
.wpr-mini-cart-image a img {
  min-width: auto !important;
}
.widget.widget_shopping_cart {
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}
.widget_shopping_cart ul li {
  display: flex;
  align-items: center;
}

.woocommerce-mini-cart__buttons.buttons {
  display: none;
}
.custom-checkout-right .remove {
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
.custom-checkout-right .remove:hover {
  opacity: 1;
}

.shipping_method + label {
  display: none;
}
.cart_table,
.checkout-ordertable th,
.checkout-ordertable td {
  border: none !important;
}
#custom_persons {
  margin: 0 !important;
}
h1.product_title.entry-title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.1;
  margin-bottom: 12px;
}
section.related-products {
  margin-top: 120px !important;
}
.related-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0 !important;
}
.slick-slide .th-product .product-title {
  min-height: 80px;
}
.divider-title {
  text-transform: uppercase;
}
.header-layout5 .menu-area {
  padding-block: 12px !important;
}

.sushi-random-intro {
  text-align: center;
  font-size: 2.4rem;
  line-height: 2.8rem;
  justify-content: center;
}

.random-btn {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
/* ===== Offcanvas cart (rhs-cart) ===== */

/* оболочка */
.rhs-cart__wrapper {
  position: fixed;
  inset: 0;
  z-index: 999999999;
  pointer-events: none;
}
.rhs-cart__wrapper.preopen {
  pointer-events: auto;
}
.rhs-cart__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.rhs-cart {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(92vw, 380px);
  max-width: 420px;
  background: #fff;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.18);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding-top: 40px;
}
.rhs-cart__wrapper.open .rhs-cart__backdrop {
  opacity: 1;
}
.rhs-cart__wrapper.open .rhs-cart {
  transform: translateX(0);
}
.rhs-cart__closeBtn {
  position: absolute;
  z-index: 999;
  top: 40px;
  right: 30px;
  border: 0;
  background: transparent;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.rhs-cart__header {
  padding: 16px 20px 8px;
}
.rhs-cart__body {
  flex: 1;
  overflow: auto;
  padding: 0 20px;
}
.rhs-cart__footer {
  padding: 16px 20px;
  border-top: 1px solid #eee;
}
.rhs-cart__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
/* Анимация удаления товара из корзины */
.mini_cart_item.removing {
  opacity: 0.5;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Плавное обновление счетчика */
.cart-count {
  transition: all 0.3s ease;
}

.cart-count.updating {
  transform: scale(1.2);
  background-color: var(--theme-color) !important;
}

/* Индикатор загрузки для корзины */
.rhs-cart__body.loading {
  position: relative;
  pointer-events: none;
}

.rhs-cart__body.loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7);
  z-index: 10;
}

.rhs-cart__body.loading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 11;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.th-product .actions .add_to_cart_button.added,
.th-menu .actions .add_to_cart_button.added {
  display: inline-block !important;
}

/* Sticky Header Styles */
.header-layout5 {
  transition: all 0.3s ease;
}

.header-layout5.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #fff; /* Измените на нужный цвет */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease;
  z-index: 999999;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Placeholder чтобы контент не прыгал */
.header-placeholder {
  display: block;
  width: 100%;
}

/* Дополнительные стили для sticky состояния */
.header-layout5.is-sticky .th-header {
  padding: 10px 0; /* Уменьшаем padding в sticky режиме */
}

/* Опционально: меняем размер логотипа в sticky */
.header-layout5.is-sticky .header-logo img {
  max-height: 50px; /* Уменьшаем логотип */
  transition: max-height 0.3s ease;
}

.header-text {
  color: #111010;
  padding: 0;
  margin: 0;
}

.addresses-list {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 1.4;
}

.address-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.address-icon {
  display: inline-flex;
  flex-shrink: 0;
  color: currentColor;
}

.address-icon svg {
  width: 16px;
  height: 16px;
}

.address-separator {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

@media (max-width: 768px) {
  .addresses-list {
    font-size: 12px;
    gap: 8px;
  }

  .address-item {
    gap: 4px;
  }

  .address-icon svg {
    width: 14px;
    height: 14px;
  }
}

/* Базовые стили */
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1;
}

.lang-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  opacity: 0.6;
}

.lang-item:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}

.lang-item.active {
  opacity: 1;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.15);
}

.lang-flag {
  font-size: 18px;
  line-height: 1;
}

.lang-code {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}

.lang-separator {
  opacity: 0.3;
  font-weight: 300;
}

/* Dropdown стиль */
.lang-dropdown {
  position: relative;
}

.lang-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}

.lang-arrow {
  transition: transform 0.2s ease;
}

.lang-dropdown.open .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 60px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1000;
  overflow: hidden;
}

.lang-dropdown.open .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: #333;
  text-decoration: none;
  transition: background 0.2s ease;
  font-size: 14px;
}

.lang-dropdown-item:hover {
  background: #f5f5f5;
}

.lang-dropdown-item .lang-flag {
  font-size: 20px;
}

.lang-dropdown-item .lang-code,
.lang-dropdown-item .lang-name {
  font-weight: 500;
}

/* Адаптив */
@media (max-width: 768px) {
  .language-switcher {
    font-size: 13px;
  }

  .lang-flag {
    font-size: 16px;
  }

  .lang-item {
    padding: 5px 8px;
  }
}

.phone-block {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phone-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff !important;
}

.phone-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.phone-label {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.8;
  line-height: 1.2;
  color: #fff;
}

.phone-number {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  color: #fff;
}
.phone-block:hover .phone-content .phone-label {
  color: #fff;
}

.phone-block:hover .phone-content .phone-number {
  color: var(--e-global-color-accent);
}
/* Стили для main-menu в строку */
.main-navigation {
  display: inline-block;
}

.main-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-menu li::before {
  display: none !important;
  content: none !important;
}

.main-menu a {
  color: #fff !important;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.main-menu a:hover {
  opacity: 0.7;
}

/* Убираем подменю маркеры */
.main-menu .sub-menu {
  list-style: none;
  padding-left: 0;
}

.main-menu .sub-menu li::before {
  display: none !important;
}

@media (max-width: 768px) {
  .phone-icon svg {
    width: 32px;
    height: 32px;
  }

  .phone-label {
    font-size: 11px;
  }

  .phone-number {
    font-size: 16px;
  }
}

.header-layout5 .main-menu {
  padding-left: 40px !important;
}
.breadcumb-wrapper {
  display: none !important;
}

.widget_title {
  font-family: "Mulish", Sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0 !important;
}

.contact-addresses-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-address-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.contact-phone {
  transition: opacity 0.2s ease;
}

.contact-phone:hover {
  opacity: 0.7;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--theme-color);
  border-radius: 50%;
  flex-shrink: 0;
  color: #fff;
}

.contact-icon svg {
  width: 16px;
  height: 16px;
}

.contact-text {
  font-size: 15px;
  line-height: 1.6;
  padding-top: 4px;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .contact-addresses-wrapper {
    gap: 30px;
  }

  .contact-address-block .widget_title {
    font-size: 22px;
  }

  .contact-icon {
    width: 36px;
    height: 36px;
  }

  .contact-text {
    font-size: 14px;
    padding-top: 6px;
  }
}
.about-box {
  max-width: none !important;
}
.footer-about {
  color: #fff;
}

.scroll-to-top {
  position: fixed;
  bottom: 0;
  right: 30px;
  width: 60px;
  height: 80px;
  background: var(--theme-color);
  color: white;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 100% 35%, 100% 100%, 0% 100%, 0% 35%);
  padding: 0;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: var(--theme-color);
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
  margin-top: -5px;
}

@media (max-width: 768px) {
  .scroll-to-top {
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .scroll-to-top svg {
    width: 20px;
    height: 20px;
  }
  .th-product.list-view {
    flex-direction: column;
  }
  .th-product.list-view .product-img {
    aspect-ratio: 1.5 / 1 !important;
  }
  .th-product.list-view .product-text {
    display: block !important;
    margin-top: 12px;
  }
}

/* Веган */
.vegan-bg,
.vegan-ru,
.vegan-uk {
  background-color: #2e7d32 !important; /* Зеленый - ассоциация с растительной пищей */
}
/* Змиорка (угорь) */
.ugor,
.vugor,
.zmiorka {
  background-color: #834b43 !important; /* Коричневый - цвет угря/унаги */
}
/* Рак (краб) */
.krab-ru,
.krab-uk,
.rak {
  background-color: #d32f2f !important; /* Красно-оранжевый - цвет вареного краба */
}
/* Пиле (курица) */
.kuritsa,
.kurka,
.pile {
  background-color: #a03a0b !important; /* Песочно-коричневый - цвет жареной курицы */
}
/* Риба тон (тунец) */
.tunets-uk,
.tunets-ru,
.ryba-ton {
  background-color: #8b1a1a !important; /* Темно-красный - цвет мяса тунца */
}
/* Скарида (креветка) */
.krevetka-ru,
.krevetka-uk,
.skarida {
  background-color: #e7426b !important; /* Оранжево-коралловый - цвет вареной креветки */
}
/* Сьомга (лосось) */
.syomga,
.losos-uk,
.losos-ru {
  background-color: #ff4656 !important; /* Светло-розовый - нежный цвет лосося */
}

ul.footer-payments__list {
  list-style: none;
  padding: 0;
}

/* Фикс макета чекаута - предотвращаем прыжки */
.custom-checkout-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.custom-checkout-left {
  flex: 1 1 60%;
  min-width: 0;
  order: 1;
}

.custom-checkout-right-container {
  flex: 1 1 35%;
  min-width: 300px;
  order: 2;
}

/* Делаем корзину sticky */
.custom-checkout-right {
  position: sticky;
  top: 20px;
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

/* При обновлении чекаута предотвращаем скачки */
.woocommerce-checkout.processing {
  min-height: 100vh;
}

.custom-checkout-wrapper.processing .custom-checkout-left,
.custom-checkout-wrapper.processing .custom-checkout-right-container {
  opacity: 0.6;
  pointer-events: none;
}

/* Адаптив - на мобильных корзина внизу */
@media (max-width: 991px) {
  .custom-checkout-left {
    order: 1;
    flex: 1 1 100%;
  }

  .custom-checkout-right-container {
    order: 2;
    flex: 1 1 100%;
  }

  .custom-checkout-right {
    position: static;
  }
}

/* Предотвращаем резкие скачки при показе ошибок */
.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
  margin-bottom: 20px;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Фикс для полей с ошибками */
.checkout-inline-error-message {
  color: var(--theme-color);
  font-size: 13px;
  margin-top: 5px;
  display: block;
}

input.error-field,
textarea.error-field,
select.error-field {
  border-color: var(--theme-color) !important;
}

/* Стили для ошибок валидации */
.checkout-inline-error-message {
  color: var(--theme-color);
  font-size: 13px;
  margin-top: 5px;
  display: block;
  font-weight: normal;
}

input.error-field,
textarea.error-field,
select.error-field {
  border-color: var(--theme-color) !important;
  background-color: #fff5f5 !important;
}

/* Общие ошибки WooCommerce */
.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 4px;
  animation: slideDown 0.3s ease;
}

.woocommerce-error {
  background: #fff5f5;
  border-left: 4px solid var(--theme-color);
  color: var(--theme-color);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Лейблы с ошибками */
label:has(.error-field) {
  position: relative;
}
.menu-close-btn {
  display: none;
}
.fa-light,
.fal,
.fa-regular,
.far {
  font-weight: 600 !important;
}

.related-products-section {
  margin: 60px 0;
  padding: 40px 0;
}

.related-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.popular-products-slider {
  position: relative;
}

.related-product-item {
  padding: 0 15px;
  text-align: center;
}

.product-image-link {
  display: block;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 8px;
}

.product-image {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.product-image-link:hover .product-image {
  transform: scale(1.05);
}

.product-content {
  padding: 15px;
}

.product-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  min-height: 50px;
}

.product-title a {
  color: #333;
  text-decoration: none;
}

.product-title a:hover {
  color: var(--theme-color);
}

.product-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  min-height: 60px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding: 10px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.product-unit {
  font-size: 14px;
  color: #999;
}

.product-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--theme-color_original);
}
.summary-content > .price,
.product-about > .price {
  color: var(--theme-color_original) !important;
}
.product-actions {
  margin-top: 15px;
}

.add-to-cart-btn {
  display: inline-block;
  width: 100%;
  padding: 12px 20px;
  background: var(--theme-color);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
  background: var(--theme-color);
  color: #fff;
}

.out-of-stock {
  display: inline-block;
  padding: 12px 20px;
  background: #ccc;
  color: #666;
  border-radius: 5px;
}

/* Slick стрелки */
.popular-products-slider .slick-prev,
.popular-products-slider .slick-next {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--theme-color);
  border-radius: 50%;
  z-index: 10;
}

.popular-products-slider .slick-prev {
  left: -50px;
}

.popular-products-slider .slick-next {
  right: -50px;
}

.popular-products-slider .slick-prev:before,
.popular-products-slider .slick-next:before {
  font-size: 20px;
}

@media (max-width: 1200px) {
  .popular-products-slider .slick-prev {
    left: 0;
  }

  .popular-products-slider .slick-next {
    right: 0;
  }
}
.popular-products-slider .product-image-link {
  aspect-ratio: 1.5 / 1 !important;
}
.popular-products-slider .product-image-link .product-image {
  height: 100%;
  object-fit: cover;
}
.popular-products-slider .product-description {
  min-height: 120px !important;
}

.food-menu_price,
.sushi-tag-link,
.percentage,
.product-price .price,
.woocommerce-Price-amount,
.amount {
  color: var(--theme-color_original) !important;
}
.badge {
  background-color: var(--theme-color_original) !important;
  top: 4px !important;
  right: 4px !important;
  padding: 0.3em 0.5em !important;
}

.random-btn .sushi-label {
  color: #111010 !important;
}
/* -------------------------------------------------------------------------------------*/

@media (max-width: 1399px) {
  html .arrow-wrap .slick-arrow {
    display: inline-block !important;
  }
}

@media screen and (max-width: 1024px) {
  .menu-tabs .nav-link {
    font-size: 12px !important;
    padding: 0 16px !important;
  }
  .elementor-widget-pizzergroupimage2 .img1 {
    display: flex;
    justify-content: center;
  }
  .elementor-widget-pizzergroupimage2 .img1 img {
    max-width: 400px;
  }
  .sushi-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }
  .sushi-item.item-1 {
    grid-area: 1 / 1 / 2 / 4;
  }
  .sushi-item.item-2 {
    grid-area: 1 / 4 / 2 / 7;
  }
  .sushi-item.item-3 {
    grid-area: 2 / 1 / 3 / 3;
  }
  .sushi-item.item-4 {
    grid-area: 2 / 3 / 3 / 5;
  }
  .sushi-item.item-5 {
    grid-area: 2 / 5 / 3 / 7;
  }
  .sushi-item.item-6 {
    grid-area: 3 / 1 / 4 / 4;
  }
  .sushi-item.item-7 {
    grid-area: 3 / 4 / 4 / 7;
  }
  .sushi-item.item-8 {
    grid-area: 4 / 1 / 5 / 4;
  }
  .sushi-item.item-9 {
    grid-area: 4 / 4 / 5 / 7;
  }
}
/* ===== МОБИЛЬНАЯ АДАПТАЦИЯ ХЕДЕРА ===== */

@media (max-width: 991px) {
  /* Основной контейнер хедера */
  .header-layout5 {
    flex-direction: column !important;
    padding: 10px 15px !important;
  }
  .top-bar-menu {
    position: absolute;
  }
  .menu-close-btn {
    display: block;
  }
  /* Лого секция */
  .logo-bg {
    width: 100% !important;
    justify-content: space-between !important;
    padding: 10px 0 !important;
  }

  .logo-bg .elementor-widget-image {
    max-width: 150px !important;
  }

  .logo-bg .elementor-widget-image img {
    max-height: 60px !important;
    width: auto !important;
  }

  .phone-block {
    order: 1;
    padding-top: 4px;
  }
  .lang-block {
    order: 2 !important;
  }

  /* Контейнер с меню и кнопками */
  .elementor-element-e21f75d {
    width: 100% !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 10px !important;
    margin-top: 10px !important;
  }
  .menu-section {
    padding-left: 80px;
    padding-top: 32px;
    align-items: center;
  }
  .menu-container {
    width: auto;
    margin-block-start: 0 !important;
    margin-top: 0 !important;
    order: 3 !important;
  }
  /* Контейнер с бургером */
  #menu-toggle {
    position: relative !important;
    cursor: pointer !important;

    width: auto;
  }

  /* Иконка бургера */
  #menu-toggle::before {
    content: "☰";
    font-size: 32px;
    color: #fff;
    display: block !important;
    cursor: pointer;
    line-height: 1;
  }

  /* Прячем nav внутри toggle */
  #menu-toggle .main-navigation:not(.menu-open) {
    position: fixed !important;
    left: -9999px !important;
    top: -9999px !important;
  }

  /* Меню - выезжающее слева */
  .main-navigation {
    position: fixed !important;
    top: 0 !important;
    left: -280px !important;
    width: 280px !important;
    height: 100vh !important;
    background: #1a1a1a !important;
    z-index: 99999 !important;
    transition: left 0.3s ease !important;
    padding: 60px 20px 20px !important;
    overflow-y: auto !important;
    margin: 0 !important;
  }

  .main-navigation.menu-open {
    left: 0 !important;
  }

  /* Убираем псевдоэлемент */
  .main-navigation::before,
  .main-navigation::after {
    display: none !important;
  }

  /* Кнопка закрытия (создается в JS) */
  .menu-close-btn {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    width: 40px !important;
    height: 40px !important;
    background: transparent !important;
    border: none !important;
    color: #fff !important;
    font-size: 35px !important;
    cursor: pointer !important;
    padding: 0 !important;
    line-height: 40px !important;
    font-weight: 300 !important;
  }

  .menu-close-btn:hover {
    color: var(--theme-color) !important;
  }

  /* Оверлей */
  body.menu-open::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99998;
  }

  /* Меню */
  .main-navigation .main-menu {
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .main-navigation .main-menu li {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: 1px solid #333 !important;
    list-style: none !important;
  }

  .main-navigation .main-menu li a {
    display: block !important;
    padding: 15px 0 !important;
    color: #fff !important;
    font-size: 18px !important;
    text-decoration: none !important;
  }

  .main-navigation .main-menu li a:hover {
    color: var(--theme-color) !important;
  }

  /* Корзина - фиксированная справа */
  .rhs-cart__toggler {
    position: fixed !important;
    top: 50% !important;
    right: 0 !important;
    transform: translateY(-50%) !important;
    z-index: 9997 !important;
    background: var(--theme-color) !important;
    padding: 15px 10px !important;
    border-radius: 8px 0 0 8px !important;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3) !important;
    border: none !important;
  }

  .rhs-cart__toggler svg {
    width: 28px !important;
    height: 28px !important;
    color: #fff !important;
  }
  /* Языковой переключатель */
  .elementor-element-716fef2 {
    order: 3;
  }

  .lang-dropdown-toggle {
    padding: 8px 12px !important;
    font-size: 14px !important;
  }

  #menu-menu.fixed {
    top: 174px !important;
    padding: 10px 12px 0 12px;
  }
  .category-anchor-menu,
  .menu-tabs {
    gap: 4px !important;
  }
  .menu-tabs {
    margin: 0 0 12px 0 !important;
  }
  .category-anchor-item,
  .menu-tabs .nav-link {
    width: 64px;
    height: auto !important;
    padding: 0 4px !important;
    border-right: none !important;
  }
  .menu-tabs .nav-link {
    width: calc((100% / 6) - 8px) !important;
    width: -webkit-calc((100% / 6) - 8px) !important;
    font-size: 0.6rem !important;
    line-height: 1.2 !important;
    text-align: center !important;
  }
  .category-anchor-item img,
  .menu-tabs .nav-link img {
    width: 64px !important;
    height: auto !important;
  }
  .category-anchor-item .term-name {
    font-size: 0.6rem !important;
    text-align: center;
  }
  .th-product.list-view .product-title {
    font-size: 0.875rem !important;
    line-height: 1.2 !important;
    margin: 0 !important;
  }
  .th-product.list-view .product-price {
    position: absolute;
    right: 12px;
    top: 12px;
  }
  .th-product.list-view .product-content {
    padding: 48px 12px 0 12px !important;
  }
  .product-attrs {
    margin: 0 !important;
  }
  .th-product.list-view .actions {
    justify-content: flex-end !important;
  }
  .th-product.list-view .actions .th-btn {
    padding: 0 8px !important;
    font-size: 0.75rem !important;
    line-height: 40px !important;
  }
  .food-menu_img {
    width: auto !important;
    height: auto !important;
  }

  .single-product .product-wrap {
    flex-direction: column;
  }
  .single-product .summary-content .quantity,
  .single-product .product-about .quantity {
    width: 164px !important;
  }
  .single-product .summary-content .quantity .quantity-minus,
  .single-product .product-about .quantity .quantity-minus {
    bottom: 17px;
  }
  .single-product .summary-content .quantity .quantity-plus,
  .single-product .product-about .quantity .quantity-plus {
    top: 18px;
    right: 62px;
  }
}

/* Дополнительно для очень маленьких экранов */
@media (max-width: 480px) {
  .logo-bg .elementor-widget-image {
    max-width: 120px !important;
  }

  .phone-number {
    font-size: 12px !important;
  }

  .main-navigation .main-menu {
    width: 100%;
    max-width: 280px;
  }
}
@media screen and (max-width: 768px) {
  .sushi-grid {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }
  .sushi-grid .sushi-item .overlay {
    top: 4px;
    right: 4px;
    bottom: 4px;
    left: 4px;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
  }
  .sushi-grid .sushi-item .title {
    margin-left: 0;
    font-size: 1rem !important;
  }
  .sushi-grid .sushi-item.item-3 .title,
  .sushi-grid .sushi-item.item-4 .title,
  .sushi-grid .sushi-item.item-5 .title {
    font-size: 0.65rem !important;
  }
  .sushi-random-intro {
    font-size: 1.6rem;
    line-height: 1.2;
    padding-inline: 8px;
  }
  .menu-tabs .nav-link {
    height: auto;
  }
  .offer-pattern .pattern-title1 {
    font-size: 2.4rem !important;
  }
  .offer-pattern .pattern-title2 {
    font-size: 3.6rem !important;
  }
  .offer-pattern .offer-title,
  .offer-pattern .pattern-title1,
  .offer-pattern .pattern-title2 {
    text-align: left;
  }
  .header-layout5 {
    padding: 0 !important;
  }
  .header-layout5 .logo-bg:before {
    display: none !important;
  }
  .header-layout5 .logo-bg {
    background-color: transparent !important;
    top: 40px !important;
    bottom: auto !important;
    left: 4px !important;
    width: 60px !important;
    height: fit-content !important;
    padding-bottom: 0 !important;
  }
  .header-layout5 .logo-bg img {
    width: 100% !important;
    height: auto !important;
  }
}
