.ctm-menu { --ctm-accent: #b85e3e; --ctm-ink: #2d2b31; --ctm-muted: #6d6870; --ctm-surface: #fffaf6; color: var(--ctm-ink); }
.ctm-menu__panels { min-height: 300px; padding-top: 67px; touch-action: pan-y; }
.ctm-panel { display: none; animation: ctm-fade .35s ease both; }
.ctm-panel.is-active { display: block; }
.ctm-panel__heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin: 0 0 24px; }
.ctm-panel__eyebrow { color: var(--ctm-accent); font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.ctm-panel__heading h2 { margin: 6px 0 0; font-size: clamp(28px, 4vw, 46px); letter-spacing: -.05em; line-height: 1; }
.ctm-products { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.ctm-product { display: flex; min-height: 116px; overflow: hidden; border: 1px solid rgba(45,43,49,.12); border-radius: 16px; background: var(--ctm-surface); box-shadow: 0 12px 28px rgba(45,43,49,.08); transition: opacity .08s linear; }
.ctm-product__media { flex: 0 0 112px; width: 112px; height: 112px; overflow: hidden; }
.ctm-product__image { display: block; width: 112px; height: 112px; aspect-ratio: 1 / 1; object-fit: cover; }
.ctm-product__body { display: flex; flex: 1; flex-direction: column; justify-content: center; padding: 17px 18px; }
.ctm-product__top { display: flex; align-items: start; justify-content: space-between; gap: 12px; }
.ctm-product h3 { margin: 0; font-size: 16px; line-height: 1.2; }
.ctm-product p { margin: 8px 0 0; color: var(--ctm-muted); font-size: 12px; line-height: 1.5; }
.ctm-product__price { flex: 0 0 auto; color: var(--ctm-accent); font-size: 14px; font-weight: 800; white-space: nowrap; }
.ctm-product--unavailable { border-color: rgba(45,43,49,.08); background: rgba(45,43,49,.035); }
.ctm-product--unavailable .ctm-product__media, .ctm-product--unavailable .ctm-product__body { filter: grayscale(1); opacity: 1; }
.ctm-product--unavailable .ctm-product__price { color: #6d6870; }
.ctm-tabs { position: fixed; z-index: 20; left: 50%; bottom: 18px; width: min(460px, calc(100% - 24px)); max-width: calc(100% - 24px); margin: 0; padding: 8px; overflow: hidden; border: 1px solid rgba(184,94,62,.32); border-radius: 18px; background: rgba(255,250,246,.96); box-shadow: 0 14px 34px rgba(45,43,49,.18), 0 0 24px rgba(184,94,62,.08); backdrop-filter: blur(18px); transform: translateX(-50%); }
.ctm-tabs__items { display: flex; gap: 8px; max-width: 100%; padding: 0; overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; }
.ctm-tabs__items::-webkit-scrollbar { display: none; }
.ctm-tabs--count-1 { width: max-content; }
.ctm-tabs--count-1 .ctm-tab { flex-basis: auto; width: auto; min-width: 150px; }
.ctm-tabs--count-2 { width: min(330px, calc(100% - 24px)); }
.ctm-tab { display: inline-flex; flex: 0 0 calc(40% - 4px); width: calc(40% - 4px); align-items: center; justify-content: center; gap: 8px; min-width: 0; padding: 12px 14px; border: 0; border-radius: 999px; background: transparent; color: var(--ctm-muted); cursor: pointer; font: inherit; font-size: 14px; font-weight: 800; overflow: hidden; scroll-snap-align: center; text-overflow: ellipsis; white-space: nowrap; transition: .2s ease; }
.ctm-tab:hover, .ctm-tab:focus-visible { color: var(--ctm-ink); background: rgba(45,43,49,.07); outline: none; }
.ctm-tab.is-active { background: var(--ctm-accent); color: #fffaf6; }
.ctm-tab__icon { display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; width: 18px; height: 18px; font-size: 16px; line-height: 1; }
.ctm-tab__icon-image { display: block; flex: 0 0 auto; width: 18px; height: 18px; object-fit: contain; }
.ctm-empty { padding: 64px 24px; text-align: center; border: 1px dashed rgba(45,43,49,.2); border-radius: 22px; background: rgba(255,250,246,.5); }
.ctm-empty__orb { display: block; width: 44px; height: 44px; margin: 0 auto 18px; border: 1px solid var(--ctm-accent); border-radius: 50%; box-shadow: 0 0 32px rgba(184,94,62,.2); }
.ctm-empty h2 { margin: 0 0 8px; font-size: 23px; }
.ctm-empty p { margin: 0; color: var(--ctm-muted); }
@keyframes ctm-fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 680px) {
  .ctm-products { grid-template-columns: 1fr; }
  .ctm-panel__heading { align-items: start; flex-direction: column; gap: 8px; }
  .ctm-tabs { width: calc(100% - 12px); max-width: calc(100% - 12px); }
  .ctm-tab { justify-content: center; }
}
