:root {
  --iris-dark: #0b1020;
  --iris-dark-2: #111827;
  --iris-card: #ffffff;
  --iris-soft: #f8fafc;
  --iris-line: #e5e7eb;
  --iris-muted: #64748b;
  --iris-text: #0f172a;
  --iris-orange: #f97316;
  --iris-orange-dark: #ea580c;
  --iris-blue: #2563eb;
  --iris-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
  --iris-shadow-strong: 0 28px 80px rgba(15, 23, 42, 0.22);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

html {
  scroll-padding-top: 84px;
}

body,
button,
input,
select,
textarea {
  font-family: Inter,
    "Instrument Sans",
    Montserrat,
    "Open Sans",
    Arial,
    sans-serif;
  font-optical-sizing: auto;
}

body {
  background: #ffffff;
}

.site-container {
  width: min(100% - 40px, 1220px);
  margin-inline: auto;
}

a,
button,
summary,
label,
input,
textarea,
select,
.restaurant-menu-card,
.restaurant-add-button,
.mobile-menu-panel a,
.order-steps button {
  -webkit-tap-highlight-color: transparent !important;
}

a:focus,
a:active,
button:focus,
button:active,
summary:focus,
summary:active,
.mobile-menu-panel a:focus,
.mobile-menu-panel a:active,
.restaurant-add-button:focus,
.restaurant-add-button:active,
.home-section-link:focus,
.home-section-link:active,
.nav-contact-link:focus,
.nav-contact-link:active,
.black-iris-hero-button:focus,
.black-iris-hero-button:active {
  outline: none !important;
}

html.mobile-menu-is-open,
body.mobile-menu-is-open,
html.menu-detail-is-open,
body.menu-detail-is-open,
html.order-success-is-open,
body.order-success-is-open {
  width: 100%;
  height: 100%;
  overflow: hidden !important;
  touch-action: none;
}

.iris-site-header {
  position: fixed;
  inset: 0 0 auto 0;
  width: 100%;
  z-index: 220;
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.iris-header-inner,
.iris-site-header .site-container {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.iris-home-main,
.restaurant-page-main,
.blog-page-main,
.contacts-page-main,
.site-main {
  padding-top: 60px;
  background: #ffffff;
}

.site-logo {
  color: var(--iris-dark);
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.04em;
  white-space: nowrap;
  text-decoration: none;
}

.site-logo-image-link,
.site-logo-image {
  display: none !important;
}

.site-nav,
.mobile-header-actions {
  align-items: center;
  gap: 10px;
}

.site-nav {
  display: flex;
}

.mobile-header-actions {
  display: none;
  gap: 6px;
}

.site-nav a,
.mobile-header-actions > a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border-radius: 999px;
  color: #111827;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none;
}

.restaurant-page-hero-card.order-hero-card .home-eyebrow {
  display: none;
}

.site-nav a:hover,
.mobile-header-actions > a:hover {
  background: #f1f5f9;
}

.site-nav a:active,
.site-nav a:focus,
.mobile-header-actions > a:active,
.mobile-header-actions > a:focus,
.mobile-menu-panel a:active,
.mobile-menu-panel a:focus {
  background-color: transparent !important;
  box-shadow: none !important;
}

.nav-contact-link,
.home-section-link {
  border: 0;
  background: var(--iris-dark);
  color: #ffffff !important;
  text-decoration: none;
  transition: background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.nav-contact-link {
  font-weight: 700 !important;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
}

.nav-contact-link:hover,
.home-section-link:hover {
  background: #ffffff !important;
  color: var(--iris-dark) !important;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  transform: translateY(-1px);
}

.nav-contact-link:active,
.nav-contact-link:focus,
.home-section-link:active,
.home-section-link:focus,
.black-iris-hero-button:active,
.black-iris-hero-button:focus,
.restaurant-add-button:active,
.restaurant-add-button:focus {
  transform: none !important;
}

.mobile-menu {
  position: relative;
}

.mobile-menu summary {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--iris-dark);
  cursor: pointer;
  list-style: none;
  transition: background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary:hover {
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
  transform: translateY(-1px);
}

.mobile-menu-icon {
  width: 21px;
  height: 21px;
  display: block;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 0.18s ease,
    transform 0.18s ease,
    stroke 0.18s ease;
}

.mobile-menu summary:hover .mobile-menu-icon {
  stroke: var(--iris-dark);
}

.mobile-menu-icon-close,
.mobile-menu-panel-close-zone {
  display: none;
}

.mobile-menu[open] .mobile-menu-icon-open {
  display: none;
}

.mobile-menu[open] .mobile-menu-icon-close {
  display: block;
}

.mobile-menu-panel {
  position: fixed;
  top: 68px;
  right: 14px;
  z-index: 520;
  width: min(300px, calc(100vw - 28px));
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 28px 90px rgba(15, 23, 42, 0.25);
}

.mobile-menu-panel a {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--iris-text);
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
}

.mobile-menu-panel a:hover {
  background: #f8fafc;
}

.mobile-menu-primary-link {
  order: 92;
  margin-top: 0;
  background: var(--iris-dark);
  color: #ffffff !important;
}

.mobile-language-switcher,
.mobile-menu-language-switcher {
  order: 90;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
}

.mobile-language-switcher a,
.mobile-menu-language-switcher a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 32px !important;
  padding: 6px 10px !important;
  border: 1px solid #e2e8f0;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: #334155 !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  text-decoration: none;
}

.mobile-language-switcher a.active,
.mobile-menu-language-switcher a.active {
  border-color: var(--iris-orange) !important;
  background: #fff7ed !important;
  color: var(--iris-orange-dark) !important;
}

.mobile-menu-divider {
  display: block;
  height: 1px;
  margin: 4px 0;
  background: #e5e7eb;
}

.mobile-menu-main-link {
  background: #f8fafc;
  color: var(--iris-dark) !important;
  font-weight: 650 !important;
}

.mobile-menu-category-link {
  margin-left: 14px;
  min-height: 34px !important;
  padding: 7px 10px !important;
  border-radius: 12px !important;
  color: #475569 !important;
  font-size: 12px !important;
  font-weight: 600 !important;
}

.mobile-menu-delivery-link {
  order: 91;
  min-height: 44px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  border-radius: 18px !important;
  background: var(--iris-orange) !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  box-shadow: 0 16px 34px rgba(249, 115, 22, 0.22);
}

.menu-category-section,
.restaurant-page-section,
.home-top-food-section,
.home-top-drinks-section,
.home-daily-lunch-section,
.home-news-section,
.home-reviews-section,
.home-accordion-section,
.home-contact-section,
.black-iris-hero-section {
  scroll-margin-top: 84px;
}

.iris-section {
  padding: 78px 0;
  background: #ffffff;
}

.home-section-header-modern,
.menu-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.home-section-header-modern h2,
.menu-section-header h2 {
  margin: 0;
  color: var(--iris-text);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.home-section-header-modern h2 {
  font-size: clamp(38px, 5vw, 60px);
}

.menu-section-header h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.home-section-header-modern p,
.menu-section-header p {
  max-width: 620px;
  margin: 16px 0 0;
  color: #475569;
  font-size: 17px;
  font-weight: 540;
  line-height: 1.65;
}

.menu-section-header p {
  max-width: 560px;
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.6;
}

.home-section-link {
  width: fit-content;
  min-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 400;
  white-space: nowrap;
}

.home-empty-text,
.menu-empty,
.blog-page-empty {
  margin: 0;
  padding: 22px 24px;
  border-radius: 22px;
  background: #ffffff;
  color: var(--iris-muted);
  box-shadow: var(--iris-shadow);
}

.home-eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.14);
  color: var(--iris-orange);
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.black-iris-hero-section {
  background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.12), transparent 28%),
    linear-gradient(180deg, #fff7ed 0%, #ffffff 100%) !important;
}

.black-iris-hero-card {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  width: 100% !important;
  min-height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--iris-dark) !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.black-iris-hero-content {
  position: relative !important;
  z-index: 8 !important;
  max-width: none !important;
  width: 100% !important;
  padding-top: 0 !important;
  display: none !important;
}

.black-iris-hero-eyebrow {
  display: block !important;
  margin: 0 0 12px !important;
  color: var(--iris-dark) !important;
  font-size: clamp(18px, 1.55vw, 24px) !important;
  font-weight: 300 !important;
  line-height: 1.1 !important;
}

.black-iris-hero-content h1 {
  position: relative !important;
  z-index: 8 !important;
  max-width: none !important;
  margin: 0 !important;
  color: var(--iris-dark) !important;
  font-size: 132px !important;
  font-weight: 700 !important;
  line-height: 0.86 !important;
  letter-spacing: -0.085em !important;
  white-space: nowrap !important;
}

.black-iris-hero-content p,
.black-iris-hero-mobile-description {
  display: none !important;
}

.black-iris-hero-actions {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 12px !important;
  margin: 20px 0 36px !important;
}

.black-iris-hero-button {
  position: relative !important;
  z-index: 9 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  min-width: 0 !important;
  min-height: 38px !important;
  margin: 0 !important;
  padding: 0 26px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--iris-orange) !important;
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  box-shadow: none !important;
  transform: none !important;
  transition: background-color 180ms ease, color 180ms ease !important;
}

.black-iris-hero-button::after {
  content: none !important;
}

.black-iris-hero-button:hover,
.black-iris-hero-button:focus-visible,
.black-iris-hero-button:active {
  background: #ffffff !important;
  color: var(--iris-orange) !important;
  box-shadow: none !important;
  transform: none !important;
}

.black-iris-hero-gallery {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-height: clamp(340px, 32vw, 450px) !important;
  margin: 0 auto !important;
  overflow: visible !important;
  transform: none !important;
  transform-origin: center center;
}

.black-iris-hero-photo {
  position: absolute !important;
  display: block !important;
  overflow: hidden !important;
  max-width: none !important;
  margin: 0 !important;
  border: 5px solid #ffffff !important;
  border-radius: 0 !important;
  background-position: center center !important;
  background-size: cover !important;
  box-shadow: none !important;
  transform-origin: center center !important;
}

.black-iris-hero-photo-1 {
  left: 105px !important;
  top: 66px !important;
  z-index: 4 !important;
  width: clamp(168px, 16vw, 236px) !important;
  height: clamp(260px, 24vw, 350px) !important;
  transform: rotate(-5deg) !important;
}

.black-iris-hero-photo-2 {
  left: 286px !important;
  top: 114px !important;
  z-index: 7 !important;
  width: clamp(160px, 15vw, 224px) !important;
  height: clamp(238px, 21.5vw, 318px) !important;
  transform: rotate(5deg) !important;
}

.black-iris-hero-photo-3 {
  right: clamp(0px, 2vw, 32px) !important;
  top: 51px !important;
  bottom: auto !important;
  z-index: 6 !important;
  width: min(74%, 720px) !important;
  height: auto !important;
  aspect-ratio: 617 / 322 !important;
}

@media (max-width: 1440px) and (min-width: 900px) {
  .black-iris-hero-section > .site-container {
    position: relative !important;
  }

  .black-iris-hero-content h1 {
    font-size: clamp(72px, 8.4vw, 118px) !important;
    line-height: 0.9 !important;
  }

  .black-iris-hero-gallery {
    max-width: 1220px !important;
    min-height: clamp(330px, 32vw, 460px) !important;
  }

  .black-iris-hero-photo-1 {
    left: clamp(64px, 11%, 134px) !important;
    top: clamp(52px, 16%, 74px) !important;
    width: clamp(145px, 16.5%, 235px) !important;
    height: auto !important;
    aspect-ratio: 0.67 / 1 !important;
    z-index: 2 !important;
  }

  .black-iris-hero-photo-2 {
    left: clamp(150px, 25%, 305px) !important;
    top: clamp(92px, 29%, 134px) !important;
    width: clamp(140px, 15.6%, 225px) !important;
    height: auto !important;
    aspect-ratio: 0.7 / 1 !important;
    z-index: 3 !important;
  }

  .black-iris-hero-photo-3 {
    left: clamp(350px, 39%, 476px) !important;
    right: auto !important;
    top: clamp(44px, 13%, 70px) !important;
    width: clamp(430px, 54%, 720px) !important;
    max-width: none !important;
    z-index: 1 !important;
  }
}

@media (max-width: 1180px) and (min-width: 900px) {
  .black-iris-hero-section > .site-container {
    min-height: clamp(490px, 48vw, 560px) !important;
  }

  .black-iris-hero-card {
    min-height: clamp(470px, 46vw, 540px) !important;
  }

  .black-iris-hero-gallery {
    min-height: clamp(320px, 35vw, 410px) !important;
  }

  .black-iris-hero-photo-1 {
    left: 13% !important;
    top: clamp(50px, 15%, 68px) !important;
    width: clamp(138px, 16%, 174px) !important;
  }

  .black-iris-hero-photo-2 {
    left: 27% !important;
    top: clamp(86px, 30%, 118px) !important;
    width: clamp(132px, 15.2%, 166px) !important;
  }

  .black-iris-hero-photo-3 {
    left: 40% !important;
    top: clamp(44px, 13%, 62px) !important;
    width: clamp(410px, 54%, 560px) !important;
  }
}

@media (max-width: 900px) {
  .black-iris-hero-section {
    padding: 22px 0 30px !important;
  }

  .black-iris-hero-section > .site-container,
  .black-iris-hero-card {
    min-height: 0 !important;
  }

  .black-iris-hero-card {
    gap: 0 !important;
  }

  .black-iris-hero-content {
    padding-top: 0 !important;
  }

  .black-iris-hero-eyebrow {
    margin-bottom: 8px !important;
    font-size: 18px !important;
    line-height: 1.1 !important;
  }

  .black-iris-hero-content h1 {
    font-size: clamp(42px, 10vw, 62px) !important;
    line-height: 0.92 !important;
    letter-spacing: -0.075em !important;
  }

  .black-iris-hero-mobile-description {
    display: block !important;
    max-width: 520px !important;
    margin: 10px 0 0 !important;
    color: #1f2937 !important;
    font-size: 16px !important;
    line-height: 1.38 !important;
  }

  .black-iris-hero-actions {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    margin: 15px 0 10px !important;
  }

  .black-iris-hero-button {
    min-height: 39px !important;
    padding: 0 20px !important;
    font-size: 15px !important;
  }

  .black-iris-hero-gallery {
    width: 100% !important;
    max-width: 520px !important;
    min-height: 0 !important;
    height: auto !important;
    margin: 10px auto 0 !important;
  }

  .black-iris-hero-photo {
    display: none !important;
  }

  .black-iris-hero-photo-3 {
    position: relative !important;
    inset: auto !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
    border-width: 4px !important;
    border-radius: 12px !important;
    aspect-ratio: 617 / 322 !important;
  }
}

.iris-hero-section {
  padding: 54px 0;
  background: radial-gradient(circle at 86% 12%, rgba(249, 115, 22, 0.28), transparent 28%),
    linear-gradient(135deg, #0b1020 0%, #111827 55%, #0f172a 100%);
}

.iris-lunch-card {
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: 0;
  overflow: hidden;
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    #101827;
  box-shadow: var(--iris-shadow-strong);
}

.iris-lunch-card .home-daily-lunch-content {
  display: flex;
  flex-direction: column;
  padding: 62px 54px;
}

.iris-lunch-card .home-daily-lunch-content h1 {
  max-width: 520px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(48px, 5.2vw, 82px);
  line-height: 0.95;
  letter-spacing: 0;
}

.home-daily-lunch-day {
  margin-top: 22px;
  color: #fed7aa;
  font-size: 22px;
  font-weight: 600;
}

.home-daily-lunch-name {
  margin: 18px 0 0;
  color: #ffffff;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.home-daily-lunch-description {
  display: none;
}

.home-daily-lunch-included {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 500 !important;
  line-height: 1.55;
}

.home-daily-lunch-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: auto;
  padding-top: 34px;
}

.home-daily-lunch-price span {
  color: #ffffff;
  font-size: 42px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.home-daily-lunch-price small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 17px;
  font-weight: 800;
  text-decoration: line-through;
}

.home-daily-lunch-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
  aspect-ratio: 7 / 5;
  overflow: hidden;
  border-radius: 0 38px 38px 0;
}

.home-daily-lunch-image,
.home-daily-lunch-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: block;
  object-fit: cover;
}

.home-daily-lunch-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.34), transparent 42%);
  pointer-events: none;
}

