.customer-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.portal-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 18px rgba(43, 28, 25, 0.08);
}

.utility-row {
  min-height: 30px;
  padding: 0.25rem 1rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
  background: #fafafa;
  border-bottom: 1px solid #f1e7e3;
}

.utility-copy {
  margin: 0;
  font-size: 0.74rem;
  color: #222;
  white-space: nowrap;
  text-decoration: none;
}

.utility-copy:hover {
  text-decoration: underline;
}

.utility-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.utility-admin {
  color: #333;
  font-size: 0.74rem;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.1rem 0.5rem;
}

.utility-admin:hover {
  color: var(--accent-deep);
  border-color: var(--accent-strong);
}

.lang-flag {
  border: 1px solid #ddd;
  border-radius: 999px;
  width: 27px;
  height: 27px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
}

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

.lang-flag.active {
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 2px rgba(223, 90, 61, 0.2);
}

.menu-row {
  width: min(1320px, 100% - 1rem);
  margin: 0 auto;
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.1rem;
  align-items: center;
}

.portal-header.intro-home .menu-row {
  grid-template-columns: auto 1fr;
}

.portal-header.intro-home .main-menu,
.portal-header.intro-home .menu-cart {
  display: none;
}

.brand-link {
  display: inline-flex;
  align-items: center;
}

.brand-logo-large {
  width: 108px;
  height: auto;
  object-fit: contain;
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid #e6d4cf;
  background: #fff;
  color: #181818;
  border-radius: 999px;
  height: 40px;
  padding: 0 0.75rem;
  cursor: pointer;
  font-family: 'DMSans-Bold', sans-serif;
  font-size: 0.84rem;
  line-height: 1;
}

.mobile-menu-toggle:hover {
  border-color: #d9b8af;
  background: #fff7f5;
}

.mobile-menu-icon {
  width: 17px;
  display: inline-grid;
  gap: 3px;
}

.mobile-menu-icon span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #232323;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.portal-header.mobile-menu-open .mobile-menu-icon span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.portal-header.mobile-menu-open .mobile-menu-icon span:nth-child(2) {
  opacity: 0;
}

.portal-header.mobile-menu-open .mobile-menu-icon span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.main-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.1rem;
}

.menu-block {
  display: contents;
}

.menu-item {
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0.66rem 0.8rem;
  min-height: 52px;
  font-family: 'DMSans-Bold', sans-serif;
  font-size: 0.86rem;
  line-height: 1.1;
  color: #111;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.menu-item:hover,
.menu-item.active {
  color: var(--accent-deep);
  border-bottom-color: var(--accent-strong);
  background: #fff7f5;
}

.menu-cart {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  height: 52px;
  padding: 0 0.18rem;
  border: none;
  background: transparent;
  text-decoration: none;
  color: #111;
  font-family: 'DMSans-Bold', sans-serif;
  font-size: 0.92rem;
  line-height: 1;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.menu-cart-icon {
  display: none;
  width: 18px;
  height: 18px;
}

.menu-cart-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.submenu-panel {
  width: min(1320px, 100% - 1rem);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  border-top: 1px solid #ece2df;
  border-left: 1px solid #ece2df;
  border-right: 1px solid #ece2df;
  box-shadow: 0 12px 24px rgba(34, 24, 21, 0.16);
  position: relative;
  z-index: 44;
}

.submenu-links {
  background: #fff;
  padding: 0.9rem 1.05rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 0.45rem 0.85rem;
}

.submenu-btn {
  border: none;
  background: transparent;
  text-align: left;
  padding: 0.17rem 0;
  font-family: 'DMSans-Bold', sans-serif;
  font-size: 0.86rem;
  line-height: 1.1;
  color: #111;
  cursor: pointer;
}

.submenu-btn:hover,
.submenu-btn.active {
  color: var(--accent-deep);
  text-decoration: underline;
}

.submenu-promo {
  min-height: 118px;
  background: linear-gradient(120deg, rgba(20, 20, 20, 0.42), rgba(91, 33, 28, 0.45));
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 0.75rem;
  background-size: cover;
  background-position: center;
}

.submenu-promo p {
  margin: 0;
  font-family: 'DMSans-Bold', sans-serif;
  font-size: 1.05rem;
  max-width: 320px;
}

.submenu-scrim {
  position: fixed;
  inset: 102px 0 0;
  border: none;
  background: rgba(0, 0, 0, 0.48);
  z-index: 20;
  padding: 0;
  cursor: default;
}

.portal-main {
  flex: 1;
  width: min(1320px, 100% - 1rem);
  margin: 0.6rem auto 0;
  padding-bottom: 1.3rem;
}

.landing {
  display: grid;
  gap: 1.15rem;
  padding: 0.25rem 0 0.5rem;
}

.landing-hero {
  width: min(1180px, 100%);
  margin: 0 auto;
  border-radius: 14px;
  background: #f3e3df;
  border: 1px solid #ead5d0;
  box-shadow: 0 8px 16px rgba(53, 35, 30, 0.12);
  padding: 5px;
}

.landing-video-wrap {
  position: relative;
  width: 100%;
  padding-top: 32%;
  min-height: 280px;
  border-radius: 10px;
  overflow: hidden;
  background: #d6cfcc;
}

.landing-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 30px);
  height: calc(100% + 30px);
  transform: translate(-50%, -50%);
  border: none;
}

.landing-content {
  max-width: 920px;
  margin: 0 auto;
  padding: 0.55rem 1rem 0.1rem;
  text-align: center;
}

.landing-title {
  font-family: 'Gruffy', sans-serif;
  font-size: clamp(1.86rem, 2.9vw, 2.55rem);
  line-height: 1.08;
  max-width: 890px;
  margin: 0 auto;
  text-wrap: balance;
}

.landing-texts {
  margin: 1rem auto 0;
  max-width: 680px;
  border-left: 3px solid #efc3b8;
  padding-left: 0.95rem;
  text-align: left;
}

.landing-text {
  margin: 0.55rem 0 0;
  font-size: 1.02rem;
  font-family: 'DMSans', sans-serif;
}

.landing-cta {
  margin-top: 1.35rem;
  min-width: 340px;
}

.landing-contact {
  position: relative;
  overflow: visible;
  width: min(560px, calc(100% - 2.2rem));
  margin: 0.35rem auto 0.2rem;
  border-radius: 10px;
  border: 1px solid #ebd3ce;
  background: #f7e8e4;
  display: block;
  align-items: center;
  padding: 0.9rem 1rem 0.9rem 5.4rem;
  box-shadow: 0 8px 16px rgba(53, 35, 30, 0.12);
}

.landing-contact-photo {
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 84px;
  height: 84px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 4px 12px rgba(31, 31, 31, 0.22);
}

.landing-contact-body {
  display: grid;
  gap: 0.18rem;
}

.landing-contact-body h2 {
  font-family: 'Gruffy', sans-serif;
  font-size: 1.8rem;
  line-height: 0.98;
}

.landing-contact-role {
  margin: 0;
  font-size: 1.02rem;
}

.landing-contact-body a,
.landing-contact-body p {
  margin: 0;
  font-size: 0.98rem;
  font-family: 'DMSans', sans-serif;
  color: #111;
  text-decoration: none;
}