.home-daily-lunch-image-placeholder {
  position: relative;
  background: radial-gradient(circle at 50% 42%, rgba(249, 115, 22, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent),
    #111827;
}

.home-daily-lunch-image-placeholder::before {
  content: "";
  position: absolute;
  inset: 44px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: 28px;
}

.iris-lunch-empty {
  min-height: 230px;
  padding: 42px;
  border-radius: 34px;
  background: #101827;
  color: #ffffff;
  box-shadow: var(--iris-shadow-strong);
}

.iris-lunch-empty h1 {
  margin: 0 0 12px;
  font-size: 48px;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.iris-lunch-empty p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.restaurant-page-hero,
.blog-page-hero,
.blog-article-hero {
  overflow: hidden;
  padding: 58px 0 34px;
  background: radial-gradient(circle at 86% 12%, rgba(249, 115, 22, 0.18), transparent 28%),
    linear-gradient(135deg, #0b1020 0%, #111827 100%);
}

.blog-page-hero,
.blog-article-hero {
  padding: 48px 0 52px;
  background: radial-gradient(circle at 84% 12%, rgba(249, 115, 22, 0.24), transparent 30%),
    linear-gradient(135deg, #07101f 0%, #111827 54%, #1f2937 100%);
}

.blog-article-hero {
  padding-bottom: 54px;
}

.restaurant-page-hero-card {
  max-width: 850px;
  padding: 0px;
  border-radius: 34px;
  background: transparent;
  color: #ffffff;
  box-shadow: none;
}

.contacts-hero-card {
  max-width: 920px;
}

.blog-page-hero-card {
  max-width: 900px;
}

.blog-article-hero-card {
  max-width: 980px;
}

.restaurant-page-hero-card h1 {
  margin: 0;
  font-size: clamp(46px, 6vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.home-section.home-top-food-section.iris-section {
  padding-top: 0 !important;
}

.restaurant-page-hero-card p {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.65;
}

.restaurant-page-section {
  padding: 70px 0 88px;
}

.contacts-page {
  padding: 0 0 88px;
}

.restaurant-menu-grid,
.home-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.home-menu-grid {
  grid-auto-rows: 1fr;
}

.restaurant-menu-card {
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 0;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--iris-shadow);
  transition: transform 0.18s ease,
    box-shadow 0.18s ease;
}

.restaurant-menu-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
}

.restaurant-menu-card-image,
.restaurant-menu-card-image-empty {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #e5e7eb;
}

.restaurant-menu-card-image-empty {
  background: radial-gradient(circle at 50% 38%, rgba(249, 115, 22, 0.18), transparent 30%),
    #f1f5f9;
}

.restaurant-menu-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.restaurant-menu-card-badges {
  min-height: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.restaurant-badge {
  width: fit-content;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #334155;
  font-size: 11px;
  font-weight: 900;
}

.restaurant-badge.top {
  background: #ecfdf5;
  color: #047857;
}

.restaurant-badge.promo {
  background: #fff7ed;
  color: #c2410c;
}

.restaurant-badge.muted {
  background: #f1f5f9;
  color: #64748b;
}

.restaurant-menu-card h3 {
  margin: 0 0 10px;
  color: var(--iris-text);
  font-size: 21px;
  font-weight: 920;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.restaurant-menu-card p {
  margin: 0;
  color: #475569;
  font-size: 14px;
  font-weight: 540;
  line-height: 1.5;
}

.restaurant-menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 20px;
}

.restaurant-price {
  display: grid;
  gap: 4px;
}

.restaurant-price-new {
  color: var(--iris-text);
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.restaurant-price-old {
  color: #94a3b8;
  font-size: 14px;
  font-weight: 800;
  text-decoration: line-through;
}

.restaurant-add-button {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--iris-orange);
  color: #ffffff;
  font-weight: 400;
  cursor: pointer;
  box-shadow: 0 13px 26px rgba(249, 115, 22, 0.3);
  transition: background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.restaurant-add-button:hover {
  background: #ffffff;
  color: var(--iris-orange);
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.16);
  transform: translateY(-1px);
}

.restaurant-add-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.restaurant-add-icon {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-category-section {
  margin-top: 62px;
}

.menu-category-section:first-child,
.menu-top-section {
  margin-top: 0;
}

.home-news-grid,
.blog-news-grid {
  display: grid;
  gap: 26px;
}

.home-news-card,
.blog-news-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(360px, 0.42fr) minmax(0, 1fr);
  align-items: stretch;
  border: 0;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--iris-shadow);
}

.home-news-card-image {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: block;
  aspect-ratio: 1200 / 630;
  object-fit: contain;
  background: #ffffff;
}

.home-news-card-image-empty {
  background: radial-gradient(circle at 50% 38%, rgba(249, 115, 22, 0.25), transparent 30%),
    #111827;
}

.home-news-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
}

.news-date {
  margin-bottom: 12px;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.home-news-card h3,
.blog-news-card h3 {
  margin: 0;
  color: var(--iris-text);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 920;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.blog-news-card h3 {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
}

.home-news-card h3 a {
  color: inherit;
  text-decoration: none;
}

.home-news-card p,
.blog-news-card p {
  margin: 14px 0 0;
  color: #475569;
  font-size: 16px;
  font-weight: 540;
  line-height: 1.65;
}

.blog-news-card p {
  line-height: 1.6;
}

.home-news-card-link {
  width: fit-content;
  margin-top: 18px;
  color: var(--iris-orange-dark);
  font-weight: 800;
  text-decoration: none;
  transition: color 0.2s ease,
    transform 0.2s ease;
}

.home-news-card-link:hover {
  color: var(--iris-dark);
  transform: translateX(2px);
}

.blog-page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.blog-page-hero-actions .home-section-link {
  display: none;
}

.blog-page-secondary-link {
  background: #ffffff;
  color: var(--iris-dark);
}

.blog-page-secondary-link:hover {
  background: var(--iris-dark);
  color: #ffffff;
}

.blog-page-news-section {
  padding: 54px 0 92px;
}

.blog-news-card {
  min-height: 300px;
}

.blog-news-card .home-news-card-image {
  min-height: 300px;
}

.blog-news-card .home-news-card-content {
  padding: 28px 42px;
}

.blog-page-empty {
  padding: 40px;
  border-radius: 28px;
}

.blog-page-empty h2 {
  margin: 0 0 10px;
  color: var(--iris-text);
  font-size: 34px;
  letter-spacing: -0.04em;
}

.blog-page-empty p {
  margin: 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

.blog-article-main {
  background: #ffffff;
}

.blog-back-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease,
    transform 0.2s ease;
}

.blog-back-link:hover {
  color: #ffffff;
  transform: translateX(-2px);
}

.blog-article-date {
  width: fit-content;
  display: inline-flex;
  margin-top: 24px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fed7aa;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.blog-article-section {
  padding: 64px 0 76px;
  background: #ffffff;
}

.blog-article-card {
  overflow: hidden;
  border-radius: 34px;
  background: #ffffff;
  box-shadow: var(--iris-shadow);
}

.blog-article-image {
  width: 100%;
  display: block;
  aspect-ratio: 1200 / 630;
  object-fit: contain;
  background: #ffffff;
}

.blog-article-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 46px 54px 54px;
  color: #334155;
  font-size: 18px;
  line-height: 1.75;
}

.blog-article-content p {
  margin: 0 0 22px;
}

.blog-article-content p:last-child {
  margin-bottom: 0;
}

.restaurant-reviews-grid,
.home-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.restaurant-review-card,
.home-review-card {
  border: 0;
  border-radius: 26px;
  background: #ffffff;
  padding: 24px;
  box-shadow: var(--iris-shadow);
}

.home-review-stars {
  margin-bottom: 14px;
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 1px;
}

.restaurant-review-card p,
.home-review-card p {
  margin: 0 0 18px;
  color: #334155;
  line-height: 1.6;
}

.restaurant-review-card strong,
.home-review-card strong {
  color: var(--iris-text);
}

.home-accordion-section {
  padding: 78px 0;
  background: #ffffff;
}

.home-accordion-header {
  max-width: none;
}

.home-accordion-header h2,
.home-accordion-header p {
  max-width: 720px;
}

.home-accordion-shell {
  width: 100%;
  max-width: none;
  padding: 32px;
  border: 0;
  border-radius: 34px;
  background: radial-gradient(circle at 90% 10%, rgba(37, 99, 235, 0.08), transparent 28%),
    #ffffff;
  box-shadow: var(--iris-shadow);
}

.home-accordion-list {
  display: grid;
  gap: 12px;
}

.home-accordion-item {
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  background: #f8fafc;
}

.home-accordion-item summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  color: #0f172a;
  font-weight: 950;
  cursor: pointer;
  list-style: none;
}

.home-accordion-item summary::-webkit-details-marker {
  display: none;
}

.home-accordion-body {
  padding: 0 18px 18px;
  color: #475569;
  line-height: 1.6;
}

.home-accordion-body p {
  margin: 0 0 10px;
}

.home-accordion-arrow {
  color: #64748b;
}

.iris-contact-card,
.contacts-info-card,
.review-form-card {
  border: 0;
  border-radius: 34px;
  background: radial-gradient(circle at 90% 10%, rgba(249, 115, 22, 0.08), transparent 26%),
    #ffffff;
  padding: 42px;
  box-shadow: var(--iris-shadow);
}

.iris-contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 36px;
  align-items: start;
  background: radial-gradient(circle at 90% 10%, rgba(249, 115, 22, 0.11), transparent 26%),
    #ffffff;
}

.iris-contact-card h2,
.contacts-info-card h2,
.review-form-card h2 {
  margin: 0;
  color: var(--iris-text);
  font-size: clamp(38px, 5vw, 45px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.iris-contact-card p,
.contacts-info-card p,
.review-form-card p {
  max-width: 520px;
  color: #475569;
  font-size: 16px;
  line-height: 1.65;
}

.iris-contact-details,
.contacts-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.iris-contact-details > .iris-contact-detail-item,
.contacts-details > .iris-contact-detail-item {
  padding: 18px;
  border-radius: 20px;
  background: #f8fafc;
}

.iris-contact-details .iris-contact-detail-label,
.contacts-details .iris-contact-detail-label {
  display: block;
  margin-bottom: 7px;
  color: #64748b;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.iris-contact-details .iris-contact-detail-content strong,
.contacts-details .iris-contact-detail-content strong {
  color: #0f172a;
  font-size: 15px;
  line-height: 1.35;
}

.contacts-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: start;
}

.contacts-details {
  margin-top: 28px;
}

.contacts-details a {
  color: var(--iris-dark);
}

.iris-contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
  color: #0f172a;
  text-decoration: none;
}

.iris-contact-detail-link {
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.iris-contact-detail-link:hover {
  transform: translateY(-1px);
  background: #fff7ed;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.iris-contact-detail-icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ffedd5;
}

.iris-contact-detail-icon-img,
.iris-contact-detail-icon-inline svg {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.iris-contact-detail-icon-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.iris-contact-detail-content {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.iris-contact-detail-item-full {
  grid-column: 1 / -1;
  align-items: center;
  min-height: 66px;
}

.iris-contact-detail-social .iris-contact-detail-icon {
  background: #eef2ff;
}


.review-form {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.review-form label {
  display: grid;
  gap: 7px;
  color: #334155;
  font-size: 14px;
  font-weight: 900;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #dbe3ef;
  border-radius: 16px;
  padding: 12px 14px;
  font: inherit;
  background: #ffffff;
  color: var(--iris-text);
  outline: none;
  transition: border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
  border-color: var(--iris-dark);
  box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.08);
}

.review-form textarea {
  min-height: 150px;
  resize: vertical;
}

.review-consent {
  display: grid !important;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px !important;
  font-weight: 700 !important;
}

.review-consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.review-form button[type="submit"] {
  min-height: 48px;
  border: 0;
  border-radius: 0;
  background: var(--iris-dark);
  color: #ffffff;
  font-weight: 950;
  cursor: pointer;
  transition: background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.review-form button[type="submit"]:hover {
  background: #ffffff;
  color: var(--iris-dark);
  transform: translateY(-1px);
}

.review-form-message {
  min-height: 22px;
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
}

.restaurant-order-floating {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--iris-dark);
  color: #ffffff;
  font-size: 15px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.24);
}

.restaurant-order-floating:hover {
  background: #020617;
}

.restaurant-order-floating span {
  min-width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #ffffff;
  color: var(--iris-dark);
  font-size: 13px;
}

.restaurant-order-modal[hidden] {
  display: none;
}

.restaurant-order-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
}

.restaurant-order-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.56);
  backdrop-filter: blur(3px);
}

.restaurant-order-modal-panel {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(430px, calc(100vw - 48px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
}

.restaurant-order-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 22px 18px;
  border-bottom: 1px solid #e5e7eb;
}

.restaurant-order-modal-header span {
  display: inline-flex;
  margin-bottom: 7px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #fff7ed;
  color: var(--iris-orange);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.restaurant-order-modal-header h2 {
  margin: 0;
  color: var(--iris-text);
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.restaurant-order-modal-header button {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border: 0;
  border-radius: 999px;
  background: #f1f5f9;
  color: var(--iris-text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.restaurant-order-items {
  display: grid;
  gap: 10px;
  overflow: auto;
  padding: 14px 16px;
}

.restaurant-order-items > p {
  margin: 0;
  padding: 18px;
  border-radius: 18px;
  background: #f8fafc;
  color: #64748b;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

.restaurant-order-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 20px;
  background: #f8fafc;
}

.restaurant-order-item-title {
  color: var(--iris-text);
  font-size: 16px;
  font-weight: 950;
  line-height: 1.15;
}

.restaurant-order-item-meta {
  margin-top: 6px;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

.restaurant-order-item-actions {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.restaurant-order-item-actions button {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: var(--iris-dark);
  font-size: 16px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.restaurant-order-item-actions button:hover {
  background: var(--iris-dark);
  color: #ffffff;
}

.restaurant-order-modal-footer {
  display: grid !important;
  grid-template-columns: 1fr !important;
  align-items: stretch !important;
  gap: 12px !important;
  padding: 16px 18px 18px;
  border-top: 1px solid #e5e7eb;
  background: #ffffff;
}

.restaurant-order-modal-footer strong {
  width: 100% !important;
  display: block !important;
  color: var(--iris-text);
  font-size: 18px;
  font-weight: 950;
  white-space: nowrap !important;
  letter-spacing: -0.03em;
}

.restaurant-order-modal-footer button {
  border: 0;
  border-radius: 999px;
  background: #fee2e2;
  color: #991b1b;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 950;
  cursor: pointer;
}

.restaurant-order-modal-footer button:hover {
  background: #fecaca;
}

.restaurant-order-modal-actions {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
}

.restaurant-order-modal-actions button {
  width: 100% !important;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 16px;
  background: var(--iris-dark);
  color: #ffffff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.restaurant-order-modal-actions #restaurantOrderClear {
  background: #f1f5f9;
  color: var(--iris-text);
}

.restaurant-order-modal-actions #restaurantOrderCheckout:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.restaurant-menu-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 420;
  display: grid;
  place-items: center;
  padding: 24px;
  pointer-events: auto !important;
}

.restaurant-menu-detail-modal[hidden],
.restaurant-menu-detail-modal.hidden,
#restaurantMenuDetailModal[hidden] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.restaurant-menu-detail-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1 !important;
  background: rgba(2, 6, 23, 0.62);
  backdrop-filter: blur(6px);
  pointer-events: auto !important;
}

.restaurant-menu-detail-panel {
  position: relative;
  z-index: 5 !important;
  width: min(100%, 520px);
  max-height: min(820px, calc(100dvh - 40px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 34px 100px rgba(2, 6, 23, 0.38);
  pointer-events: auto !important;
}

.restaurant-menu-detail-panel * {
  pointer-events: auto !important;
}

.restaurant-menu-detail-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 20 !important;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.76);
  color: #ffffff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  touch-action: manipulation !important;
}

.restaurant-menu-detail-image-wrap {
  width: 100%;
  min-height: 0 !important;
  aspect-ratio: 1 / 1;
  background: #f1f5f9;
}

.restaurant-menu-detail-image-wrap img,
.restaurant-menu-detail-image-empty {
  display: block;
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
  background: #f1f5f9;
}

.restaurant-menu-detail-body {
  display: grid;
  gap: 14px;
  min-height: 0;
  overflow-y: auto;
  padding: 24px;
  padding-bottom: 0;
}

.restaurant-menu-detail-body h2 {
  margin: 0;
  color: var(--iris-text);
  font-size: 23px;
  line-height: 1.12;
}

.restaurant-menu-detail-short,
.restaurant-menu-detail-description,
.restaurant-menu-detail-ingredients p {
  margin: 0;
  color: #475569;
  font-size: 13.5px;
  font-weight: 540;
  line-height: 1.48;
}

.restaurant-menu-detail-ingredients {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 18px;
  background: #f8fafc;
}

.restaurant-menu-detail-ingredients span {
  color: #0f172a;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.restaurant-menu-detail-footer {
  position: sticky;
  bottom: 0;
  z-index: 12 !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 10px -24px 0;
  padding: 12px 24px 16px;
  border-top: 1px solid var(--iris-line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  pointer-events: auto !important;
}

.restaurant-menu-detail-price {
  color: var(--iris-dark);
  font-size: 20px;
  font-weight: 950;
}

.restaurant-menu-detail-add {
  position: relative !important;
  z-index: 20 !important;
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 15px;
  background: var(--iris-orange);
  color: #ffffff;
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  pointer-events: auto !important;
  touch-action: manipulation !important;
}

.restaurant-menu-detail-add:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.iris-site-footer,
.site-footer {
  padding: 30px 0;
  border-top: 1px solid #e5e7eb;
  background: #ffffff;
  color: #64748b;
  font-size: 13px;
  text-align: center;
}

.iris-site-footer .site-container,
.site-footer .site-container {
  text-align: center;
}

.order-page-main {
  background: var(--iris-soft);
}

.order-page-hero .site-container {
  width: min(100% - 40px, 1220px) !important;
}

.order-page-hero .order-hero-card {
  width: 100% !important;
  max-width: none !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.order-page-hero .order-hero-card .home-section-link {
  margin-left: auto !important;
}

.order-checkout-section {
  padding: 28px 0 72px;
}

.order-checkout-card {
  display: grid;
  gap: 28px;
  padding: 28px;
  border: 1px solid var(--iris-line);
  border-radius: 32px;
  background: #ffffff;
  box-shadow: var(--iris-shadow);
}

.order-steps {
  position: relative;
  width: min(100%, 760px) !important;
  margin-inline: auto !important;
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 0 !important;
  padding: 10px 0 18px;
}

.order-steps::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 24px;
  height: 3px;
  border-radius: 999px;
  background: #e5e7eb;
}

.order-steps button {
  position: relative;
  z-index: 1;
  min-width: 0 !important;
  min-height: 32px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: transparent !important;
  font-size: 0 !important;
  cursor: default !important;
  pointer-events: none;
}

.order-steps button span {
  width: 16px !important;
  height: 16px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #e5e7eb;
  border-radius: 999px;
  background: #ffffff !important;
  color: transparent !important;
  box-shadow: 0 0 0 6px #ffffff;
}

.order-steps button.completed span,
.order-steps button.active span {
  border-color: var(--iris-orange);
  background: var(--iris-orange) !important;
}

.order-steps button.completed::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 14px;
  width: 100%;
  height: 3px;
  background: var(--iris-orange);
  transform: translateY(-50%);
  z-index: -1;
}

.order-steps button:last-child.completed::after {
  display: none;
}

.order-form,
.order-form-step.active {
  display: grid;
}

.order-form {
  gap: 24px;
}

.order-form-step {
  display: none;
}

.order-form-step.active {
  gap: 22px;
}

.order-form-step h2 {
  margin: 0;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 920;
}

.order-form-grid,
.order-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.order-choice-grid {
  gap: 14px;
}

.order-form-grid label,
.order-form-wide,
.order-change-label {
  display: grid;
  gap: 8px;
  color: var(--iris-text);
  font-size: 13px;
  font-weight: 500;
}

.order-form-wide {
  grid-column: 1 / -1;
}

.order-change-label {
  align-content: start;
}

.order-label-title {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.order-required-star,
.order-required-mark {
  margin-left: 4px;
  color: #9ca3af;
  font-weight: 950;
}

.order-form input,
.order-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--iris-line);
  border-radius: 16px;
  background: #f8fafc;
  color: var(--iris-text);
  font: inherit;
  font-weight: 650;
  outline: none;
}

.order-form textarea {
  resize: vertical;
}

.field-error {
  display: block;
  margin-top: 2px;
  color: #b91c1c;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.order-choice-grid label {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid var(--iris-line);
  border-radius: 18px;
  background: #f8fafc;
  color: var(--iris-text);
  font-weight: 500;
  cursor: pointer;
}

.order-choice-grid input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--iris-orange);
}

.order-total-reminder {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 48px;
  margin: 8px 0 6px;
  padding: 10px 12px;
  border: 1px solid rgba(249, 115, 22, 0.22);
  border-radius: 14px;
  background: #fff7ed;
  color: #9a3412;
  font-size: 12px;
  font-weight: 900;
}

.order-total-reminder span {
  color: #9a3412;
  font-size: 12px;
  font-weight: 850;
}

.order-total-reminder strong {
  color: var(--iris-text);
  font-size: 14px;
  font-weight: 950;
}

.order-change-label small,
.order-map-header span {
  color: #64748b;
  font-size: 12px;
  line-height: 1.35;
}

.order-map-field,
.order-map-header,
.order-checkout-items {
  display: grid;
  gap: 12px;
}

.order-map-header strong {
  color: var(--iris-text);
  font-size: 14px;
  font-weight: 950;
}

.order-map {
  width: 100%;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--iris-line);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(148, 163, 184, 0.2), rgba(226, 232, 240, 0.7)),
    #e2e8f0;
}

.order-map-fallback {
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
}

.order-map-fallback p {
  max-width: 520px;
  margin: 0;
  color: var(--iris-muted);
  font-weight: 800;
  line-height: 1.55;
}

.order-address-fields[hidden],
.order-form-message.success {
  display: none !important;
}

.order-checkout-items {
  gap: 14px;
}

.order-checkout-item {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--iris-line);
  border-radius: 20px;
  background: #f8fafc;
}

.order-checkout-item img,
.order-checkout-item-image-empty {
  width: 74px;
  height: 62px;
  border-radius: 16px;
  object-fit: cover;
  background: #e2e8f0;
}

.order-checkout-item strong,
.order-checkout-item b {
  color: var(--iris-text);
  font-weight: 700;
}

.order-checkout-item span {
  display: block;
  margin-top: 4px;
  color: var(--iris-muted);
  font-size: 13px;
  font-weight: 700;
}

.order-checkout-total {
  display: flex;
  justify-content: flex-end;
  color: var(--iris-text);
  font-size: 22px;
  font-weight: 950;
}

.order-empty,
.order-confirm-box {
  padding: 24px;
  border: 1px dashed var(--iris-line);
  border-radius: 22px;
  background: #f8fafc;
}

.order-empty {
  display: grid;
  gap: 16px;
  justify-items: start;
}

.order-empty p {
  margin: 0;
  color: var(--iris-muted);
  font-weight: 750;
}

.order-confirm-box {
  border-style: solid;
  padding: 20px;
}

.order-confirm-box dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.order-confirm-box div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 14px;
}

.order-confirm-box dt {
  color: var(--iris-muted);
  font-weight: 300;
}

.order-confirm-box dd {
  margin: 0;
  color: var(--iris-text);
  font-weight: 700;
}

.order-form-message {
  padding: 14px 16px;
  border-radius: 18px;
  font-weight: 850;
}

.order-form-message.error {
  background: #fee2e2;
  color: #991b1b;
}

.order-form-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.order-form-actions button {
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 16px;
  background: var(--iris-dark);
  color: #ffffff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.order-form-actions .secondary-button {
  background: #f1f5f9;
  color: var(--iris-text);
}

.order-success-modal {
  position: fixed;
  inset: 0;
  z-index: 520;
  display: grid;
  place-items: center;
  padding: 20px;
}

.order-success-modal[hidden] {
  display: none;
}

.order-success-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.62);
  backdrop-filter: blur(5px);
}

.order-success-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 30px 24px 24px;
  border-radius: 28px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 34px 100px rgba(2, 6, 23, 0.35);
}

.order-success-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #f1f5f9;
  color: var(--iris-text);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.order-success-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #dcfce7;
  color: #166534;
  font-size: 30px;
  font-weight: 950;
}

.order-success-number-label {
  margin: 8px 0 0;
  color: var(--iris-muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.order-success-number {
  color: var(--iris-text);
  font-size: 18px;
  font-weight: 950;
}

.order-success-panel h2 {
  margin: 10px 0 0;
  color: var(--iris-text);
  font-size: 28px;
  line-height: 1.1;
}

.order-success-panel p:last-of-type {
  max-width: 330px;
  margin: 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.5;
}

.order-success-ok {
  min-height: 44px;
  margin-top: 10px;
  padding: 0 24px;
  border: 0;
  border-radius: 16px;
  background: var(--iris-dark);
  color: #ffffff;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 1180px) {
  .restaurant-reviews-grid,
  .home-reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .iris-lunch-card,
  .iris-contact-card,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .home-daily-lunch-image-wrap {
    min-height: 0;
    border-radius: 0 0 38px 38px;
  }

  .home-daily-lunch-image,
  .home-daily-lunch-image-placeholder {
    min-height: 0;
    height: 100%;
  }

  .home-news-card,
  .blog-news-card {
    grid-template-columns: 1fr;
  }

  .home-news-card-image,
  .blog-news-card .home-news-card-image {
    min-height: auto;
    height: auto;
    object-fit: contain;
    background: #ffffff;
  }
}

@media (max-width: 1180px) and (min-width: 900px) {
  .restaurant-menu-grid,
  .home-menu-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 18px !important;
  }

  .restaurant-menu-card-body {
    padding: 16px !important;
  }

  .restaurant-menu-card h3 {
    font-size: 18px !important;
    line-height: 1.12 !important;
  }

  .restaurant-menu-card p {
    font-size: 13px !important;
    line-height: 1.4 !important;
  }

  .restaurant-price-new {
    font-size: 16px !important;
  }

  .restaurant-add-button {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
  }

  .restaurant-add-icon {
    width: 17px !important;
    height: 17px !important;
  }
}

@media (max-width: 899px) {
  .restaurant-menu-grid,
  .home-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .home-section-header,
  .home-section-header-modern,
  .menu-section-header {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    justify-items: start !important;
    align-items: start !important;
    gap: 16px !important;
    margin-bottom: 24px !important;
    text-align: left !important;
  }

  .home-section-header > *,
  .home-section-header-modern > *,
  .menu-section-header > * {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .home-section-header h2,
  .home-section-header-modern h2,
  .menu-section-header h2,
  .home-section-header p,
  .home-section-header-modern p,
  .menu-section-header p {
    max-width: 100% !important;
    text-align: left !important;
    overflow-wrap: anywhere !important;
  }

  .home-section-header .home-section-link,
  .home-section-header-modern .home-section-link,
  .menu-section-header .home-section-link {
    width: fit-content !important;
    max-width: 100% !important;
    justify-self: start !important;
    white-space: normal !important;
    text-align: center !important;
  }
}

@media (max-width: 899px) and (min-width: 761px) {
  .home-top-food-section,
  .home-top-drinks-section {
    padding: 50px 0 !important;
  }

  .home-top-food-section .home-menu-grid,
  .home-top-drinks-section .home-menu-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .home-top-food-section .restaurant-menu-card,
  .home-top-drinks-section .restaurant-menu-card {
    display: grid !important;
    grid-template-columns: 132px minmax(0, 1fr) !important;
    min-height: 150px !important;
    border-radius: 20px !important;
  }

  .home-top-food-section .restaurant-menu-card-image,
  .home-top-food-section .restaurant-menu-card-image-empty,
  .home-top-drinks-section .restaurant-menu-card-image,
  .home-top-drinks-section .restaurant-menu-card-image-empty {
    width: 132px !important;
    height: 100% !important;
    min-height: 150px !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
  }

  .home-top-food-section .restaurant-menu-card-body,
  .home-top-drinks-section .restaurant-menu-card-body {
    min-width: 0 !important;
    padding: 14px 14px 12px 16px !important;
  }

  .home-top-food-section .restaurant-menu-card h3,
  .home-top-drinks-section .restaurant-menu-card h3 {
    font-size: 18px !important;
    line-height: 1.12 !important;
  }

  .home-top-food-section .restaurant-menu-card p,
  .home-top-drinks-section .restaurant-menu-card p {
    display: -webkit-box !important;
    font-size: 13px !important;
    line-height: 1.35 !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .home-top-food-section .restaurant-menu-card-footer,
  .home-top-drinks-section .restaurant-menu-card-footer {
    padding-top: 10px !important;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 66px;
  }

  .site-container {
    width: min(100% - 28px, 1220px);
  }

  .black-iris-hero-section .site-container {
    width: min(100% - 40px, 1220px) !important;
  }

  .iris-site-header .site-container,
  .iris-header-inner {
    min-height: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .site-logo {
    font-size: 15px !important;
    letter-spacing: -0.05em;
  }

  .site-nav-desktop {
    display: none;
  }

  .mobile-header-actions {
    display: flex;
    margin-left: auto;
  }

  .mobile-header-actions > a {
    min-height: 30px;
    padding: 6px 9px;
    font-size: 11px;
  }

  .mobile-menu {
    position: static;
  }

  .mobile-menu summary {
    width: 34px;
    height: 34px;
  }

  .mobile-menu-icon {
    width: 19px;
    height: 19px;
  }

  .mobile-menu[open] summary {
    position: fixed;
    top: 8px;
    right: 14px;
    left: auto;
    z-index: 260;
    width: 34px;
    height: 34px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.22);
  }

  .mobile-menu[open] summary .mobile-menu-icon {
    stroke: var(--iris-dark);
  }

  .mobile-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 240;
    width: 70vw;
    height: 100dvh;
    max-height: 100dvh;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 66px 18px 20px;
    border: 0;
    border-left: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 0;
    background: #ffffff;
    box-shadow: -28px 0 80px rgba(15, 23, 42, 0.22);
  }

  .mobile-menu-panel::before {
    display: none !important;
    content: none !important;
  }

  .mobile-menu-panel-close-zone {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 235;
    width: 30vw;
    height: 100dvh;
    display: block;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: rgba(2, 6, 23, 0.18);
    backdrop-filter: blur(2px);
    cursor: pointer;
  }

  .mobile-menu-panel a,
  .mobile-menu-main-link {
    min-height: 38px !important;
    padding: 9px 12px !important;
    border-radius: 14px;
    font-size: 15px !important;
    font-weight: 650 !important;
    line-height: 1.1;
  }

  .mobile-menu-primary-link {
    min-height: 44px !important;
    justify-content: center;
    border-radius: 18px !important;
    font-size: 12px;
    font-weight: 600 !important;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);
  }

  .iris-home-main,
  .restaurant-page-main,
  .blog-page-main,
  .contacts-page-main,
  .site-main {
    padding-top: 50px;
  }

  .menu-category-section,
  .restaurant-page-section,
  .home-top-food-section,
  .home-top-drinks-section,
  .home-daily-lunch-section,
  .home-news-section,
  .home-reviews-section,
  .home-accordion-section,
  .home-contact-section,
  .black-iris-hero-section {
    scroll-margin-top: 66px;
  }

  .black-iris-hero-section {
    padding: 22px 0 26px !important;
  }

  .black-iris-hero-card {
    gap: 14px !important;
  }

  .black-iris-hero-content h1 {
    font-size: clamp(42px, 13.2vw, 54px) !important;
  }

  .black-iris-hero-mobile-description {
    max-width: 315px !important;
  }

  .black-iris-hero-actions {
    position: relative !important;
  }

  .black-iris-hero-gallery {
    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;
    height: auto !important;
    margin-top: 0 !important;
  }

  .black-iris-hero-photo-1,
  .black-iris-hero-photo-2 {
    display: none !important;
  }

  .black-iris-hero-photo-3 {
    position: relative !important;
    right: 0 !important;
    top: 0 !important;
    bottom: auto !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    aspect-ratio: 617 / 322 !important;
    border-width: 4px !important;
    border-radius: 10px !important;
  }

  .iris-hero-section,
  .restaurant-page-hero {
    padding: 16px 0 0px;
  }

  .blog-page-hero,
  .blog-article-hero {
    padding: 28px 0 36px;
  }

  .iris-section,
  .home-accordion-section,
  .restaurant-page-section,
  .contacts-page {
    padding: 0;
  }

  .restaurant-page-hero-card {
    padding: 30px 22px;
    border-radius: 28px;
  }

  .restaurant-page-hero-card h1 {
    font-size: 42px;
  }

  .restaurant-page-hero-card p {
    font-size: 14px;
    line-height: 1.55;
  }

  .iris-lunch-card {
    min-height: auto;
    border-radius: 24px;
  }

  .iris-lunch-card .home-daily-lunch-content {
    padding: 24px 20px 22px;
  }

  .iris-lunch-card .home-daily-lunch-content h1,
  .iris-lunch-empty h1 {
    font-size: 38px;
  }

  .home-daily-lunch-day {
    margin-top: 14px;
    font-size: 17px;
  }

  .home-daily-lunch-name {
    margin-top: 14px;
    font-size: 23px;
  }

  .home-daily-lunch-included {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.45;
  }

  .home-daily-lunch-price {
    padding-top: 20px;
  }

  .home-daily-lunch-price span {
    font-size: 30px;
  }

  .home-daily-lunch-image-wrap {
    min-height: 0;
    border-radius: 0;
  }

  .home-daily-lunch-image,
  .home-daily-lunch-image-placeholder {
    min-height: 0;
    height: 100%;
  }

  .iris-lunch-empty {
    padding: 28px 22px;
    border-radius: 26px;
  }

  .home-section-header-modern,
  .menu-section-header {
    display: grid;
    gap: 14px;
    margin-bottom: 24px;
  }

  .home-section-header-modern h2,
  .menu-section-header h2 {
    font-size: 34px;
  }

  .home-section-header-modern p,
  .menu-section-header p {
    max-width: 100%;
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.55;
  }

  .home-section-link {
    max-width: 100% !important;
    min-height: 0;
    padding: 8px 14px;
    font-size: 13px;
    white-space: normal !important;
    text-align: center !important;
  }

  .restaurant-menu-grid,
  .home-menu-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .restaurant-menu-card {
    display: grid !important;
    grid-template-columns: 108px minmax(0, 1fr) !important;
    min-height: 136px !important;
    border-radius: 18px !important;
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08) !important;
    cursor: pointer;
  }

  .restaurant-menu-card-image,
  .restaurant-menu-card-image-empty {
    width: 108px !important;
    height: 100% !important;
    min-height: 136px !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
  }

  .restaurant-menu-card-body {
    min-width: 0 !important;
    padding: 12px 12px 10px 14px !important;
    gap: 7px;
  }

  .restaurant-menu-card-badges {
    display: none;
  }

  .restaurant-menu-card h3 {
    margin: 0;
    font-size: 16px !important;
    line-height: 1.12 !important;
    letter-spacing: -0.02em;
  }

  .restaurant-menu-card p {
    display: -webkit-box;
    font-size: 13px !important;
    line-height: 1.34 !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .home-section.home-news-section.iris-section .site-container,
  .home-section.home-reviews-section.iris-section {
    margin-top: 60px;
  }

  .restaurant-menu-card-footer {
    align-items: flex-end;
    margin-top: auto;
    padding-top: 0px !important;
  }

  .restaurant-price-new {
    font-size: 18px;
  }

  .restaurant-price-old {
    font-size: 12px;
  }

  .restaurant-add-button {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    border-radius: 14px !important;
  }

  .restaurant-add-icon {
    width: 18px;
    height: 18px;
  }

  .home-news-card,
  .blog-news-card {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 22px;
  }

  .home-news-card-content,
  .blog-news-card .home-news-card-content {
    padding: 22px;
  }

  .home-news-card h3,
  .blog-news-card h3 {
    font-size: 26px;
  }

  .home-news-card p,
  .blog-news-card p {
    font-size: 14px;
  }

  .blog-page-news-section {
    padding-top: 34px;
    padding-bottom: 56px;
  }

  .blog-news-card .home-news-card-image {
    min-height: 0;
    height: auto;
  }

  .blog-page-empty {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .restaurant-reviews-grid,
  .home-reviews-grid,
  .iris-contact-details,
  .contacts-details,
  .order-form-grid,
  .order-choice-grid {
    grid-template-columns: 1fr;
  }

  .home-review-card {
    border-radius: 22px;
    padding: 20px;
  }

  .home-accordion-shell {
    padding: 22px;
    border-radius: 26px;
  }

  .home-accordion-item {
    border-radius: 16px;
  }

  .home-accordion-item summary {
    min-height: 54px;
    padding: 16px;
    font-size: 14px;
  }

  .home-accordion-body {
    padding: 0 16px 16px;
    font-size: 14px;
  }

  .iris-contact-card,
  .contacts-info-card,
  .review-form-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
    border-radius: 26px;
  }

  .iris-contact-card h2,
  .contacts-info-card h2,
  .review-form-card h2 {
    font-size: 34px;
  }

  .iris-contact-card p,
  .contacts-info-card p,
  .review-form-card p {
    font-size: 14px;
  }

  .iris-contact-details,
  .contacts-details {
    gap: 12px;
  }

  .iris-contact-details div,
  .contacts-details div {
    padding: 15px;
    border-radius: 16px;
  }

  .iris-contact-details span,
  .contacts-details span {
    font-size: 10px;
  }

  .iris-contact-details strong,
  .contacts-details strong {
    font-size: 13px;
    overflow-wrap: anywhere;
  }

  .restaurant-order-floating {
    right: 14px;
    bottom: 14px;
    min-height: 44px;
    padding: 10px 14px;
    font-size: 13px;
  }

  .restaurant-order-floating span {
    min-width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .restaurant-order-modal-backdrop {
    background: rgba(2, 6, 23, 0.52);
    backdrop-filter: blur(2px);
  }

  .restaurant-order-modal-panel {
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    border-radius: 22px 22px 0 0;
    box-shadow: 0 -20px 70px rgba(15, 23, 42, 0.32);
  }

  .restaurant-order-modal-header {
    padding: 14px 16px 10px;
  }

  .restaurant-order-modal-header span {
    margin-bottom: 5px;
    padding: 4px 8px;
    font-size: 9px;
  }

  .restaurant-order-modal-header h2 {
    font-size: 20px;
    letter-spacing: -0.035em;
  }

  .restaurant-order-modal-header button {
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 20px;
  }

  .restaurant-order-items {
    gap: 8px;
    padding: 10px 12px;
  }

  .restaurant-order-items > p {
    padding: 14px;
    border-radius: 16px;
    font-size: 14px;
  }

  .restaurant-order-item {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 16px;
  }

  .restaurant-order-item-title {
    font-size: 15px;
    line-height: 1.15;
  }

  .restaurant-order-item-meta {
    margin-top: 4px;
    font-size: 12px;
  }

  .restaurant-order-item-actions {
    gap: 6px;
  }

  .restaurant-order-item-actions button {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  .restaurant-order-modal-footer {
    padding: 14px 14px 18px !important;
  }

  .restaurant-order-modal-footer strong {
    font-size: 16px;
  }

  .restaurant-order-modal-footer button {
    padding: 9px 12px;
    font-size: 13px;
  }

  .restaurant-menu-detail-modal {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;
    justify-items: initial !important;
    padding: max(10px, env(safe-area-inset-top)) 10px 0 !important;
    overflow: hidden !important;
  }

  .restaurant-menu-detail-panel {
    width: min(390px, calc(100vw - 20px)) !important;
    max-width: calc(100vw - 20px) !important;
    max-height: calc(100svh - max(10px, env(safe-area-inset-top))) !important;
    border-radius: 26px 26px 0 0 !important;
    transform: translateZ(0) !important;
    contain: layout paint !important;
  }

  .restaurant-menu-detail-body {
    flex: 1 1 auto !important;
    padding: 20px !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .restaurant-menu-detail-body h2 {
    font-size: 24px !important;
    line-height: 1.1 !important;
  }

  .restaurant-menu-detail-short,
  .restaurant-menu-detail-description,
  .restaurant-menu-detail-ingredients p {
    font-size: 14px !important;
    line-height: 1.45 !important;
  }

  .restaurant-menu-detail-ingredients {
    padding: 13px 14px !important;
    border-radius: 18px !important;
  }

  .restaurant-menu-detail-footer {
    margin-inline: -20px;
    padding: 12px 20px max(16px, env(safe-area-inset-bottom)) !important;
  }

  .restaurant-menu-detail-price {
    font-size: 22px !important;
  }

  .restaurant-menu-detail-add {
    min-height: 46px !important;
    padding: 0 22px !important;
    border-radius: 17px !important;
    font-size: 14px !important;
  }

  .restaurant-menu-detail-close {
    top: 12px !important;
    right: 12px !important;
    width: 40px !important;
    height: 40px !important;
    font-size: 28px !important;
  }

  .blog-article-hero {
    padding: 28px 0 36px;
  }

  .blog-back-link {
    margin-bottom: 18px;
    font-size: 13px;
  }

  .blog-article-date {
    margin-top: 18px;
  }

  .blog-article-section {
    padding: 38px 0 54px;
  }

  .blog-article-card {
    border-radius: 24px;
  }

  .blog-article-content {
    padding: 28px 22px 32px;
    font-size: 16px;
    line-height: 1.65;
  }

  .blog-article-content p {
    margin-bottom: 18px;
  }

  .site-footer,
  .iris-site-footer {
    padding: 24px 0;
    font-size: 12px;
  }

  .order-page-hero .order-hero-card {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    gap: 18px !important;
    align-items: end !important;
    padding: 28px 0 !important;
  }

  .order-page-hero .order-hero-card h1 {
    font-size: clamp(42px, 13vw, 62px) !important;
  }

  .order-page-hero .order-hero-card p {
    max-width: 100% !important;
  }

  .order-page-hero .order-hero-card .home-section-link {
    justify-self: end !important;
    align-self: center !important;
    margin-left: 0 !important;
    min-height: 38px !important;
    padding: 8px 14px !important;
    font-size: 13px !important;
    white-space: nowrap !important;
  }

  .order-checkout-section {
    padding: 20px 0 56px;
  }

  .order-checkout-card {
    gap: 20px;
    padding: 18px;
    border-radius: 24px;
  }

  .order-steps {
    width: 100% !important;
    max-width: 340px !important;
    margin: 0 auto 4px !important;
    overflow: visible !important;
    padding: 10px 0 20px !important;
  }

  .order-steps::before {
    left: 8% !important;
    right: 8% !important;
    top: 24px !important;
    height: 3px !important;
  }

  .order-steps button span {
    width: 16px !important;
    height: 16px !important;
    border-width: 3px !important;
  }

  .order-steps button.completed::after {
    top: 14px !important;
    height: 3px !important;
  }

  .order-map {
    min-height: 260px;
    border-radius: 18px;
  }

  .order-total-reminder {
    min-height: auto;
  }

  .order-checkout-item {
    grid-template-columns: 58px 1fr;
  }

  .order-checkout-item img,
  .order-checkout-item-image-empty {
    width: 58px;
    height: 52px;
  }

  .order-checkout-item b {
    grid-column: 2;
  }

  .order-confirm-box div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .order-form-actions,
  .restaurant-order-modal-actions {
    display: grid !important;
    justify-content: stretch;
  }

  .order-form-actions button,
  .restaurant-order-modal-actions button {
    width: 100%;
  }
}

@supports (padding: max(0px)) {
  .iris-site-header {
    padding-top: env(safe-area-inset-top);
  }

  .iris-home-main,
  .restaurant-page-main,
  .blog-page-main,
  .contacts-page-main,
  .site-main {
    padding-top: calc(60px + env(safe-area-inset-top));
  }

  @media (max-width: 760px) {
    .iris-home-main,
    .restaurant-page-main,
    .blog-page-main,
    .contacts-page-main,
    .site-main {
      padding-top: calc(50px + env(safe-area-inset-top));
    }
  }
}

@media (max-width: 520px) {
  .order-page-hero .order-hero-card {
    grid-template-columns: 1fr !important;
    align-items: start !important;
  }

  .order-page-hero .order-hero-card .home-section-link {
    justify-self: start !important;
  }
}

@media (max-width: 420px) {
  .site-container {
    width: min(100% - 24px, 1220px);
  }

  .mobile-header-actions > a {
    padding: 7px 9px;
    font-size: 12px;
  }

  .mobile-menu-panel {
    width: 74vw;
    padding: 76px 14px 16px;
  }

  .mobile-menu-panel-close-zone {
    width: 26vw;
  }

  .mobile-menu[open] summary {
    right: 12px;
  }

  .mobile-menu-panel a {
    min-height: 40px;
    padding: 9px 10px;
  }

  .mobile-menu-primary-link {
    min-height: 46px !important;
  }

  .iris-lunch-card .home-daily-lunch-content {
    padding: 22px 18px 20px;
  }

  .iris-lunch-card .home-daily-lunch-content h1,
  .restaurant-page-hero-card h1 {
    font-size: 36px;
  }

  .home-daily-lunch-name {
    font-size: 22px;
  }

  .home-section-header-modern h2,
  .menu-section-header h2,
  .iris-contact-card h2,
  .contacts-info-card h2,
  .review-form-card h2 {
    font-size: 30px;
  }

  .restaurant-menu-card {
    grid-template-columns: 96px minmax(0, 1fr) !important;
    min-height: 128px !important;
  }

  .restaurant-menu-card-image,
  .restaurant-menu-card-image-empty {
    width: 96px !important;
    min-height: 128px !important;
  }

  .restaurant-menu-card-body,
  .home-news-card-content {
    padding: 16px;
  }

  .restaurant-menu-card h3 {
    font-size: 20px;
  }

  .iris-contact-card,
  .contacts-info-card,
  .review-form-card,
  .home-accordion-shell {
    padding: 20px;
  }

  .restaurant-order-modal-actions {
    grid-template-columns: 1fr !important;
  }

  .restaurant-menu-detail-modal {
    padding: max(8px, env(safe-area-inset-top)) 8px 0 !important;
  }

  .restaurant-menu-detail-panel {
    width: calc(100vw - 16px) !important;
    max-width: calc(100vw - 16px) !important;
    max-height: calc(100svh - max(8px, env(safe-area-inset-top))) !important;
    border-radius: 24px 24px 0 0 !important;
  }

  .restaurant-menu-detail-body {
    padding: 18px !important;
  }

  .restaurant-menu-detail-body h2,
  .restaurant-order-modal-header h2 {
    font-size: 23px !important;
  }

  .restaurant-order-modal-header h2 {
    font-size: 19px !important;
  }

  .restaurant-order-item-title {
    font-size: 14px;
  }

  .restaurant-order-modal-footer strong {
    font-size: 15px;
  }

  .blog-page-news-section {
    padding-bottom: 46px;
  }

  .blog-news-card .home-news-card-content,
  .blog-article-content {
    padding: 24px 18px 28px;
  }
}

@media (min-width: 900px) {
  .restaurant-menu-detail-modal {
    display: grid;
    place-items: center;
    padding: 32px;
  }

  .restaurant-menu-detail-panel {
    width: min(1040px, calc(100vw - 64px));
    max-width: 1040px;
    max-height: calc(100dvh - 64px);
    display: grid;
    grid-template-columns: minmax(360px, 440px) minmax(0, 1fr);
    grid-template-rows: auto;
    overflow: hidden;
    border-radius: 34px;
  }

  .restaurant-menu-detail-image-wrap {
    width: 100%;
    height: auto;
    min-height: 0 !important;
    aspect-ratio: 1 / 1;
    align-self: stretch;
    background: #f1f5f9;
  }

  .restaurant-menu-detail-image-wrap img,
  .restaurant-menu-detail-image-empty {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    display: block;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
  }

  .restaurant-menu-detail-body {
    min-height: 0;
    max-height: min(440px, calc(100dvh - 64px));
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-auto-rows: max-content;
    align-content: start;
    gap: 0;
    overflow-y: auto;
    padding: 0;
    background: #ffffff;
  }

  .restaurant-menu-detail-body h2 {
    position: sticky;
    top: 0;
    z-index: 4;
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    margin: 0;
    padding: 30px 20px 24px 30px;
    background: #ffffff;
    font-size: 30px;
    line-height: 1.05;
    letter-spacing: -0.045em;
  }

  .restaurant-menu-detail-footer {
    position: sticky;
    top: 0;
    z-index: 5;
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 14px;
    margin: 0;
    padding: 28px 30px 22px 12px;
    border-top: 0;
    background: #ffffff;
    backdrop-filter: none;
  }

  .restaurant-menu-detail-price {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    font-size: 22px;
    line-height: 1;
  }

  .restaurant-menu-detail-add {
    min-height: 42px;
    padding: 0 20px;
    border-radius: 15px;
    white-space: nowrap;
    font-size: 13px;
  }

  .restaurant-menu-detail-short,
  .restaurant-menu-detail-description,
  .restaurant-menu-detail-ingredients {
    grid-column: 1 / -1;
    margin-inline: 30px;
  }

  .restaurant-menu-detail-short {
    margin-top: 2px;
  }

  .restaurant-menu-detail-description {
    margin-top: 12px;
  }

  .restaurant-menu-detail-ingredients {
    margin-top: 16px;
    margin-bottom: 30px;
  }

  .restaurant-menu-detail-short,
  .restaurant-menu-detail-description,
  .restaurant-menu-detail-ingredients p {
    font-size: 15px;
    line-height: 1.55;
  }

  .restaurant-menu-detail-close {
    top: 16px;
    right: 16px;
    z-index: 30 !important;
    background: rgba(15, 23, 42, 0.78);
  }
}

@media (min-width: 900px) and (max-width: 1080px) {
  .restaurant-menu-detail-panel {
    width: min(940px, calc(100vw - 48px));
    grid-template-columns: minmax(320px, 390px) minmax(0, 1fr);
  }

  .restaurant-menu-detail-body {
    max-height: min(390px, calc(100dvh - 48px));
  }

  .restaurant-menu-detail-body h2 {
    padding: 26px 16px 20px 24px;
    font-size: 26px;
  }

  .restaurant-menu-detail-footer {
    padding: 24px 24px 18px 10px;
    gap: 10px;
  }

  .restaurant-menu-detail-price {
    font-size: 19px;
  }

  .restaurant-menu-detail-add {
    min-height: 40px;
    padding: 0 16px;
  }

  .restaurant-menu-detail-short,
  .restaurant-menu-detail-description,
  .restaurant-menu-detail-ingredients {
    margin-inline: 24px;
  }

  .restaurant-menu-detail-ingredients {
    margin-bottom: 24px;
  }
}

@media (min-width: 900px) {
  .restaurant-menu-detail-panel {
    position: relative !important;
  }

  .restaurant-menu-detail-footer {
    padding-right: 88px !important;
  }

  .restaurant-menu-detail-close {
    position: absolute !important;
    top: 28px !important;
    right: 30px !important;
    z-index: 30 !important;
    width: auto !important;
    min-width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid var(--iris-dark) !important;
    border-radius: 15px !important;
    background: var(--iris-dark) !important;
    color: #ffffff !important;
    font-size: 28px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    cursor: pointer !important;
    box-shadow: 0 13px 26px rgba(15, 23, 42, 0.22) !important;
    transition: background-color 0.2s ease,
      color 0.2s ease,
      border-color 0.2s ease,
      box-shadow 0.2s ease,
      transform 0.2s ease !important;
  }

  .restaurant-menu-detail-close:hover {
    background: #ffffff !important;
    color: var(--iris-dark) !important;
    border-color: var(--iris-dark) !important;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12) !important;
    transform: translateY(-1px) !important;
  }

  .restaurant-menu-detail-close:active {
    transform: translateY(0) !important;
  }
}

@media (min-width: 900px) and (max-width: 1080px) {
  .restaurant-menu-detail-footer {
    padding-right: 78px !important;
  }

  .restaurant-menu-detail-close {
    top: 24px !important;
    right: 24px !important;
    min-width: 40px !important;
    height: 40px !important;
    min-height: 40px !important;
    border-radius: 14px !important;
    font-size: 26px !important;
  }
}

.restaurant-menu-detail-add {
  border: 0 !important;
  background: var(--iris-orange) !important;
  color: #ffffff !important;
  transition: background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease !important;
}

.restaurant-menu-detail-add:hover {
  border: 0 !important;
  background: #ffffff !important;
  color: var(--iris-orange) !important;
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.16) !important;
  transform: translateY(-1px) !important;
}

.restaurant-menu-detail-add:active {
  transform: translateY(0) !important;
}

.restaurant-menu-detail-close {
  border: 0 !important;
  font-size: 21px !important;
}

.restaurant-menu-detail-close:hover {
  border: 0 !important;
}

.restaurant-page-hero-card.page-hero-card-with-action,
.blog-page-hero-card.page-hero-card-with-action,
.order-page-hero .order-hero-card {
  width: 100% !important;
  max-width: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
}

.page-hero-card-text {
  min-width: 0 !important;
  max-width: 820px !important;
}

.blog-page-hero-card .page-hero-card-text {
  max-width: 860px !important;
}

.page-hero-home-link {
  flex: 0 0 auto !important;
  margin-left: auto !important;
  white-space: nowrap !important;
}

@media (max-width: 760px) {
  .restaurant-page-hero-card.page-hero-card-with-action,
  .blog-page-hero-card.page-hero-card-with-action,
  .order-page-hero .order-hero-card {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: end !important;
    gap: 18px !important;
  }

  .page-hero-card-text,
  .blog-page-hero-card .page-hero-card-text {
    max-width: 100% !important;
  }

  .page-hero-home-link {
    justify-self: end !important;
    align-self: center !important;
    margin-left: 0 !important;
    min-height: 38px !important;
    padding: 8px 14px !important;
    font-size: 13px !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 520px) {
  .restaurant-page-hero-card.page-hero-card-with-action,
  .blog-page-hero-card.page-hero-card-with-action,
  .order-page-hero .order-hero-card {
    grid-template-columns: 1fr !important;
    align-items: start !important;
  }

  .page-hero-home-link {
    justify-self: start !important;
  }
}

.order-notify-choice {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  background: #f8fafc;
}

.order-notify-choice h3 {
  margin: 0;
  color: var(--iris-text);
  font-size: 17px;
  font-weight: 900;
}

.order-notify-choice p {
  margin: 0;
  color: var(--iris-muted);
  font-size: 13px;
  line-height: 1.45;
}

.order-bot-choice-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.order-success-links {
  width: 100%;
  display: grid;
  gap: 10px;
  margin-top: 8px;
  padding: 14px;
  border: 1px solid rgba(249, 115, 22, 0.24);
  border-radius: 18px;
  background: #fff7ed;
}

.order-success-links[hidden] {
  display: none;
}

.order-success-links p {
  margin: 0;
  color: #9a3412;
  font-size: 13px;
  font-weight: 850;
}

.order-success-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 14px;
  background: var(--iris-dark);
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
}

.restaurant-active-order-status {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
  padding: 14px;
  border: 1px solid rgba(34, 197, 94, 0.24);
  border-radius: 18px;
  background: #f0fdf4;
}

.restaurant-active-order-status[hidden] {
  display: none;
}

.restaurant-active-order-status strong {
  color: #14532d;
  font-size: 14px;
  font-weight: 950;
}

.restaurant-active-order-status span {
  color: #166534;
  font-size: 13px;
  font-weight: 850;
}

.restaurant-active-order-status div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.restaurant-active-order-status a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: #dcfce7;
  color: #14532d;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 720px) {
  .order-bot-choice-grid {
    grid-template-columns: 1fr;
  }
}

.restaurant-active-order-widget {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 80;
  width: min(360px, calc(100vw - 32px));
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.restaurant-active-order-widget-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 12px;
  align-items: center;
  padding: 14px 16px;
  border: 0;
  background: #111827;
  color: #ffffff;
  text-align: left;
  cursor: pointer;
}

.restaurant-active-order-widget-toggle span,
.restaurant-active-order-widget-toggle b,
.restaurant-active-order-widget-toggle strong,
.restaurant-active-order-widget-toggle em {
  min-width: 0;
}

.restaurant-active-order-widget-toggle span {
  overflow: hidden;
  font-size: 13px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.restaurant-active-order-widget-toggle strong {
  justify-self: end;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.18);
  color: #bbf7d0;
  font-size: 12px;
  font-weight: 950;
}

.restaurant-active-order-widget-toggle em {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.restaurant-active-order-widget-panel {
  display: grid;
  gap: 10px;
  padding: 14px 16px 16px;
}

.restaurant-active-order-widget.is-collapsed .restaurant-active-order-widget-panel {
  display: none;
}

.restaurant-active-order-widget-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #475569;
  font-size: 13px;
}

.restaurant-active-order-widget-row b {
  color: #111827;
  font-weight: 950;
}

.restaurant-active-order-widget-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.restaurant-active-order-widget-actions a,
.restaurant-active-order-widget-actions button,
.restaurant-active-order-status button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border: 0;
  border-radius: 999px;
  background: var(--iris-dark);
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
}