.guide {
  width: min(920px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
  padding-top: 0.35rem;
}

.guide-hero {
  border-radius: 12px;
  border: 1px solid #ebd3ce;
  background: #f7e8e4;
  text-align: center;
  padding: 1.2rem 1rem;
  box-shadow: 0 8px 16px rgba(53, 35, 30, 0.12);
}

.guide-hero h2 {
  font-family: 'Gruffy', sans-serif;
  font-size: clamp(1.65rem, 2.7vw, 2.25rem);
  line-height: 1.06;
  max-width: 34ch;
  margin: 0 auto;
  text-wrap: balance;
}

.guide-hero p {
  margin: 0.2rem 0 0;
  font-family: 'Gruffy', sans-serif;
  font-size: clamp(1.28rem, 2.05vw, 1.78rem);
  line-height: 1.05;
}

.guide-title {
  margin: 0.15rem 0 0;
  text-align: center;
  font-family: 'Gruffy', sans-serif;
  font-size: clamp(1.68rem, 2.75vw, 2.15rem);
  line-height: 1.08;
}

.guide-steps {
  position: relative;
  list-style: none;
  counter-reset: guide-step;
  margin: 0 auto;
  width: min(760px, 100%);
  padding: 0;
  display: grid;
  gap: 0.55rem;
  font-size: 1.03rem;
  font-family: 'DMSans', sans-serif;
  line-height: 1.42;
}

.guide-steps::before {
  content: '';
  position: absolute;
  left: 0.09rem;
  top: 0.22rem;
  bottom: 0.22rem;
  width: 3px;
  border-radius: 999px;
  background: #efc3b8;
}

.guide-steps li {
  position: relative;
  counter-increment: guide-step;
  padding-left: 2.05rem;
}

.guide-steps li::before {
  content: counter(guide-step) '.';
  position: absolute;
  left: 1.62rem;
  top: 0;
  transform: translateX(-100%);
  font-family: 'DMSans-Bold', sans-serif;
}

.guide-outro {
  margin: 0.05rem auto 0;
  width: min(760px, 100%);
  font-size: 1.03rem;
  font-family: 'DMSans', sans-serif;
}

.guide-contact {
  margin-top: 0.25rem;
}

.catalog-wrap {
  margin-top: 1.1rem;
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 0.55rem;
}

.catalog-title {
  font-size: clamp(1.8rem, 4vw, 2.85rem);
  line-height: 1;
}

.catalog-tools {
  display: grid;
  gap: 0.2rem;
  width: min(380px, 100%);
}

.catalog-tools label {
  font-size: 0.78rem;
}

.result-count {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
}

.info-wrap {
  margin-top: 1.1rem;
}

.info-head {
  margin-bottom: 0.75rem;
}

.info-title {
  font-family: 'DMSans-Bold', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.05;
}

.info-intro {
  margin: 0.35rem 0 0;
  font-size: 0.98rem;
  color: #2b2b2b;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 0.9rem;
}

.info-card {
  border-radius: 0;
  border: 1px solid #ddd;
  padding: 0.9rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.info-card h3 {
  font-family: 'DMSans-Bold', sans-serif;
  font-size: 1.2rem;
}

.info-card p {
  margin: 0;
  font-size: 0.9rem;
}

.info-preview {
  border: 1px solid #e6dfdd;
  background: #fff;
  padding: 0.35rem;
  min-height: 160px;
  display: grid;
  place-items: center;
}

.info-preview img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
}

.info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.info-card .button,
.info-card .button-ghost {
  min-height: 34px;
  border-radius: 4px;
  padding: 0.35rem 0.7rem;
  font-size: 0.78rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 0.95rem;
  align-items: stretch;
}

.product-card {
  padding: 0.5rem;
  border-radius: 0;
  border: 1px solid #ded6d2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  background: #fff;
  display: grid;
  gap: 0.5rem;
  height: 100%;
  content-visibility: auto;
  contain-intrinsic-size: 420px;
}

.product-card .open-card {
  display: grid;
  grid-template-rows: auto auto auto auto;
  gap: 0.42rem;
  height: 100%;
}

.product-card-compact {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  gap: 0.9rem;
  align-content: stretch;
}

.product-compact-head {
  display: grid;
  gap: 0.45rem;
}

.product-card-compact h3 {
  min-height: 0;
  font-size: 1.45rem;
  line-height: 1.2;
  display: block;
}

.product-card-compact .price {
  font-family: 'DMSans-Bold', sans-serif;
  font-size: 1.18rem;
}

.product-card-catering .price {
  font-size: 1.08rem;
  line-height: 1.2;
}

.product-card-compact .product-compact-note {
  margin: 0.05rem 0 0;
  font-size: 0.9rem;
  line-height: 1.3;
  min-height: 0;
  color: #2f2f2f;
}

.product-card-compact .product-meta {
  min-height: 0;
  font-size: 1rem;
}

.product-card-compact .product-color-meta {
  margin: 0.02rem 0 0;
  min-height: 0;
  font-size: 0.95rem;
  line-height: 1.3;
  color: #2f2f2f;
}

.quick-add-box {
  margin-top: auto;
  border: 1px solid #d8d2cf;
  border-radius: 10px;
  background: #fafafa;
  padding: 0.55rem;
  display: grid;
  gap: 0.4rem;
}

.quick-add-field label {
  color: #202020;
  font-family: 'DMSans-Bold', sans-serif;
  font-size: 0.92rem;
}

.quick-add-field input,
.quick-add-field select {
  min-height: 34px;
  border-radius: 4px;
  border-color: #bdbdbd;
}

.quick-add-submit {
  width: fit-content;
  min-height: 36px;
  border-radius: 6px;
  padding: 0.35rem 0.75rem;
  box-shadow: none;
}

.product-thumb {
  border: none;
  border-radius: 0;
  height: 220px;
  background: #fff;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card h3 {
  font-family: 'DMSans-Bold', sans-serif;
  font-size: 1.13rem;
  line-height: 1.15;
  min-height: 2.55rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-meta {
  font-size: 0.9rem;
  margin: 0;
  min-height: 2.4rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.price {
  margin: 0;
  font-family: 'DMSans-Bold', sans-serif;
  font-size: 1.02rem;
}

.product-card .product-catalog-note {
  margin-top: -0.05rem;
  min-height: 0;
  color: #2f2f2f;
  font-size: 0.88rem;
  line-height: 1.3;
}

.product-card .product-color-meta {
  margin-top: -0.02rem;
  min-height: 0;
  color: #2f2f2f;
  font-size: 0.88rem;
  line-height: 1.3;
}

.open-card {
  border: none;
  background: transparent;
  text-align: left;
  padding: 0;
  cursor: pointer;
}

.open-card:hover h3 {
  color: var(--accent-deep);
  text-decoration: underline;
}

.site-footer {
  margin-top: auto;
  padding: 1.8rem 1rem;
  background: #c6d9e2;
  display: grid;
  justify-items: center;
  gap: 0.4rem;
}

.footer-logo {
  width: 180px;
  max-width: 62vw;
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-link {
  margin: 0;
  font-size: 0.9rem;
  color: inherit;
  text-decoration: none;
}

.footer-link:hover,
.footer-link:focus-visible {
  text-decoration: underline;
}

.detail-view {
  margin-top: 1.1rem;
}

.detail-back {
  border: none;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  color: #444;
  background: #f3dfdb;
  box-shadow: 0 3px 8px rgba(31, 31, 31, 0.2);
  margin: 0 0 0.8rem 0.2rem;
}

.detail-back-icon {
  width: 30px;
  height: 30px;
  display: block;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 1.25rem;
  align-items: start;
}

.detail-media {
  border-radius: 0;
  padding: 1.2rem;
  border: 1px solid #ddd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
}

.detail-media img {
  width: 100%;
  max-height: 720px;
  object-fit: contain;
}

.detail-content {
  border-radius: 0;
  padding: 1.2rem;
  border: 1px solid #ddd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
  display: grid;
  gap: 0.62rem;
}

.detail-content h2 {
  font-family: 'DMSans-Bold', sans-serif;
  font-size: 2.5rem;
  line-height: 1.05;
}

.detail-content h3 {
  margin-top: 0.9rem;
  font-family: 'DMSans-Bold', sans-serif;
  font-size: 2rem;
}

.detail-field {
  max-width: 420px;
}

.detail-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.detail-note {
  margin: 0;
  font-size: 1rem;
}

@media (max-width: 1100px) {
  .menu-row {
    grid-template-columns: 1fr;
    gap: 0.3rem;
    padding: 0.42rem 0;
  }

  .menu-item {
    font-size: 0.81rem;
    min-height: 48px;
    padding: 0.58rem 0.68rem;
  }

  .menu-cart {
    font-size: 0.86rem;
  }

  .main-menu {
    order: 2;
  }

  .menu-cart {
    order: 3;
  }

  .submenu-panel {
    grid-template-columns: 1fr;
  }

  .submenu-promo {
    min-height: 90px;
  }

  .portal-header.intro-home .menu-row {
    grid-template-columns: auto;
  }

  .landing-video-wrap {
    padding-top: 44%;
    min-height: 220px;
  }

  .catalog-toolbar {
    align-items: start;
    flex-direction: column;
  }

  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-content h2 {
    font-size: 2rem;
  }

  .detail-content h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 780px) {
  .menu-row {
    grid-template-columns: 1fr auto auto;
    min-height: 62px;
    gap: 0.4rem;
    padding: 0.35rem 0;
  }

  .brand-link {
    grid-column: 1;
    order: 1;
  }

  .menu-cart {
    grid-column: 2;
    order: 2;
    justify-self: end;
    align-self: center;
    height: 40px;
    min-width: 40px;
    padding: 0 0.58rem;
    border: 1px solid #e6d4cf;
    border-radius: 999px;
    background: #fff;
    border-bottom-width: 1px;
    position: relative;
    gap: 0;
    font-size: 0;
  }

  .menu-cart:hover {
    background: #fff7f5;
    border-color: #d9b8af;
  }

  .menu-cart #checkout-link-text {
    display: none;
  }

  .menu-cart-icon {
    display: block;
  }

  .menu-cart .badge {
    position: absolute;
    top: -7px;
    right: -6px;
    min-width: 1.25rem;
    height: 1.25rem;
    font-size: 0.72rem;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    grid-column: 3;
    order: 3;
    justify-self: end;
  }

  .main-menu {
    display: none;
    order: 4;
  }

  .portal-header.mobile-menu-open .main-menu {
    display: flex;
    grid-column: 1 / -1;
    order: 4;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #eee1dd;
    padding-top: 0.3rem;
  }

  .menu-block {
    display: block;
    border-bottom: 1px solid #f2e4df;
  }

  .menu-item {
    width: 100%;
    text-align: left;
    min-height: 44px;
    border-bottom: none;
    padding: 0.6rem 0.15rem;
    font-size: 0.9rem;
    position: relative;
  }

  .menu-item[data-menu-section]:not([data-menu-section="info"])::after {
    content: '';
    position: absolute;
    right: 0.25rem;
    top: 50%;
    width: 9px;
    height: 9px;
    border-right: 2px solid #5e5e5e;
    border-bottom: 2px solid #5e5e5e;
    transform: translateY(-60%) rotate(45deg);
    transition: transform 0.15s ease;
  }

  .menu-item.submenu-open::after {
    transform: translateY(-35%) rotate(225deg);
  }

  .mobile-submenu-links {
    display: grid;
    gap: 0.36rem;
    padding: 0.32rem 0.25rem 0.55rem 0.8rem;
    background: #fff9f7;
    border-top: 1px dashed #ecd8d2;
  }

  .mobile-submenu-btn {
    border: none;
    background: transparent;
    text-align: left;
    padding: 0.26rem 0;
    font-family: 'DMSans-Bold', sans-serif;
    font-size: 0.85rem;
    color: #2a2a2a;
    cursor: pointer;
  }

  .mobile-submenu-btn.active {
    color: var(--accent-deep);
    text-decoration: underline;
  }

  .portal-header.intro-home .mobile-menu-toggle {
    display: none;
  }

  .portal-header.intro-home .menu-cart {
    display: inline-flex;
  }

  .utility-copy {
    display: none;
  }

  .submenu-links {
    grid-template-columns: 1fr 1fr;
  }

  .landing {
    gap: 0.9rem;
  }

  .landing-video-wrap {
    padding-top: 56%;
    min-height: 160px;
  }

  .landing-video {
    width: calc(100% + 18px);
    height: calc(100% + 18px);
  }

  .landing-content {
    text-align: left;
    padding: 0.2rem 0.2rem 0.55rem;
  }

  .landing-title {
    font-size: clamp(1.35rem, 7.2vw, 1.82rem);
    line-height: 1.1;
  }

  .landing-texts {
    max-width: none;
    padding-left: 0.8rem;
  }

  .landing-cta {
    width: 100%;
    min-width: 0;
  }

  .landing-contact {
    width: min(560px, calc(100% - 1rem));
    padding: 0.7rem 0.8rem 0.7rem 4.35rem;
  }

  .landing-contact-photo {
    left: -12px;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
  }

  .landing-contact-body h2 {
    font-size: 1.4rem;
  }

  .guide {
    gap: 0.75rem;
  }

  .guide-hero {
    padding: 0.9rem 0.7rem;
  }

  .guide-steps {
    padding: 0;
    font-size: 0.97rem;
    gap: 0.45rem;
  }

  .guide-steps::before {
    left: 0.04rem;
  }

  .guide-steps li {
    padding-left: 1.85rem;
  }

  .guide-steps li::before {
    left: 1.4rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 0.72rem;
  }

  .product-thumb {
    height: clamp(220px, 52vw, 320px);
    padding: 0.3rem;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .product-card h3 {
    font-size: 1.07rem;
  }

  .product-card-compact {
    padding: 0.9rem;
  }

  .product-card-compact h3 {
    font-size: 1.15rem;
  }

  .product-card-compact .price {
    font-size: 1.05rem;
  }

  .product-card-catering .price {
    font-size: 0.98rem;
  }

  .product-card-compact .product-compact-note {
    font-size: 0.84rem;
  }

  .product-card .product-catalog-note {
    font-size: 0.82rem;
  }

  .detail-back {
    width: 50px;
    height: 50px;
  }

  .detail-back-icon {
    width: 26px;
    height: 26px;
  }

  .detail-media {
    order: 2;
    padding: 0.72rem;
  }

  .detail-media img {
    max-height: min(58vh, 440px);
  }

  .detail-content {
    order: 1;
    padding: 0.88rem;
    gap: 0.5rem;
  }

  .detail-content h2 {
    font-size: 1.5rem;
    line-height: 1.1;
  }

  .detail-content h3 {
    font-size: 1.25rem;
    margin-top: 0.45rem;
  }

  .detail-note {
    font-size: 0.94rem;
    line-height: 1.38;
  }
}

@media (max-width: 430px) {
  .mobile-menu-toggle {
    width: 40px;
    padding: 0;
    justify-content: center;
  }

  .mobile-menu-text {
    display: none;
  }
}

@media (max-width: 520px) {
  .submenu-links {
    grid-template-columns: 1fr;
  }
}