.restaurant-active-order-status button {
  background: #16a34a;
}

.restaurant-active-order-review-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 18px;
}

.restaurant-active-order-review-modal[hidden] {
  display: none;
}

.restaurant-active-order-review-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(15, 23, 42, 0.52);
}

.restaurant-active-order-review-panel {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.28);
}

.restaurant-active-order-review-panel h2,
.restaurant-active-order-review-panel p {
  margin: 0;
}

.restaurant-active-order-review-panel h2 {
  color: #111827;
  font-size: 22px;
  font-weight: 950;
}

.restaurant-active-order-review-panel p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.45;
}

.restaurant-active-order-rating-buttons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.restaurant-active-order-rating-buttons button {
  min-height: 48px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 16px;
  background: #f8fafc;
  color: #111827;
  font-size: 18px;
  font-weight: 950;
}

.restaurant-active-order-review-panel textarea {
  width: 100%;
  resize: vertical;
  min-height: 120px;
  padding: 12px 14px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 16px;
  font: inherit;
}

.restaurant-active-order-review-skip {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  font-weight: 900;
}

@media (max-width: 720px) {
  .restaurant-active-order-widget {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
  }
}

#restaurantActiveOrderWidget,
.restaurant-active-order-widget {
  display: none !important;
}

.restaurant-active-order-status {
  position: fixed;
  right: 24px;
  bottom: 88px;
  z-index: 160;
  width: min(430px, calc(100vw - 48px));
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.22);
  backdrop-filter: blur(16px);
}

.restaurant-active-order-status-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7px 12px;
  align-items: center;
  padding: 14px 16px;
  border: 0;
  background: var(--iris-dark);
  color: #ffffff;
  text-align: left;
  cursor: pointer;
}

.restaurant-active-order-status-toggle span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.restaurant-active-order-status-toggle b {
  justify-self: end;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.18);
  color: #bbf7d0;
  font-size: 12px;
  font-weight: 950;
}

.restaurant-active-order-status-toggle strong {
  grid-column: 1 / -1;
  min-width: 0;
  overflow: hidden;
  color: #ffffff;
  font-size: 15px;
  font-weight: 950;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.restaurant-active-order-status-body {
  display: grid;
  gap: 10px;
  padding: 14px 16px 16px;
}

.restaurant-active-order-copy-number,
.restaurant-active-order-modal-number button,
.order-success-number[data-order-copy-number] {
  border: 0;
  background: transparent;
  color: var(--iris-dark);
  font: inherit;
  font-weight: 950;
  text-align: right;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  cursor: pointer;
}

.order-success-number[data-order-copy-number] {
  display: inline-block;
  color: inherit;
  text-align: center;
}

.restaurant-active-order-modal {
  z-index: 180;
}

.restaurant-active-order-modal-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 22px;
  background: #f8fafc;
}

.restaurant-active-order-modal-number {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 18px;
  background: #ffffff;
}

.restaurant-active-order-modal-number span {
  color: #64748b;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.restaurant-active-order-modal-number button {
  width: max-content;
  max-width: 100%;
  padding: 0;
  overflow-wrap: anywhere;
  text-align: left;
}

.restaurant-active-order-modal-footer .restaurant-order-modal-actions {
  grid-template-columns: 1fr !important;
}

.restaurant-order-copy-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 240;
  transform: translate(-50%, 12px);
  padding: 11px 16px;
  border-radius: 999px;
  background: #111827;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.22);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.restaurant-order-copy-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 720px) {
  .restaurant-active-order-status {
    right: 14px;
    bottom: 66px;
    width: auto;
    max-width: calc(100vw - 28px);
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .restaurant-active-order-status-toggle {
    min-width: 136px;
    max-width: calc(100vw - 28px);
    grid-template-columns: 1fr;
    gap: 3px;
    justify-items: center;
    padding: 9px 14px 10px;
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.22);
    text-align: center;
  }

  .restaurant-active-order-status-toggle span {
    font-size: 12px;
    color: #ffffff;
  }

  .restaurant-active-order-status-toggle b {
    display: none;
  }

  .restaurant-active-order-status-toggle strong {
    max-width: 185px;
    grid-column: auto;
    color: rgba(255, 255, 255, 0.76);
    font-size: 10px;
    font-weight: 850;
    text-align: center;
  }

  .restaurant-active-order-status-body {
    display: none;
  }

  .restaurant-active-order-modal .restaurant-order-modal-panel {
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    border-radius: 22px 22px 0 0;
  }

  .restaurant-order-copy-toast {
    bottom: 122px;
  }
}

.restaurant-order-floating {
  z-index: 220 !important;
}

.restaurant-active-order-status {
  z-index: 230 !important;
  width: min(430px, calc(100vw - 48px)) !important;
  overflow: visible !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.restaurant-active-order-status-toggle {
  min-height: 50px !important;
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 12px 18px !important;
  border-radius: 999px !important;
  background: #16a34a !important;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.20) !important;
}

.restaurant-active-order-status-toggle span {
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 950 !important;
  letter-spacing: 0.03em !important;
}

.restaurant-active-order-status-toggle b {
  display: none !important;
}

.restaurant-active-order-status-toggle strong {
  grid-column: auto !important;
  min-width: 0 !important;
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 950 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  text-align: left !important;
}

.restaurant-active-order-status-body {
  display: grid !important;
  gap: 12px !important;
  margin-top: 10px !important;
  padding: 16px !important;
  border: 1px solid rgba(15, 23, 42, 0.10) !important;
  border-radius: 24px !important;
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18) !important;
  backdrop-filter: blur(16px) !important;
}

.restaurant-active-order-details-list {
  display: grid !important;
  gap: 8px !important;
  margin: 0 !important;
}

.restaurant-active-order-detail-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 10px 12px !important;
  border-radius: 16px !important;
  background: #f8fafc !important;
}

.restaurant-active-order-detail-row dt,
.restaurant-active-order-detail-row dd {
  margin: 0 !important;
}

.restaurant-active-order-detail-row dt {
  color: #166534 !important;
  font-size: 13px !important;
  font-weight: 850 !important;
}

.restaurant-active-order-detail-row dd {
  color: #0f172a !important;
  font-size: 13px !important;
  font-weight: 950 !important;
  text-align: right !important;
}

.restaurant-active-order-status-pill {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 28px !important;
  padding: 4px 10px !important;
  border: 1px solid rgba(22, 163, 74, 0.35) !important;
  border-radius: 999px !important;
  background: #f0fdf4 !important;
  color: #166534 !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  white-space: nowrap !important;
}

.restaurant-active-order-widget-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-top: 0 !important;
}

.restaurant-active-order-widget-actions a,
.restaurant-active-order-widget-actions button {
  min-height: 40px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 14px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--iris-dark) !important;
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  text-decoration: none !important;
}

.restaurant-active-order-modal {
  z-index: 100 !important;
}

.restaurant-active-order-modal .restaurant-order-modal-panel {
  z-index: 105 !important;
}

@media (min-width: 721px) {
  body.restaurant-order-cart-open .restaurant-active-order-status {
    right: 24px !important;
  }
}

@media (max-width: 720px) {
  .restaurant-order-floating {
    right: 14px !important;
    bottom: 14px;
    z-index: 220 !important;
  }

  .restaurant-active-order-status {
    right: 14px !important;
    bottom: 68px;
    width: auto !important;
    max-width: calc(100vw - 28px) !important;
  }

  .restaurant-active-order-status-toggle {
    min-width: 134px !important;
    max-width: calc(100vw - 28px) !important;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    gap: 3px !important;
    min-height: 48px !important;
    padding: 8px 14px 9px !important;
    border-radius: 18px !important;
    text-align: center !important;
  }

  .restaurant-active-order-status-toggle span {
    font-size: 12px !important;
  }

  .restaurant-active-order-status-toggle strong {
    max-width: 190px !important;
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 10px !important;
    font-weight: 850 !important;
    text-align: center !important;
  }

  .restaurant-active-order-status-body {
    display: none !important;
  }

  .restaurant-active-order-modal .restaurant-order-modal-panel {
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    max-height: calc(100dvh - 84px) !important;
    border-radius: 22px 22px 0 0 !important;
    box-shadow: 0 -20px 70px rgba(15, 23, 42, 0.32) !important;
  }
}

.restaurant-order-modal-header span {
  display: none !important;
}

.restaurant-active-order-status-toggle {
  grid-template-columns: auto minmax(0, 1fr) auto !important;
}

.restaurant-active-order-collapse-button {
  width: 34px !important;
  height: 34px !important;
  min-height: 34px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.16) !important;
  color: #ffffff !important;
  cursor: pointer !important;
}

.restaurant-active-order-collapse-button svg {
  width: 18px !important;
  height: 18px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2.4 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  transition: transform 0.18s ease !important;
}

.restaurant-active-order-status.is-collapsed .restaurant-active-order-status-body {
  display: none !important;
}

.restaurant-active-order-status.is-collapsed .restaurant-active-order-status-toggle {
  grid-template-columns: minmax(0, 1fr) auto !important;
  width: max-content !important;
  max-width: min(430px, calc(100vw - 48px)) !important;
  margin-left: auto !important;
}

.restaurant-active-order-status.is-collapsed .restaurant-active-order-status-toggle span {
  display: none !important;
}

.restaurant-active-order-status.is-collapsed .restaurant-active-order-status-toggle strong {
  font-size: 13px !important;
}

.restaurant-active-order-status.is-collapsed .restaurant-active-order-collapse-button svg {
  transform: rotate(180deg) !important;
}

@media (max-width: 720px) {
  body.restaurant-order-cart-open .restaurant-order-floating {
    display: none !important;
  }

  body.restaurant-active-order-modal-open .restaurant-active-order-status {
    display: none !important;
  }

  .restaurant-active-order-status-toggle {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .restaurant-active-order-collapse-button {
    display: none !important;
  }
}

body.restaurant-order-cart-open #restaurantOrderOpen,
body.restaurant-order-cart-open .restaurant-order-floating {
  display: none !important;
}

.restaurant-active-order-status {
  display: grid !important;
  gap: 10px !important;
  align-content: end !important;
}

.restaurant-active-order-status[hidden] {
  display: none !important;
}

.restaurant-active-order-card {
  display: grid !important;
  gap: 0 !important;
}

.restaurant-active-order-card.is-collapsed .restaurant-active-order-status-body {
  display: none !important;
}

.restaurant-active-order-card.is-collapsed .restaurant-active-order-status-toggle {
  grid-template-columns: minmax(0, 1fr) auto !important;
  width: max-content !important;
  max-width: min(430px, calc(100vw - 48px)) !important;
  margin-left: auto !important;
}

.restaurant-active-order-card.is-collapsed .restaurant-active-order-status-toggle span {
  display: none !important;
}

.restaurant-active-order-card.is-collapsed .restaurant-active-order-collapse-button svg {
  transform: rotate(180deg) !important;
}

.restaurant-active-order-card + .restaurant-active-order-card {
  margin-top: 0 !important;
}

.restaurant-active-order-card .restaurant-active-order-status-body {
  animation: irisActiveOrderBodyIn 0.16s ease both;
}

@keyframes irisActiveOrderBodyIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  body.restaurant-active-order-modal-open .restaurant-active-order-status {
    display: grid !important;
  }

  body.restaurant-active-order-modal-open .restaurant-active-order-card.is-open-in-modal {
    display: none !important;
  }

  .restaurant-active-order-status {
    display: grid !important;
    gap: 8px !important;
    justify-items: end !important;
  }

  .restaurant-active-order-card {
    justify-items: end !important;
  }

  .restaurant-active-order-card.is-collapsed .restaurant-active-order-status-toggle,
  .restaurant-active-order-card .restaurant-active-order-status-toggle {
    width: auto !important;
    min-width: 134px !important;
    max-width: calc(100vw - 28px) !important;
    margin-left: 0 !important;
    grid-template-columns: 1fr !important;
  }

  .restaurant-active-order-card .restaurant-active-order-status-toggle span,
  .restaurant-active-order-card.is-collapsed .restaurant-active-order-status-toggle span {
    display: block !important;
  }

  .restaurant-active-order-card .restaurant-active-order-status-body {
    display: none !important;
  }
}

.mobile-menu-panel,
.mobile-menu[open] .mobile-menu-panel {
  z-index: 520 !important;
}

.mobile-menu-panel-close-zone {
  z-index: 519 !important;
}

@media (max-width: 720px) {
  .mobile-menu-panel,
  .mobile-menu[open] .mobile-menu-panel {
    z-index: 520 !important;
  }

  body.restaurant-order-cart-open .restaurant-active-order-status {
    bottom: 300px !important;
  }
}

html.mobile-menu-is-open .iris-site-header,
body.mobile-menu-is-open .iris-site-header {
  z-index: 1200 !important;
}

html.mobile-menu-is-open .mobile-menu summary,
body.mobile-menu-is-open .mobile-menu summary,
.mobile-menu[open] summary {
  z-index: 1220 !important;
}

html.mobile-menu-is-open .mobile-menu-panel,
body.mobile-menu-is-open .mobile-menu-panel,
.mobile-menu[open] .mobile-menu-panel {
  z-index: 1210 !important;
}

html.mobile-menu-is-open .mobile-menu-panel-close-zone,
body.mobile-menu-is-open .mobile-menu-panel-close-zone {
  z-index: 1205 !important;
}

html.mobile-menu-is-open .restaurant-order-floating,
body.mobile-menu-is-open .restaurant-order-floating,
html.mobile-menu-is-open .restaurant-active-order-status,
body.mobile-menu-is-open .restaurant-active-order-status {
  z-index: 200 !important;
}

.review-smart-email-label {
  position: relative;
}

.review-smart-input {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  min-height: 58px;
  border: 1px solid #dbe3ef;
  border-radius: 18px;
  background: #ffffff;
  overflow: visible;
  transition: border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.review-smart-input:focus-within {
  border-color: #7cda24;
  box-shadow: 0 0 0 3px rgba(124, 218, 36, 0.15);
}

.review-smart-input input[data-review-email-local] {
  min-height: 56px;
  border: 0 !important;
  border-radius: 18px 0 0 18px !important;
  background: transparent !important;
  box-shadow: none !important;
}

.review-smart-input input[data-review-email-local]:focus {
  border: 0 !important;
  box-shadow: none !important;
}

.gma-smart-input-picker.review-email-domain-picker {
  min-width: 132px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border: 0;
  border-left: 1px solid #dbe3ef;
  border-radius: 0 18px 18px 0;
  background: #ffffff;
  color: #0f172a;
  font-size: 13px;
  font-weight: 950;
  cursor: pointer;
}

.gma-smart-input-picker.review-email-domain-picker img {
  width: 12px;
  height: 12px;
  display: block;
  transition: transform 0.18s ease;
}

.gma-smart-input-picker.review-email-domain-picker[aria-expanded="true"] img {
  transform: rotate(180deg);
}

.gma-smart-input-menu.review-email-domain-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 40;
  width: min(210px, 100%);
  display: grid;
  padding: 8px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #ffffff;
  color: #111827;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
}

.gma-smart-input-menu.review-email-domain-menu[hidden] {
  display: none !important;
}

.gma-smart-input-menu.review-email-domain-menu button {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 9px 12px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #111827;
  font-size: 13px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.gma-smart-input-menu.review-email-domain-menu button:hover,
.gma-smart-input-menu.review-email-domain-menu button:focus {
  background: #f1f5f9;
}

.review-rating-label {
  gap: 10px !important;
}

.review-rating-label input[type="hidden"] {
  display: none !important;
}

.review-rating-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.review-rating-button {
  min-width: 58px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  background: #ffffff;
  font-size: 16px;
  font-weight: 950;
  cursor: pointer;
  transition: border-color 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.review-rating-button.is-neutral {
  border: 1px solid #cbd5e1;
  color: #64748b;
}

.review-rating-button.is-positive {
  border: 1px solid rgba(234, 179, 8, 0.72);
  color: #ca8a04;
}

.review-rating-button.is-active.is-neutral {
  background: #f1f5f9;
  border-color: #94a3b8;
  color: #475569;
}

.review-rating-button.is-active.is-positive {
  background: rgba(234, 179, 8, 0.14);
  border-color: #eab308;
  color: #a16207;
}

.review-rating-button:hover {
  transform: translateY(-1px);
}

.review-form select[name="rating"] {
  display: none !important;
}

@media (max-width: 720px) {
  .gma-smart-input-picker.review-email-domain-picker {
    min-width: 112px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .gma-smart-input-menu.review-email-domain-menu {
    width: min(190px, calc(100vw - 44px));
  }

  .review-rating-button {
    min-width: 54px;
    padding-inline: 12px;
  }
}

html {
  min-height: 100%;
  background: #fbfdff;
}

body {
  min-height: 100%;
  background: #fbfdff !important;
  background-image: none !important;
}

.restaurant-page-main,
.blog-page-main,
.contacts-page-main,
.order-page-main,
.site-main {
  position: relative;
  background: transparent !important;
}

.iris-home-main {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.82) 0%, rgba(255, 255, 255, 0.96) 36%, rgba(248, 251, 255, 0.92) 100%) !important;
}

.iris-home-main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(circle at 18% 7%, rgba(147, 197, 253, 0.18), transparent 32rem),
    radial-gradient(circle at 86% 34%, rgba(186, 230, 253, 0.16), transparent 36rem),
    radial-gradient(circle at 20% 78%, rgba(219, 234, 254, 0.20), transparent 38rem);
  background-repeat: no-repeat;
  background-size: 100% 980px, 100% 1150px, 100% 1100px;
  background-position: top center, center 760px, center calc(100% - 420px);
}

.black-iris-hero-section,
.iris-hero-section,
.restaurant-page-hero,
.blog-page-hero,
.blog-article-hero,
.home-section,
.iris-section,
.home-top-food-section,
.home-top-drinks-section,
.home-menu-category-section,
.home-news-section,
.home-reviews-section,
.home-contact-section,
.home-accordion-section {
  background: transparent !important;
}

.restaurant-page-hero-card,
.blog-page-hero-card,
.blog-article-hero-card,
.order-page-hero .order-hero-card {
  color: var(--iris-dark) !important;
}

.restaurant-page-hero-card h1,
.blog-page-hero-card h1,
.blog-article-hero-card h1,
.order-page-hero .order-hero-card h1 {
  color: var(--iris-dark) !important;
}

.restaurant-page-hero-card p,
.blog-page-hero-card p,
.blog-article-hero-card p,
.order-page-hero .order-hero-card p {
  color: #475569 !important;
}

.home-section-link:hover {
  box-shadow: none !important;
}

.iris-language-menu {
  position: relative;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.iris-language-menu summary {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 2px solid #0f172a;
  border-radius: 999px;
  background: #ffffff;
  color: #0f172a;
  list-style: none;
  cursor: pointer;
  transition: border-color .18s ease, color .18s ease, box-shadow .18s ease, background .18s ease;
}

.iris-language-menu summary::-webkit-details-marker {
  display: none;
}

.iris-language-menu summary:hover,
.iris-language-menu[open] summary {
  border-color: #ff6b17;
  color: #ff6b17;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.10);
}

.iris-language-menu svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.iris-language-current {
  display: none;
}

.iris-language-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 110px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.16);
}

.iris-language-dropdown a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #0f172a;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.iris-language-dropdown a:hover,
.iris-language-dropdown a.active {
  border-color: #ff6b17;
  color: #ff6b17;
}

.iris-mobile-language-buttons {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
}

.iris-mobile-language-buttons a {
  min-height: 42px;
  display: grid !important;
  place-items: center;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.82) !important;
  color: #0f172a !important;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .10em;
}

.iris-mobile-language-buttons a.active {
  border-color: #ff6b17 !important;
  color: #ff6b17 !important;
  background: #fff7ed !important;
}

.iris-home-social-strip-section {
  width: min(100% - 40px, 1280px);
  margin: 0 auto;
  padding: 34px 0 16px;
  display: grid;
  gap: 18px;
}

.iris-home-social-strip-section h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(24px, 2.5vw, 40px);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.iris-social-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
}

.iris-social-strip-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.iris-social-strip-item > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 16px;
  border: 2px solid rgba(15, 23, 42, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: #0f172a;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
  transition: all .2s;
}

.iris-social-strip-item > a:hover {
  border-color: #ff6b17;
  color: #ff6b17;
  background: #ffe4b9;
}

.iris-social-icon,
.iris-social-icon-inline,
.iris-social-icon-fallback {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  min-height: 28px !important;
  display: grid;
  place-items: center;
  object-fit: contain;
}

.iris-social-icon-inline svg {
  width: 100%;
  height: 100%;
}

.iris-social-copy-button {
  position: absolute;
  right: 9px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transition: all .2s;
}

.iris-social-strip-item:hover .iris-social-copy-button,
.iris-social-copy-button:focus-visible {
  opacity: 1;
  pointer-events: auto;
}

.iris-social-strip-item:hover > a span {
  margin-right: 30px;
}

.iris-social-copy-icon {
  width: 34px;
  height: 34px;
}

@media (max-width: 980px) {
  .iris-language-menu {
    display: none;
  }
}

@media (max-width: 720px) {
  .iris-home-social-strip-section {
    width: min(100% - 28px, 1280px);
    padding-top: 24px;
  }

  .iris-social-strip {
    display: grid;
    grid-template-columns: 1fr;
  }

  .iris-social-strip-item,
  .iris-social-strip-item > a {
    width: 100%;
  }
}

.iris-home-social-strip-section {
  width: min(100% - 40px, 1280px) !important;
  margin-inline: auto !important;
  padding-inline: 0 !important;
}

.iris-social-strip-item {
  border-radius: 999px;
  transition: transform .22s ease, box-shadow .22s ease;
}

.iris-social-strip-item > a {
  min-height: 54px;
  padding: 12px 20px !important;
  border-color: rgba(255, 107, 23, 0.75) !important;
  background: rgba(255, 255, 255, 0.76) !important;
  color: #ff6b17 !important;
  transition: transform .22s ease,
    border-color .22s ease,
    background .22s ease,
    color .22s ease,
    box-shadow .22s ease,
    padding-right .22s ease;
}

.iris-social-strip-item:hover,
.iris-social-strip-item:focus-within,
.iris-social-strip-item:has(.iris-social-copy-button:hover) {
  transform: scale(1.035);
  z-index: 3;
}

.iris-social-strip-item:hover > a,
.iris-social-strip-item:focus-within > a,
.iris-social-strip-item:has(.iris-social-copy-button:hover) > a {
  border-color: rgba(255, 107, 23, 0.98) !important;
  background: linear-gradient(135deg, #ff7a1a 0%, #ff5c00 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 22px 46px rgba(255, 107, 23, 0.22) !important;
  padding-right: 62px !important;
}

.iris-social-strip-item:hover .iris-social-icon,
.iris-social-strip-item:focus-within .iris-social-icon,
.iris-social-strip-item:has(.iris-social-copy-button:hover) .iris-social-icon,
.iris-social-strip-item:hover .iris-social-copy-icon,
.iris-social-strip-item:focus-within .iris-social-copy-icon,
.iris-social-strip-item:has(.iris-social-copy-button:hover) .iris-social-copy-icon {
  filter: brightness(0) invert(1);
}

.iris-social-strip-item:hover .iris-social-icon-inline svg,
.iris-social-strip-item:focus-within .iris-social-icon-inline svg,
.iris-social-strip-item:has(.iris-social-copy-button:hover) .iris-social-icon-inline svg {
  color: #ffffff;
  fill: currentColor;
  stroke: currentColor;
}

.iris-social-copy-button {
  right: 12px !important;
  width: 40px !important;
  height: 40px !important;
  background: rgba(255, 255, 255, 0.16) !important;
  opacity: 0 !important;
  transform: translateY(-50%) scale(.86) !important;
  transition: opacity .2s ease, transform .2s ease, background .2s ease !important;
}

.iris-social-strip-item:hover .iris-social-copy-button,
.iris-social-strip-item:focus-within .iris-social-copy-button,
.iris-social-copy-button:hover,
.iris-social-copy-button:focus-visible {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(-50%) scale(1) !important;
}

.iris-social-copy-button:hover,
.iris-social-copy-button:focus-visible {
  background: rgba(255, 255, 255, 0.26) !important;
}

.iris-social-strip-item:hover > a span {
  margin-right: 0 !important;
}

.iris-footer.gma-footer {
  margin-top: 76px;
  padding: 42px 22px 28px;
  background: #030303;
  color: rgba(255, 255, 255, 0.72);
}

.iris-footer-inner.gma-footer-inner {
  width: min(100%, 1680px);
  margin: 0 auto;
  padding: 54px 0;
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) minmax(180px, .7fr) minmax(260px, 1fr);
  gap: clamp(28px, 6vw, 110px);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.iris-footer-logo.gma-footer-logo,
.iris-footer-brand .gma-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
}

.iris-footer-logo-mark {
  color: #ff6b17;
  font-size: 24px;
  line-height: 1;
}

.iris-footer-brand p {
  max-width: 460px;
  margin: 24px 0 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.55;
}

.iris-footer-contact-link {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  text-decoration: none;
  transition: color .18s ease;
}

.iris-footer-contact-link:hover {
  color: #ffffff;
}

.iris-footer-contact-link img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .88;
}

.iris-footer-links.gma-footer-links,
.iris-footer-social-list.gma-footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.iris-footer-links h3,
.iris-footer-social-list h3 {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.iris-footer-links a {
  color: rgba(255, 255, 255, 0.70);
  font-size: 17px;
  font-weight: 900;
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
}

.iris-footer-links a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.iris-footer-social-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.iris-footer-social-links.gma-social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.iris-footer-social-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 34px;
  color: rgba(255, 255, 255, 0.70);
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
}

.iris-footer-social-links a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.iris-footer-social-links img,
.iris-footer-social-links svg,
.iris-footer-social-links span[aria-hidden="true"] {
  width: 28px;
  height: 28px;
  min-width: 28px;
  object-fit: contain;
}

.iris-footer-bottom.gma-footer-bottom {
  width: min(100%, 1680px);
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 18px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  font-weight: 700;
}

.iris-footer-bottom a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  transition: color .18s ease;
}

.iris-footer-bottom a:hover {
  color: #ffffff;
}

.iris-footer-policy-link {
  border: none !important;
  box-shadow: none !important;
}

.iris-footer-legal-links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.iris-footer-legal-links .iris-footer-policy-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.privacy-page-card,
.privacy-content-card {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
}

.privacy-content-card {
  padding: clamp(26px, 4vw, 52px);
  display: grid;
  gap: 24px;
}

.privacy-content-card h2 {
  margin: 0 0 10px;
  color: #0f172a;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.privacy-content-card p {
  margin: 0;
  color: #475569;
  line-height: 1.7;
}

.iris-cookie-consent[hidden] {
  display: none !important;
}

.iris-cookie-consent {
  position: fixed;
  left: 22px;
  top: 84px;
  z-index: 950;
  width: min(420px, calc(100vw - 44px));
  pointer-events: none;
}

.iris-cookie-consent-panel {
  pointer-events: auto;
  padding: 22px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(18px);
}

.iris-cookie-consent-panel h2 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 18px;
  font-weight: 900;
}

.iris-cookie-consent-panel p {
  margin: 0 0 16px;
  color: #475569;
  font-size: 14px;
  line-height: 1.55;
}

.iris-cookie-consent-panel button {
  width: 100%;
  min-height: 46px;
  border: none;
  border-radius: 999px;
  background: #0f172a;
  color: #ffffff;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 980px) {
  .iris-footer-inner.gma-footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 34px 0;
  }

  .iris-footer-social-columns {
    grid-template-columns: 1fr;
  }

  .iris-footer-bottom.gma-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .iris-footer.gma-footer {
    margin: 0;
    padding: 22px 22px 34px;
  }

  .home-section.home-accordion-section .site-container {
    margin-bottom: 30px;
  }

  .iris-footer-brand p,
  .iris-footer-links a,
  .iris-footer-social-links a,
  .iris-footer-contact-link,
  .iris-footer-bottom.gma-footer-bottom {
    font-size: 13px;
  }

  .iris-footer-logo.gma-footer-logo,
  .iris-footer-brand .gma-footer-logo {
    font-size: 15px;
  }

  .iris-cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
    top: auto;
    width: auto;
  }

  .iris-cookie-consent-panel {
    border-radius: 24px;
  }
}

.gma-section.gma-home-social-strip-section.iris-home-social-strip-section.iris-section {
  display: none !important;
}

.site-nav.site-nav-desktop .iris-language-menu {
  margin-left: 2px;
}

.iris-language-menu {
  position: relative;
  z-index: 90;
}

.iris-language-menu::after {
  content: "";
  position: absolute;
  left: -14px;
  right: -14px;
  top: 100%;
  height: 18px;
}

.iris-language-menu-trigger {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: none !important;
  outline: none;
  border-radius: 999px;
  background: #ffffff;
  color: #0f172a;
  box-shadow: none !important;
  cursor: pointer;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}

.iris-language-menu-trigger:hover,
.iris-language-menu:focus-within .iris-language-menu-trigger,
.iris-language-menu:hover .iris-language-menu-trigger {
  color: #ff6b17;
  background: #fff7ed;
  transform: translateY(-1px);
}

.iris-language-menu .iris-language-dropdown {
  top: calc(100% + 12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .18s ease,
    transform .18s ease,
    visibility 0s linear .26s;
}

.iris-language-menu:hover .iris-language-dropdown,
.iris-language-menu:focus-within .iris-language-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.home-section-title-link {
  color: inherit;
  text-decoration: none;
  transition: color .18s ease, opacity .18s ease;
}

.home-section-title-link:hover {
  color: #ff6b17;
}

.iris-footer-policy-link,
.iris-footer-policy-link:hover,
.iris-footer-policy-link:focus,
.iris-footer-policy-link:active {
  border: 0 !important;
  box-shadow: none !important;
  outline: none;
}

@media (max-width: 760px) {
  .mobile-menu-panel .iris-mobile-language-buttons,
  .iris-mobile-language-buttons {
    margin-top: 16px !important;
    gap: 6px !important;
  }

  .restaurant-menu-card-badges {
    margin-bottom: 0;
  }

  .home-section + .home-section {
    border-top: none;
  }

  .home-section .site-container {
    margin-top: 40px;
  }

  .home-menu-category-section {
    scroll-margin-top: 10px !important;
  }

  .mobile-menu-panel .iris-mobile-language-buttons a,
  .iris-mobile-language-buttons a {
    min-height: 34px !important;
    font-size: 12px !important;
    letter-spacing: .08em !important;
  }

  .black-iris-hero-gallery {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .black-iris-hero-gallery .black-iris-hero-photo-3,
  .black-iris-hero-photo.black-iris-hero-photo-3 {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .iris-footer.gma-footer {
    padding: 22px 22px 34px !important;
  }

  .iris-footer-brand p,
  .iris-footer-links a,
  .iris-footer-social-links a,
  .iris-footer-contact-link,
  .iris-footer-bottom.gma-footer-bottom {
    font-size: 12px !important;
    line-height: 1.45 !important;
  }
}

.privacy-page-card.page-hero-card-with-action,
.agreement-page-card.page-hero-card-with-action {
  width: 100% !important;
  max-width: none !important;
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 28px !important;
}

.privacy-page-card .page-hero-card-text,
.agreement-page-card .page-hero-card-text {
  min-width: 0 !important;
  max-width: 920px !important;
}

.privacy-page-card .page-hero-home-link,
.agreement-page-card .page-hero-home-link {
  flex: 0 0 auto !important;
  margin: 0 0 0 auto !important;
  align-self: flex-start !important;
}

.privacy-page-card.page-hero-card-with-action h1,
.agreement-page-card.page-hero-card-with-action h1 {
  margin: 0 !important;
}

.privacy-page-card.page-hero-card-with-action p,
.agreement-page-card.page-hero-card-with-action p {
  margin: 18px 0 0 !important;
}

@media (max-width: 760px) {
  .privacy-page-card.page-hero-card-with-action,
  .agreement-page-card.page-hero-card-with-action {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .privacy-page-card .page-hero-home-link,
  .agreement-page-card .page-hero-home-link {
    justify-self: start !important;
    margin: 0 !important;
  }
}

.order-maps-label {
  display: grid;
  gap: 8px;
}

.order-maps-control-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.order-maps-control-row .order-location-button {
  min-height: 52px;
  white-space: nowrap;
  border-radius: 16px;
  background: var(--iris-orange);
  border: 2px solid var(--iris-orange);
  color: #ffffff;
  transition: all .2s;
}

.order-map {
  position: relative;
}

.order-map .leaflet-container,
.order-map.leaflet-container {
  min-height: 320px;
  border-radius: 22px;
  font-family: inherit;
}

.order-map.order-map-ready .order-map-fallback {
  display: none;
}

.order-map-no-library .order-map-fallback {
  min-height: 320px;
}

.restaurant-active-order-cancel-button {
  background: #fee2e2 !important;
  color: #991b1b !important;
}

.restaurant-active-order-cancel-modal {
  position: fixed;
  inset: 0;
  z-index: 980;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(15, 23, 42, 0.34);
}

.restaurant-active-order-cancel-panel {
  width: min(420px, 100%);
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.25);
  text-align: center;
}

.restaurant-active-order-cancel-panel h2 {
  margin: 0;
  color: #0f172a;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.restaurant-active-order-cancel-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.restaurant-active-order-cancel-actions button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  font-weight: 950;
  cursor: pointer;
}

.restaurant-active-order-cancel-no {
  background: #dc2626;
  color: #ffffff;
}

.restaurant-active-order-cancel-yes {
  background: #e5e7eb;
  color: #111827;
}

@media (max-width: 760px) {
  .order-maps-control-row {
    grid-template-columns: 1fr;
  }

  .order-maps-control-row .order-location-button {
    width: 100%;
  }
}

.order-form-wide.order-map-field {
  display: none !important;
}

.order-location-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
}

.order-location-button img {
  width: 18px;
  height: 18px;
  display: block;
  flex: 0 0 auto;
}

@media (max-width: 720px) {
  body.restaurant-order-cart-open .restaurant-order-floating {
    bottom: var(--restaurant-order-floating-mobile-bottom, 300px) !important;
  }

  body.restaurant-order-cart-open .restaurant-active-order-status {
    bottom: var(--restaurant-active-order-mobile-bottom, 354px) !important;
  }

  .mobile-menu-panel {
    padding-bottom: max(20px, calc(16px + env(safe-area-inset-bottom))) !important;
  }

  .mobile-menu-bottom-actions {
    order: 90 !important;
    width: 100%;
    display: grid;
    gap: 8px;
    margin-top: auto !important;
    padding-top: 16px;
    border-top: 1px solid rgba(226, 232, 240, 0.92);
  }

  .mobile-menu-bottom-actions .mobile-language-switcher,
  .mobile-menu-bottom-actions .mobile-menu-language-switcher,
  .mobile-menu-bottom-actions .iris-mobile-language-buttons {
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: 0 !important;
  }

  .mobile-menu-panel > .mobile-language-switcher,
  .mobile-menu-panel > .mobile-menu-language-switcher,
  .mobile-menu-panel > .iris-mobile-language-buttons {
    order: 90 !important;
    margin-top: auto !important;
    padding-top: 16px !important;
    border-top: 1px solid rgba(226, 232, 240, 0.92);
  }

  .mobile-menu-panel .mobile-menu-delivery-link {
    order: 91 !important;
    margin-top: 0 !important;
  }

  .mobile-menu-panel .mobile-menu-primary-link {
    order: 92 !important;
    margin-top: 0 !important;
  }

  .mobile-menu-bottom-actions .mobile-menu-delivery-link,
  .mobile-menu-bottom-actions .mobile-menu-primary-link,
  .mobile-menu-panel > .mobile-menu-delivery-link,
  .mobile-menu-panel > .mobile-menu-primary-link {
    width: 100%;
    flex-shrink: 0;
    justify-content: center;
  }
}

.privacy-content-card ul {
  margin: 10px 0 0;
  padding-left: 22px;
  color: #475569;
  line-height: 1.7;
}

.privacy-content-card li + li {
  margin-top: 6px;
}

.iris-cookie-consent-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: -4px 0 16px;
}

.iris-cookie-consent-links a {
  color: #0f172a;
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.order-form-privacy-note {
  margin: 12px 0 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.5;
}

.order-form-privacy-note a {
  color: #0f172a;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.restaurant-menu-page-hero-card {
  padding: 0 !important;
}

.restaurant-menu-page-hero-card .page-hero-card-text {
  width: 100% !important;
  max-width: none !important;
}

.restaurant-menu-page-hero-card .page-hero-card-text > p {
  display: none !important;
}

.restaurant-menu-category-nav {
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.restaurant-menu-category-nav-track {
  min-width: 0;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.restaurant-menu-category-nav-track::-webkit-scrollbar {
  display: none;
}

.restaurant-menu-category-nav-track a,
.restaurant-menu-category-nav-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--iris-orange);
  border-radius: 999px;
  background: var(--iris-orange);
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.restaurant-menu-category-nav-track a {
  padding: 12px 18px;
}

.restaurant-menu-category-nav-button {
  width: 44px;
  padding: 0;
  cursor: pointer;
}

.restaurant-menu-category-nav-track a:hover,
.restaurant-menu-category-nav-button:hover {
  background: #ffffff !important;
  color: var(--iris-orange) !important;
  border-color: var(--iris-orange) !important;
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.18);
  transform: translateY(-1px);
}

.restaurant-menu-card-image-wrap {
  position: relative;
  width: 100%;
  display: block;
}

.restaurant-menu-card-image-wrap .restaurant-menu-card-image,
.restaurant-menu-card-image-wrap .restaurant-menu-card-image-empty {
  width: 100%;
}

.restaurant-badge.restaurant-badge-image {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  min-height: 28px;
  padding: 7px 11px;
  background: rgba(16, 185, 129, 0.96);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(4, 120, 87, 0.28);
}

@media (max-width: 760px) {
  .restaurant-menu-page-hero-card {
    padding: 0 !important;
    display: block !important;
  }

  .home-contact-section {
    border: none;
  }

  .home-contact-section.iris-section .site-container {
    margin-bottom: 50px;
  }

  .restaurant-menu-category-nav {
    display: block;
    margin-top: 16px;
  }

  .restaurant-menu-category-nav-button {
    display: none !important;
  }

  .restaurant-menu-category-nav-track {
    width: 100%;
    padding-bottom: 2px;
  }

  .restaurant-menu-category-nav-track a {
    min-height: 38px;
    padding: 10px 15px;
    font-size: 14px;
  }
}

.iris-header-inner-with-category-nav {
  min-height: auto !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  row-gap: 10px !important;
  padding-top: 0 !important;
  padding-bottom: 12px !important;
}

.iris-header-inner-with-category-nav .restaurant-menu-category-nav {
  width: 100% !important;
  flex: 0 0 100% !important;
  order: 10 !important;
  display: block !important;
  margin: 0 !important;
}

.iris-header-inner-with-category-nav .restaurant-menu-category-nav-track {
  width: 100% !important;
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
  overflow: visible !important;
  padding: 0 !important;
  scrollbar-width: none !important;
}

.iris-header-inner-with-category-nav .restaurant-menu-category-nav-track a {
  min-height: 42px !important;
  padding: 11px 18px !important;
  border: 2px solid var(--iris-orange) !important;
  border-radius: 999px !important;
  background: var(--iris-orange) !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  box-shadow: none !important;
  transform: none !important;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease !important;
}

.iris-header-inner-with-category-nav .restaurant-menu-category-nav-track a:hover,
.iris-header-inner-with-category-nav .restaurant-menu-category-nav-track a:focus-visible {
  background: #ffffff !important;
  color: var(--iris-orange) !important;
  border-color: var(--iris-orange) !important;
  box-shadow: none !important;
  transform: none !important;
}

.iris-header-inner-with-category-nav .restaurant-menu-category-nav-button {
  display: none !important;
}

.restaurant-menu-page-main {
  padding-top: calc(var(--iris-menu-header-height, 124px) + 18px) !important;
}

.menu-category-section {
  scroll-margin-top: calc(var(--iris-menu-header-height, 124px) + 18px) !important;
}

@media (max-width: 760px) {
  .iris-header-inner-with-category-nav {
    row-gap: 8px !important;
    padding-bottom: 9px !important;
  }

  .iris-header-inner-with-category-nav .restaurant-menu-category-nav-track {
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    padding-bottom: 2px !important;
  }

  .iris-header-inner-with-category-nav .restaurant-menu-category-nav-track a {
    min-height: 38px !important;
    padding: 10px 15px !important;
    font-size: 14px !important;
  }

  .restaurant-menu-page-main {
    padding-top: calc(var(--iris-menu-header-height, 98px) + 14px) !important;
  }

  .menu-category-section {
    scroll-margin-top: calc(var(--iris-menu-header-height, 98px) + 16px) !important;
  }
}

@media (max-width: 420px) {
  .mobile-header-actions > a {
    padding: 7px 9px !important;
    font-size: 14px !important;
  }
}

.restaurant-menu-page-main {
  padding-top: 60px !important;
}

.restaurant-menu-category-strip {
  width: 100%;
  padding: 14px 0 8px;
  background: transparent !important;
}

.restaurant-menu-category-strip .restaurant-menu-category-nav {
  width: 100% !important;
  display: block !important;
  margin: 0 !important;
  background: transparent !important;
}

.restaurant-menu-category-strip .restaurant-menu-category-nav-track {
  width: 100% !important;
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
  overflow: visible !important;
  padding: 0 !important;
  scrollbar-width: none !important;
}

.restaurant-menu-category-strip .restaurant-menu-category-nav-button,
.iris-header-inner-with-category-nav .restaurant-menu-category-nav {
  display: none !important;
}

.restaurant-menu-card-badges:empty {
  display: none !important;
}

.restaurant-menu-card-badges {
  min-height: 0 !important;
}

.restaurant-badge.restaurant-badge-image {
  position: static !important;
  box-shadow: none !important;
}

.restaurant-menu-category-strip {
  position: sticky !important;
  top: 60px !important;
  z-index: 210 !important;
  width: 100% !important;
  padding: 12px 0 8px !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.restaurant-menu-category-strip .restaurant-menu-category-nav {
  width: 100% !important;
  margin: 0 !important;
  background: transparent !important;
}

.restaurant-menu-category-strip .restaurant-menu-category-nav-track {
  width: 100% !important;
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
  overflow: visible !important;
  padding: 0 10px !important;
}

.restaurant-menu-category-strip .restaurant-menu-category-nav-track a {
  min-height: 42px !important;
  padding: 11px 18px !important;
  border: 2px solid var(--iris-orange) !important;
  border-radius: 999px !important;
  background: var(--iris-orange) !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  box-shadow: none !important;
  transform: none !important;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease !important;
}

.restaurant-menu-category-strip .restaurant-menu-category-nav-track a:hover,
.restaurant-menu-category-strip .restaurant-menu-category-nav-track a:focus-visible {
  background: #ffffff !important;
  color: var(--iris-orange) !important;
  border-color: var(--iris-orange) !important;
  box-shadow: none !important;
  transform: none !important;
}

.restaurant-home-category-strip {
  margin-bottom: 0 !important;
}

.iris-home-main .black-iris-hero-section {
  padding-top: 0px !important;
}

.menu-category-section,
.home-menu-category-section {
  scroll-margin-top: 132px !important;
}

.home-menu-card .restaurant-menu-card-badges {
  display: flex !important;
}

.home-menu-card .restaurant-menu-card-badges:empty {
  display: none !important;
}

@media (max-width: 760px) {
  .restaurant-menu-category-strip {
    top: 60px !important;
    padding: 10px 0 6px !important;
  }

  .restaurant-menu-category-strip .restaurant-menu-category-nav-track {
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    padding-bottom: 2px !important;
  }

  .restaurant-menu-category-strip .restaurant-menu-category-nav-track::-webkit-scrollbar {
    display: none !important;
  }

  .restaurant-menu-category-strip .restaurant-menu-category-nav-track a {
    min-height: 38px !important;
    padding: 10px 15px !important;
    font-size: 14px !important;
  }

  .menu-category-section,
  .home-menu-category-section {
    scroll-margin-top: 120px !important;
  }
}

.restaurant-menu-category-strip {
  position: fixed !important;
  top: var(--iris-fixed-header-height, 60px) !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 215 !important;
  width: 100% !important;
  padding: 12px 0 8px !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

body.has-menu-category-strip .restaurant-page-hero {
  padding-top: 0 !important;
}

.menu-category-section,
.home-menu-category-section {
  scroll-margin-top: calc(var(--iris-fixed-menu-stack-height, 112px) + 8px) !important;
}

@media (max-width: 760px) {
  .restaurant-menu-category-strip {
    top: var(--iris-fixed-header-height, 60px) !important;
    padding: 10px 0 6px !important;
  }

  body.has-menu-category-strip .restaurant-menu-page-main,
  body.has-menu-category-strip .iris-home-main {
    padding-top: calc(var(--iris-fixed-menu-stack-height, 104px) + 10px) !important;
  }

  .menu-category-section,
  .home-menu-category-section {
    scroll-margin-top: calc(var(--iris-fixed-menu-stack-height, 104px) + 6px) !important;
  }
}

body.has-menu-category-strip .restaurant-menu-page-main,
body.has-menu-category-strip .iris-home-main {
  padding-top: 75px !important;
}

.menu-category-section,
.home-menu-category-section {
  scroll-margin-top: calc(var(--iris-fixed-menu-stack-height, 112px) + 10px) !important;
}

.has-menu-category-strip .site-main.restaurant-page-main.restaurant-menu-page-main {
  padding-top: 130px !important;
}

.restaurant-page-hero-card.contacts-hero-card.page-hero-card-with-action .page-hero-card-text .home-eyebrow {
  display: none;
}

.black-iris-hero-photo-1 {
  left: 61px !important;
}

.black-iris-hero-photo-2 {
  left: 259px !important;
  top: 114px !important;
  z-index: 7 !important;
  width: clamp(160px, 15vw, 224px) !important;
  height: clamp(238px, 21.5vw, 318px) !important;
  transform: rotate(3deg) !important;
}

@media (max-width: 1440px) and (min-width: 900px) {
  .black-iris-hero-photo-1 {
    left: clamp(64px, 11%, 118px) !important;
  }

  .black-iris-hero-photo-2 {
    left: clamp(150px, 25%, 296px) !important;
    transform: rotate(3deg) !important;
  }
}

.order-smart-field {
  position: relative;
}

.order-smart-input {
  position: relative;
  display: grid;
  align-items: stretch;
  min-height: 58px;
  border: 1px solid #dbe3ef;
  border-radius: 18px;
  background: #ffffff;
  overflow: visible;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.order-smart-input:focus-within {
  border-color: #ff6b13;
  box-shadow: 0 0 0 3px rgba(255, 107, 19, 0.14);
}

.order-email-smart-input {
  grid-template-columns: minmax(0, 1fr) minmax(112px, auto);
}

.order-phone-smart-input {
  grid-template-columns: minmax(112px, auto) minmax(0, 1fr);
}

.order-smart-input input[data-order-email-local],
.order-smart-input input[data-order-phone-number] {
  min-height: 56px;
  width: 100%;
  min-width: 0;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #0f172a;
  outline: none;
}

.order-smart-input input[data-order-email-local] {
  border-radius: 18px 0 0 18px !important;
}

.order-smart-input input[data-order-phone-number] {
  border-left: 1px solid #dbe3ef !important;
  border-radius: 0 18px 18px 0 !important;
}

.order-smart-input input[data-order-email-local]:focus,
.order-smart-input input[data-order-phone-number]:focus {
  border: 0 !important;
  box-shadow: none !important;
}

.order-smart-input input[data-order-phone-number]:focus {
  border-left: 1px solid #dbe3ef !important;
}

.order-smart-input-picker {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border: 0;
  background: #ffffff;
  color: #0f172a;
  font-size: 13px;
  font-weight: 950;
  cursor: pointer;
}

.order-email-domain-picker {
  min-width: 132px;
  border-left: 1px solid #dbe3ef;
  border-radius: 0 18px 18px 0;
}

.order-phone-country-picker {
  min-width: 112px;
  border-radius: 18px 0 0 18px;
}

.order-smart-input-picker img {
  width: 12px;
  height: 12px;
  display: block;
  transition: transform 0.18s ease;
}

.order-smart-input-picker[aria-expanded="true"] img {
  transform: rotate(180deg);
}

.order-smart-input-menu {
  position: absolute;
  top: calc(100% + 8px);
  z-index: 45;
  display: grid;
  padding: 8px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #ffffff;
  color: #111827;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
}

.order-smart-input-menu[hidden] {
  display: none !important;
}

.order-email-domain-menu {
  right: 0;
  width: min(210px, 100%);
}

.order-phone-country-menu {
  left: 0;
  width: min(260px, 96vw);
  max-height: min(360px, 56vh);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.order-smart-input-menu button {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 9px 12px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #111827;
  font-size: 13px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.order-smart-input-menu button:hover,
.order-smart-input-menu button:focus {
  background: #fff3eb;
  color: #e85d04;
}

@media (max-width: 720px) {
  .order-email-smart-input {
    grid-template-columns: minmax(0, 1fr) minmax(108px, auto);
  }

  .order-phone-smart-input {
    grid-template-columns: minmax(104px, auto) minmax(0, 1fr);
  }

  .order-smart-input-picker {
    padding-inline: 11px;
    font-size: 12px;
  }

  .order-email-domain-picker {
    min-width: 108px;
  }

  .order-phone-country-picker {
    min-width: 104px;
  }

  .order-email-domain-menu {
    width: min(190px, calc(100vw - 44px));
  }

  .order-phone-country-menu {
    width: min(260px, calc(100vw - 44px));
    max-height: min(420px, 58vh);
  }
}

.privacy-page-hero .privacy-page-card.page-hero-card-with-action {
  box-sizing: border-box !important;
  padding: clamp(28px, 4.2vw, 54px) !important;
}

.privacy-page-hero .privacy-page-card .page-hero-card-text {
  box-sizing: border-box !important;
}

@media (max-width: 760px) {
  .privacy-page-hero .privacy-page-card.page-hero-card-with-action {
    padding: 28px 22px !important;
  }
}

@media (max-width: 420px) {
  .privacy-page-hero .privacy-page-card.page-hero-card-with-action {
    padding: 24px 18px !important;
  }
}

@media (max-width: 760px) {
  .restaurant-menu-page-main {
    padding-top: 60px !important;
  }

  .site-main.iris-home-main {
    padding-top: 110px !important;
  }

  .restaurant-menu-category-strip {
    padding: 12px 0 6px;
  }

  .iris-home-main .black-iris-hero-section {
    padding-top: 43px !important;
  }

  body.has-menu-category-strip .site-main.iris-home-main,
  .restaurant-menu-category-strip .site-container {
    width: 100%;
  }

  .restaurant-menu-category-strip .restaurant-menu-category-nav-track {
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    padding-bottom: 2px !important;
  }

  .restaurant-menu-category-strip .restaurant-menu-category-nav-track a {
    min-height: 38px !important;
    padding: 10px 15px !important;
    font-size: 14px !important;
  }
}

/* Active order restaurant comment */
.restaurant-active-order-admin-comment {
  display: grid !important;
  gap: 6px !important;
  padding: 12px 14px !important;
  border: 1px solid rgba(255, 106, 13, 0.24) !important;
  border-radius: 18px !important;
  background: #fff7ed !important;
  color: #0f172a !important;
}

.restaurant-active-order-admin-comment strong {
  color: #c2410c !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.03em !important;
}

.restaurant-active-order-admin-comment p {
  margin: 0 !important;
  color: #0f172a !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1.45 !important;
}

/* Order geolocation button states */
.order-location-button.is-loading {
  position: relative !important;
  pointer-events: none !important;
  opacity: 0.82 !important;
}

.order-location-button.is-loading img {
  opacity: 0 !important;
}

.order-location-button.is-loading::before {
  content: "" !important;
  width: 18px !important;
  height: 18px !important;
  border: 2px solid rgba(15, 23, 42, 0.2) !important;
  border-top-color: #ff6a0d !important;
  border-radius: 999px !important;
  animation: order-location-spin 0.8s linear infinite !important;
}

@keyframes order-location-spin {
  to { transform: rotate(360deg); }
}

.order-location-modal-overlay {
  position: fixed !important;
  inset: 0 !important;
  z-index: 10020 !important;
  display: grid !important;
  place-items: center !important;
  padding: 20px !important;
  background: rgba(15, 23, 42, 0.52) !important;
  backdrop-filter: blur(8px) !important;
}

.order-location-modal-panel {
  position: relative !important;
  width: min(420px, 100%) !important;
  display: grid !important;
  gap: 14px !important;
  padding: 24px !important;
  border-radius: 28px !important;
  background: #ffffff !important;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.28) !important;
  color: #0f172a !important;
}

.order-location-modal-panel strong {
  padding-right: 42px !important;
  font-size: 22px !important;
  font-weight: 950 !important;
  line-height: 1.1 !important;
}

.order-location-modal-panel p {
  margin: 0 !important;
  color: #475569 !important;
  font-size: 15px !important;
  font-weight: 750 !important;
  line-height: 1.45 !important;
}

.order-location-modal-close {
  position: absolute !important;
  top: 14px !important;
  right: 14px !important;
  width: 38px !important;
  height: 38px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #f1f5f9 !important;
  color: #0f172a !important;
  font-size: 22px !important;
  font-weight: 950 !important;
  cursor: pointer !important;
}

.order-location-modal-ok {
  width: 100% !important;
}

@media (max-width: 420px) {
  .order-location-modal-panel {
    padding: 20px !important;
    border-radius: 24px !important;
  }

  .order-location-modal-panel strong {
    font-size: 20px !important;
  }

  .order-location-modal-panel p {
    font-size: 14px !important;
  }
}


/* 2026-07-01: checkout qty controls + mobile menu cards */
.order-checkout-item-main {
  min-width: 0;
}

.order-checkout-item-quantity {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.order-checkout-qty-button {
  width: 34px;
  height: 34px;
  min-width: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--iris-orange);
  border-radius: 12px;
  background: #ffffff;
  color: var(--iris-orange);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.order-checkout-qty-button:hover {
  background: var(--iris-orange);
  color: #ffffff;
}

.order-checkout-qty-value {
  min-width: 20px;
  text-align: center;
  color: var(--iris-text);
  font-size: 15px;
  font-weight: 900;
}

@media (max-width: 760px) {
  .restaurant-menu-grid,
  .home-menu-grid {
    align-items: start !important;
  }

  .restaurant-menu-card,
  .home-menu-grid .restaurant-menu-card {
    display: block !important;
    min-height: 0 !important;
    height: auto !important;
    align-self: start !important;
  }

  .restaurant-menu-card-image-wrap {
    width: calc(100% + 10%) !important;
    margin-left: -5% !important;
    aspect-ratio: 1 / 1 !important;
    overflow: hidden !important;
    border-radius: 22px 22px 0 0 !important;
  }

  .restaurant-menu-card-image-wrap .restaurant-menu-card-image,
  .restaurant-menu-card-image-wrap .restaurant-menu-card-image-empty,
  .restaurant-menu-card-image,
  .restaurant-menu-card-image-empty {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    border-radius: inherit !important;
  }

  .restaurant-menu-card-body {
    padding: 14px !important;
  }

  .restaurant-menu-card p {
    font-size: 12px !important;
  }

  .order-checkout-item {
    grid-template-columns: 58px minmax(0, 1fr) !important;
  }

  .order-checkout-item b {
    grid-column: 2 !important;
  }
}


/* mobile card layout fix: square image on top of left column, price below */
.restaurant-menu-card-image-price {
  display: none;
}

@media (max-width: 760px) {
  .restaurant-menu-grid,
  .home-menu-grid {
    grid-template-columns: 1fr !important;
    grid-auto-rows: auto !important;
    align-items: start !important;
  }

  .restaurant-menu-card,
  .home-menu-grid .restaurant-menu-card {
    display: grid !important;
    grid-template-columns: 118px minmax(0, 1fr) !important;
    align-items: stretch !important;
    min-height: 0 !important;
    height: auto !important;
    border-radius: 22px !important;
  }

  .restaurant-menu-card-image-wrap {
    width: auto !important;
    margin-left: 0 !important;
    padding: 14px 0 14px 14px !important;
    display: grid !important;
    grid-template-rows: auto auto !important;
    align-content: start !important;
    gap: 10px !important;
    overflow: visible !important;
    border-radius: 0 !important;
    aspect-ratio: auto !important;
    height: auto !important;
  }

  .restaurant-menu-card-image-wrap .restaurant-menu-card-image,
  .restaurant-menu-card-image-wrap .restaurant-menu-card-image-empty,
  .restaurant-menu-card-image,
  .restaurant-menu-card-image-empty {
    width: 110px !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    border-radius: 0 0 18px 0 !important;
  }

  .restaurant-menu-card-image-price {
    display: block !important;
    width: 100% !important;
    padding-left: 15px !important;
  }

  .restaurant-menu-card-image-price .restaurant-price {
    display: grid !important;
    gap: 3px !important;
  }

  .restaurant-menu-card-image-price .restaurant-price-new {
    font-size: 15px !important;
    line-height: 1.05 !important;
  }

  .restaurant-menu-card-image-price .restaurant-price-old {
    font-size: 11px !important;
    line-height: 1 !important;
  }

  .restaurant-menu-card-body {
    min-width: 0 !important;
    padding: 14px 14px 14px 12px !important;
    gap: 7px !important;
  }

  .restaurant-menu-card p {
    font-size: 12px !important;
    line-height: 1.34 !important;
  }

  .restaurant-menu-card-footer {
    justify-content: flex-end !important;
    align-items: flex-end !important;
    margin-top: auto !important;
    padding-top: 8px !important;
  }

  .restaurant-menu-card-footer .restaurant-price {
    display: none !important;
  }

  .restaurant-add-button {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    border-radius: 14px !important;
  }
}

@media (max-width: 420px) {
  .restaurant-menu-card,
  .home-menu-grid .restaurant-menu-card {
    grid-template-columns: 110px minmax(0, 1fr) !important;
  }

  .restaurant-menu-card-image-wrap {
    padding: 12px 0 12px 12px !important;
  }

  .restaurant-menu-card-body {
    padding: 12px 12px 12px 10px !important;
  }
}


/* correction: wrapper is not square; only image is square */
@media (max-width: 760px) {
  .restaurant-menu-card-image-wrap {
    aspect-ratio: auto !important;
    height: auto !important;
  }

  .restaurant-menu-card-image-price {
    display: block !important;
    width: 100% !important;
    padding-left: 15px !important;
  }

  .restaurant-menu-card-image-wrap .restaurant-menu-card-image,
  .restaurant-menu-card-image-wrap .restaurant-menu-card-image-empty,
  .restaurant-menu-card-image,
  .restaurant-menu-card-image-empty {
    width: 110px !important;
    min-height: 0 !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    border-radius: 0 0 18px 0 !important;
  }
}


/* correction: mobile card left column final spacing */
@media (max-width: 760px) {
  .restaurant-menu-card-image-wrap {
    width: auto !important;
    margin-left: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    flex-flow: column !important;
    justify-content: space-between !important;
    aspect-ratio: auto !important;
    height: auto !important;
  }

  .restaurant-menu-card-image-price {
    display: block !important;
    width: 100% !important;
    padding: 10px 0 12px 15px !important;
  }

  .restaurant-menu-card-image-price .restaurant-price-new {
    font-size: 18px !important;
  }

  .site-container.iris-header-work-status-mobile-row {
    min-height: 20px;
    padding: 0;
  }
}
  .site-container.iris-header-work-status-mobile-row {
    display: none;
  }
/* 2026-07-02: public settings UI foundation */
.iris-header-logo-block {
  display: grid;
  gap: 2px;
  align-items: center;
}

.iris-header-logo-block .site-logo {
  line-height: 1;
}



.iris-header-work-status {
  display: block;
  max-width: 260px;
  color: #64748b;
  font-size: 9px;
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.iris-header-work-status.is-closed {
  color: #dc2626;
}

.iris-header-work-status.is-open {
  color: #047857;
}

.restaurant-order-modal {
  z-index: 216 !important;
}

.restaurant-order-delivery-closed {
  margin: 0 0 12px;
  padding: 12px 14px;
  border: 1px solid rgba(249, 115, 22, 0.22);
  border-radius: 16px;
  background: #fff7ed;
  color: #9a3412;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.restaurant-order-modal-actions #restaurantOrderCheckout[hidden] {
  display: none !important;
}

.order-maps-control-row {
  display: block !important;
}

.order-maps-control-row input[type="hidden"] {
  display: none !important;
}

.order-location-button.is-loading img {
  display: none !important;
}

.order-location-button.is-loading::before {
  border-color: rgba(255, 255, 255, 0.42) !important;
  border-top-color: #ffffff !important;
}

.order-total-reminder {
  font-size: 16px !important;
}

.order-total-reminder strong {
  font-size: 18px !important;
}

.order-checkout-item-side {
  display: grid;
  justify-items: end;
  align-content: center;
  gap: 8px;
}

.order-checkout-item-side b {
  text-align: right;
}

@media (max-width: 760px) {
  .iris-header-logo-block {
    gap: 1px;
  }

  .iris-header-work-status {
    max-width: 160px;
    font-size: 8px;
  }

  .order-checkout-item-side {
    grid-column: 2 !important;
    justify-items: start;
  }

  .order-checkout-item-side b {
    text-align: left;
  }
}


/* 2026-07-02: mobile header status row */
.iris-header-work-status-mobile-row {
  display: none;
}

.iris-header-work-status-mobile {
  max-width: none;
  text-align: center;
}

@media (max-width: 760px) {
  .iris-header-work-status-desktop {
    display: none !important;
  }

  .iris-header-logo-block {
    gap: 0 !important;
  }

  .site-container.iris-header-work-status-mobile-row {
    width: min(100% - 40px, 1220px);
    min-height: 20px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    margin-inline: auto;
  }

  .iris-header-work-status-mobile {
    display: block !important;
    width: 100%;
    color: #64748b;
    font-size: 10px;
    font-weight: 850;
    line-height: 1.2;
    letter-spacing: 0.01em;
    text-align: center;
  }

  .iris-header-work-status-mobile.is-closed {
    color: #dc2626;
  }

  .iris-header-work-status-mobile.is-open {
    color: #047857;
  }

  .iris-home-main,
  .restaurant-page-main,
  .blog-page-main,
  .contacts-page-main,
  .site-main {
    padding-top: 70px !important;
  }

  .restaurant-menu-category-strip {
    top: 65px !important;
  }
}

/* IRIS 2.1 checkout delivery/geolocation refinements */
.order-address-fields .order-address-label,
.order-address-fields .order-location-control {
  min-width: 0;
}

.order-location-control {
  display: grid;
  align-content: start;
  gap: 8px;
  color: var(--iris-text);
  font-size: 13px;
  font-weight: 500;
}

.order-location-control-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 18px;
}

.order-location-button {
  min-height: 52px !important;
  width: 100% !important;
  padding: 0 16px !important;
  border: 2px solid var(--iris-orange) !important;
  border-radius: 16px !important;
  background: var(--iris-orange) !important;
  color: #ffffff !important;
  font-weight: 950 !important;
  line-height: 1.1 !important;
  box-shadow: 0 12px 26px rgba(249, 115, 22, 0.2) !important;
}

.order-location-button img {
  width: 18px !important;
  height: 18px !important;
  display: block !important;
  flex: 0 0 auto !important;
  filter: brightness(0) invert(1) !important;
}

.order-location-button.is-loading {
  opacity: 1 !important;
}

.order-location-button.is-loading img {
  display: none !important;
}

.order-location-button.is-loading::before {
  content: "" !important;
  width: 18px !important;
  height: 18px !important;
  flex: 0 0 auto !important;
  border: 2px solid rgba(255, 255, 255, 0.42) !important;
  border-top-color: #ffffff !important;
  border-radius: 999px !important;
  animation: order-location-spin 0.8s linear infinite !important;
}

.order-location-button.is-ready {
  background: #16a34a !important;
  border-color: #16a34a !important;
  box-shadow: 0 12px 26px rgba(22, 163, 74, 0.18) !important;
}

.order-delivery-closed-inline {
  width: 100%;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(249, 115, 22, 0.24);
  border-radius: 16px;
  background: #fff7ed;
  color: #9a3412;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
  text-align: left;
}

.order-delivery-closed-inline[hidden] {
  display: none !important;
}

.order-success-links a,
.restaurant-active-order-telegram-link {
  gap: 8px;
}

.order-success-links a img,
.restaurant-active-order-telegram-link img {
  width: 18px;
  height: 18px;
  display: block;
  flex: 0 0 auto;
}

.restaurant-active-order-telegram-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

@media (max-width: 760px) {
  .order-address-fields .order-location-control {
    width: 100%;
  }
}

/* IRIS 2.4 contact details layout fix */
.iris-contact-details,
.contacts-details {
  display: flex !important;
  flex-direction: column !important;
  grid-template-columns: none !important;
  gap: 12px !important;
}

.iris-contact-details > .iris-contact-detail-item,
.contacts-details > .iris-contact-detail-item,
.iris-contact-detail-map {
  width: 100%;
  min-width: 0;
  padding: 16px !important;
  border-radius: 18px !important;
  background: #f8fafc;
}

.iris-contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.iris-contact-detail-icon {
  overflow: hidden;
}

.iris-contact-detail-icon-img,
.iris-contact-detail-icon-inline,
.iris-contact-detail-icon-inline svg {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: contain !important;
}

.iris-contact-detail-map {
  display: grid;
  gap: 12px;
  overflow: hidden;
}

.iris-contact-detail-map-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #0f172a;
  font-size: 15px;
  font-weight: 950;
}

.iris-contact-detail-map iframe {
  display: block;
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 16px;
  background: #e2e8f0;
}

@media (max-width: 760px) {
  .iris-contact-details,
  .contacts-details {
    gap: 10px !important;
  }

  .iris-contact-details > .iris-contact-detail-item,
  .contacts-details > .iris-contact-detail-item,
  .iris-contact-detail-map {
    padding: 14px !important;
    border-radius: 16px !important;
  }

  .iris-contact-detail-map iframe {
    min-height: 260px;
  }
}
