@charset "UTF-8";
:root {
  --bg: #f8fafc;
  --card: #ffffff;
  --text: #0f172a;
  --accent: #D97706;
  --border-inactive: rgba(0, 0, 0, 0.05);
  --logo-main: #1f2937; /* Ciemny szary/antracyt */
  --logo-ai: #D97706; /* Amber brand */
}

[data-theme=dark] {
  --bg: #020617;
  --card: #1e293b;
  --text: #f8fafc;
  --accent: #FBBF24;
  --border-inactive: rgba(255, 255, 255, 0.1);
  --logo-main: #f8fafc;
  --logo-ai: #FBBF24;
}

.pm-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.pm-reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.pm-section.pm-reveal--visible .pm-item.pm-reveal:nth-child(1) {
  transition-delay: 0.04s;
}
.pm-section.pm-reveal--visible .pm-item.pm-reveal:nth-child(2) {
  transition-delay: 0.08s;
}
.pm-section.pm-reveal--visible .pm-item.pm-reveal:nth-child(3) {
  transition-delay: 0.12s;
}
.pm-section.pm-reveal--visible .pm-item.pm-reveal:nth-child(4) {
  transition-delay: 0.16s;
}
.pm-section.pm-reveal--visible .pm-item.pm-reveal:nth-child(5) {
  transition-delay: 0.2s;
}
.pm-section.pm-reveal--visible .pm-item.pm-reveal:nth-child(6) {
  transition-delay: 0.24s;
}
.pm-section.pm-reveal--visible .pm-item.pm-reveal:nth-child(7) {
  transition-delay: 0.28s;
}
.pm-section.pm-reveal--visible .pm-item.pm-reveal:nth-child(8) {
  transition-delay: 0.32s;
}
.pm-section.pm-reveal--visible .pm-item.pm-reveal:nth-child(9) {
  transition-delay: 0.36s;
}
.pm-section.pm-reveal--visible .pm-item.pm-reveal:nth-child(10) {
  transition-delay: 0.4s;
}
.pm-section.pm-reveal--visible .pm-item.pm-reveal:nth-child(11) {
  transition-delay: 0.44s;
}
.pm-section.pm-reveal--visible .pm-item.pm-reveal:nth-child(12) {
  transition-delay: 0.48s;
}
.pm-section.pm-reveal--visible .pm-item.pm-reveal:nth-child(13) {
  transition-delay: 0.52s;
}
.pm-section.pm-reveal--visible .pm-item.pm-reveal:nth-child(14) {
  transition-delay: 0.56s;
}
.pm-section.pm-reveal--visible .pm-item.pm-reveal:nth-child(15) {
  transition-delay: 0.6s;
}
.pm-section.pm-reveal--visible .pm-item.pm-reveal:nth-child(16) {
  transition-delay: 0.64s;
}
.pm-section.pm-reveal--visible .pm-item.pm-reveal:nth-child(17) {
  transition-delay: 0.68s;
}
.pm-section.pm-reveal--visible .pm-item.pm-reveal:nth-child(18) {
  transition-delay: 0.72s;
}
.pm-section.pm-reveal--visible .pm-item.pm-reveal:nth-child(19) {
  transition-delay: 0.76s;
}
.pm-section.pm-reveal--visible .pm-item.pm-reveal:nth-child(20) {
  transition-delay: 0.8s;
}

.pm-page {
  min-height: 100vh;
  background: #faf8f5;
  position: relative;
}
.pm-page::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.pm-header {
  position: relative;
  padding: 0;
}
.pm-header__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: linear-gradient(165deg, #faf8f5 0%, #fff5ed 35%, #fef3c7 70%, #faf8f5 100%);
}
.pm-header__bg::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  top: -100px;
  right: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 133, 10, 0.15) 0%, transparent 70%);
  animation: pm-blob-drift 20s ease-in-out infinite;
  pointer-events: none;
}
.pm-header__bg::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  bottom: -60px;
  left: -50px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.08) 0%, transparent 70%);
  animation: pm-blob-drift 25s ease-in-out infinite reverse;
  pointer-events: none;
}
.pm-header__inner {
  position: relative;
  z-index: 100;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 28px 32px;
}
.pm-header--has-hero {
  margin-top: -64px;
}
.pm-header--has-hero .pm-header__inner {
  padding-top: 104px;
}
.pm-header--has-hero .pm-header__bg {
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
}
.pm-header--has-hero .pm-header__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.62) 100%);
  border-radius: inherit;
  animation: none;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.pm-header--has-hero .pm-header__bg::before {
  display: none;
}
.pm-header--has-hero .pm-header__back {
  color: rgba(255, 255, 255, 0.75);
}
.pm-header--has-hero .pm-header__back:hover {
  color: #fff;
}
.pm-header--has-hero .pm-header__back svg {
  opacity: 0.7;
}
.pm-header--has-hero .pm-header__title {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.pm-header--has-hero .pm-header__type {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.pm-header--has-hero .pm-header__meta {
  color: rgba(255, 255, 255, 0.8);
}
.pm-header--has-hero .pm-header__tagline {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 500;
  margin: 6px 0 0;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}
.pm-header--has-hero .pm-header__divider {
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.25) 20%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.25) 80%, transparent 100%);
}
.pm-header--has-hero .pm-tabs__item {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
}
.pm-header--has-hero .pm-tabs__item:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.pm-header--has-hero .pm-tabs__item--active {
  background: rgba(255, 255, 255, 0.92);
  border-color: transparent;
  color: #C2710A;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}
.pm-header--has-hero .pm-translate__btn {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
}
.pm-header--has-hero .pm-translate__btn:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.pm-header__back {
  color: #6b7280;
  text-decoration: none;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 14px;
  transition: color 0.2s;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.pm-header__back svg {
  opacity: 0.6;
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.pm-header__back:hover {
  color: #C2710A;
}
.pm-header__back:hover svg {
  transform: translateX(-3px);
}
.pm-header__title {
  font-size: clamp(26px, 5vw, 36px);
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: #111827;
}
.pm-header__type {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  padding: 4px 14px;
  background: rgba(232, 133, 10, 0.1);
  border: 1px solid rgba(232, 133, 10, 0.18);
  border-radius: 100px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #C2710A;
}
.pm-header__meta {
  margin: 8px 0 0;
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
}
.pm-header__meta i {
  margin-right: 4px;
  font-size: 11px;
  opacity: 0.6;
}

.pm-translate {
  position: relative;
  display: inline-block;
  margin-top: 16px;
  z-index: 100;
}
.pm-translate__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232, 133, 10, 0.08);
  border: 1px solid rgba(232, 133, 10, 0.2);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0.03em;
  color: #C2710A;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.pm-translate__btn svg {
  opacity: 0.7;
}
.pm-translate__btn:hover {
  background: rgba(232, 133, 10, 0.15);
  border-color: rgba(232, 133, 10, 0.35);
}
.pm-translate__arrow {
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
[aria-expanded=true] .pm-translate__arrow {
  transform: rotate(180deg);
}
.pm-translate__menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 100;
  min-width: 160px;
  background: #ffffff;
  border: 1px solid #e7e5e4;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  padding: 4px 0;
  margin: 0;
  list-style: none;
}
.pm-translate__menu--open {
  display: block;
}
.pm-translate__menu li a {
  display: block;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #111827;
  text-decoration: none;
  transition: background 0.15s;
}
.pm-translate__menu li a:hover {
  background: rgba(232, 133, 10, 0.06);
  color: #C2710A;
}

.pm-header__divider {
  height: 1px;
  margin-top: 24px;
  background: linear-gradient(90deg, transparent 0%, rgba(232, 133, 10, 0.25) 20%, rgba(232, 133, 10, 0.35) 50%, rgba(232, 133, 10, 0.25) 80%, transparent 100%);
}

@keyframes pm-blob-drift {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(15px, -10px) scale(1.05);
  }
  66% {
    transform: translate(-10px, 8px) scale(0.95);
  }
}
.pm-tabs {
  display: flex;
  gap: 6px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.pm-tabs__item {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.6);
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  letter-spacing: 0.01em;
}
.pm-tabs__item:hover {
  color: #C2710A;
  border-color: rgba(232, 133, 10, 0.25);
  background: rgba(232, 133, 10, 0.06);
}
.pm-tabs__item--active {
  background: rgba(232, 133, 10, 0.1);
  color: #C2710A;
  border-color: rgba(232, 133, 10, 0.25);
  box-shadow: 0 2px 8px rgba(232, 133, 10, 0.1);
}

.pm-content {
  padding: 20px 0 32px;
  position: relative;
  z-index: 1;
}
.pm-content__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 28px;
}

.pm-section {
  margin-bottom: 44px;
}
.pm-section__header {
  margin-bottom: 18px;
  position: relative;
  padding-left: 16px;
  padding-right: 36px;
}
.pm-section__header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, #E8850A, rgba(239, 68, 68, 0.7));
}
.pm-section__toggle {
  position: absolute;
  right: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #e7e5e4;
  background: #ffffff;
  color: #9ca3af;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}
.pm-section__toggle svg {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.pm-section__toggle:hover {
  background: #fff7ed;
  border-color: rgba(232, 133, 10, 0.3);
  color: #C2710A;
}
.pm-section--collapsed .pm-section__toggle svg {
  transform: rotate(-90deg);
}
.pm-section__icon {
  font-size: 20px;
  margin-right: 6px;
  vertical-align: middle;
  line-height: 1;
}
.pm-section__title {
  font-size: 19px;
  font-weight: 700;
  color: #111827;
  margin: 0;
  display: inline;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.pm-section__desc {
  font-size: 13px;
  color: #4B5563;
  margin: 5px 0 0;
  line-height: 1.5;
  font-style: italic;
}
.pm-section--featured {
  background: linear-gradient(135deg, #fffbeb 0%, #fff 60%);
  border: 1px solid rgba(252, 211, 77, 0.5);
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}
.pm-section--featured .pm-section__header {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  padding: 18px 56px 14px 20px;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(252, 211, 77, 0.3);
}
.pm-section--featured .pm-section__header::before {
  display: none;
}
.pm-section--featured .pm-section__toggle {
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
}
.pm-section--featured.pm-section--collapsed .pm-section__toggle {
  transform: translateY(-50%) rotate(-90deg);
}
.pm-section--featured.pm-section--collapsed .pm-section__toggle svg {
  transform: none;
}
.pm-section--featured .pm-section__icon--featured {
  color: #d97706;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 1;
}
.pm-section--featured .pm-section__title {
  color: #92400e;
}
.pm-section--featured .pm-items {
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
.pm-section--featured .pm-item {
  padding-left: 4px;
  padding-right: 4px;
}

.pm-items-wrap {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.pm-items-wrap > .pm-items {
  min-height: 0;
}
.pm-items-wrap--collapsed {
  grid-template-rows: 0fr;
}

.pm-items {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid #e7e5e4;
  overflow: hidden;
}

.pm-item {
  transition: background 0.2s;
}
.pm-item:not(:last-child) {
  border-bottom: 1px solid #f5f5f4;
}
.pm-item:hover {
  background: #fdfcfb;
}
.pm-item--unavailable {
  opacity: 0.4;
  pointer-events: none;
}
.pm-item__row {
  display: flex;
  align-items: flex-start;
  padding: 14px 20px;
  gap: 14px;
}
.pm-item__thumb {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  padding: 0;
  position: relative;
  background: #f5f0ea;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.pm-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.pm-item__thumb-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
  color: #fff;
  opacity: 0;
  transition: all 0.25s;
  border-radius: inherit;
}
.pm-item__thumb-icon svg {
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.4));
}
.pm-item__thumb:hover {
  border-color: rgba(232, 133, 10, 0.4);
  box-shadow: 0 4px 16px rgba(232, 133, 10, 0.15);
}
.pm-item__thumb:hover img {
  transform: scale(1.1);
}
.pm-item__thumb:hover .pm-item__thumb-icon {
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
}
.pm-item__info {
  flex: 1;
  min-width: 0;
}
.pm-item__main {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.pm-item__name {
  font-weight: 600;
  color: #111827;
  font-size: 15px;
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.pm-item__badge {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
  line-height: 1;
}
.pm-item__badge--new {
  background: #DCFCE7;
  color: #15803D;
}
.pm-item__badge--rec {
  background: #fff7ed;
  color: #c2410c;
}
.pm-item__dots {
  flex: 1;
  border-bottom: 1px dotted #e7e5e4;
  min-width: 16px;
  margin: 0 6px;
  position: relative;
  top: -3px;
}
.pm-item__price {
  font-weight: 700;
  color: #C2710A;
  white-space: nowrap;
  font-size: 15px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.pm-item__desc {
  font-size: 13px;
  color: #4B5563;
  margin: 3px 0 0;
  line-height: 1.55;
}
.pm-item__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 7px;
}
.pm-item__footnote {
  font-size: 12px;
  color: #9ca3af;
  margin: 5px 0 0;
  font-style: italic;
  line-height: 1.4;
}
.pm-item__footnote::before {
  content: "* ";
  color: #E8850A;
  font-style: normal;
  font-weight: 600;
}

.pm-item__variants {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 6px;
  padding-left: 2px;
}
.pm-item__variants--inline {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 0;
  padding-left: 0;
  margin-left: auto;
  white-space: nowrap;
}
.pm-item__variants--inline .pm-variant:not(:last-child)::after {
  content: "·";
  color: #9ca3af;
  margin: 0 6px;
  font-weight: 700;
}

.pm-variant {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-size: 13px;
  line-height: 1.5;
}
.pm-variant__label {
  color: #4B5563;
  font-weight: 500;
}
.pm-variant__dots {
  flex: 1;
  border-bottom: 1px dotted #f5f5f4;
  min-width: 10px;
  position: relative;
  top: -2px;
}
.pm-variant__price {
  font-weight: 600;
  color: #C2710A;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.pm-label {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 100px;
  background: #faf8f5;
  color: #4B5563;
  border: 1px solid #e7e5e4;
  letter-spacing: 0.01em;
}

.pm-footnotes {
  margin-top: 36px;
  padding: 18px 22px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e7e5e4;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  position: relative;
}
.pm-footnotes::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, #E8850A, rgba(239, 68, 68, 0.7));
}
.pm-footnotes p {
  font-size: 13px;
  color: #4B5563;
  margin: 0;
  line-height: 1.6;
  padding-left: 12px;
}

.pm-powered {
  padding: 20px 28px 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.pm-powered__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #9ca3af;
  text-decoration: none;
  letter-spacing: 0.02em;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.pm-powered__link svg {
  opacity: 0.45;
  transition: all 0.25s;
}
.pm-powered__link:hover {
  color: #C2710A;
  border-color: rgba(232, 133, 10, 0.15);
  background: #fff7ed;
}
.pm-powered__link:hover svg {
  opacity: 0.8;
  color: #E8850A;
}

.pm-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
  visibility: hidden;
}
.pm-lightbox--active {
  pointer-events: auto;
  visibility: visible;
}
.pm-lightbox--active .pm-lightbox__backdrop {
  opacity: 1;
}
.pm-lightbox--active .pm-lightbox__stage {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.pm-lightbox--active .pm-lightbox__close {
  opacity: 1;
  transform: translateY(0);
}
.pm-lightbox--active .pm-lightbox__nav {
  opacity: 1;
}
.pm-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.pm-lightbox__close {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(249, 115, 22, 0.5);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.1s;
}
.pm-lightbox__close:hover {
  background: rgba(249, 115, 22, 0.75);
  transform: translateY(0);
}
.pm-lightbox__close:active {
  transform: scale(0.92);
}
.pm-lightbox__stage {
  position: relative;
  z-index: 5;
  max-width: 760px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: scale(0.94) translateY(16px);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.pm-lightbox__stage img {
  max-width: 100%;
  max-height: calc(88vh - 48px);
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  object-fit: contain;
}
.pm-lightbox__caption {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 500;
  margin-top: 16px;
  text-align: center;
  letter-spacing: 0.02em;
}
.pm-lightbox .lightbox-dots {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  justify-content: center;
}
.pm-lightbox .lightbox-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.pm-lightbox .lightbox-dots .dot.active {
  background: #fff;
  transform: scale(1.35);
}
.pm-lightbox .lightbox-dots .dot:hover {
  background: rgba(255, 255, 255, 0.7);
}
.pm-lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(249, 115, 22, 0.5);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  transition: background 0.2s, opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.pm-lightbox__nav[hidden] {
  display: none;
}
.pm-lightbox__nav:hover {
  background: rgba(249, 115, 22, 0.75);
  transform: translateY(-50%) scale(1.08);
}
.pm-lightbox__nav:active {
  transform: translateY(-50%) scale(0.92);
}
.pm-lightbox__nav--prev {
  left: 16px;
}
.pm-lightbox__nav--next {
  right: 16px;
}
@media (max-width: 576px) {
  .pm-lightbox__nav {
    width: 40px;
    height: 40px;
  }
  .pm-lightbox__nav svg {
    width: 20px;
    height: 20px;
  }
  .pm-lightbox__nav--prev {
    left: 8px;
  }
  .pm-lightbox__nav--next {
    right: 8px;
  }
}

.pm-item__thumb--preview {
  cursor: default;
  pointer-events: none;
}
.pm-item__thumb--preview:hover {
  transform: none;
  box-shadow: none;
}

@media (max-width: 640px) {
  .pm-header__inner {
    padding: 30px 20px 24px;
  }
  .pm-header__title {
    font-size: 24px;
  }
  .pm-content {
    padding: 16px 0 20px;
  }
  .pm-content__inner {
    padding: 0 16px;
  }
  .pm-section {
    margin-bottom: 32px;
  }
  .pm-section__header {
    padding-left: 12px;
  }
  .pm-section__title {
    font-size: 17px;
  }
  .pm-item__row {
    padding: 12px 14px;
    gap: 10px;
  }
  .pm-item__thumb {
    width: 48px;
    height: 48px;
  }
  .pm-item__name {
    font-size: 14px;
  }
  .pm-item__price {
    font-size: 14px;
  }
  .pm-item__desc {
    font-size: 12px;
  }
  .pm-item:hover {
    background: transparent;
  }
  .pm-tabs {
    gap: 4px;
  }
  .pm-tabs__item {
    padding: 6px 14px;
    font-size: 12px;
  }
  .pm-lightbox {
    padding: 12px;
  }
  .pm-lightbox__stage img {
    border-radius: 10px;
  }
  .pm-powered {
    padding: 16px 16px 24px;
  }
}
@media (max-width: 400px) {
  .pm-item__thumb {
    width: 42px;
    height: 42px;
  }
  .pm-item__row {
    gap: 8px;
  }
  .pm-item__badge {
    font-size: 9px;
    padding: 1px 6px;
  }
}
.pm-gallery {
  padding: 20px 0 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pm-gallery__arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.pm-gallery__arrow:hover {
  background: #E8850A;
  color: #fff;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
}
.pm-gallery__arrow:active {
  transform: scale(0.92);
}
.pm-gallery__arrow[hidden] {
  display: none;
}
.pm-gallery__strip {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 0 12px;
  scrollbar-width: none;
}
.pm-gallery__strip::-webkit-scrollbar {
  display: none;
}
.pm-gallery__item {
  flex-shrink: 0;
  scroll-snap-align: start;
  width: 210px;
  height: 155px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  border: none;
  padding: 0;
  position: relative;
  background: #f5f0ea;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.25s cubic-bezier(0.22, 1, 0.36, 1), transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.pm-gallery__item:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}
.pm-gallery__item:active {
  transform: translateY(0) scale(0.98);
}
.pm-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.pm-gallery__item:hover img {
  transform: scale(1.05);
}
.pm-gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.15), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.pm-gallery__item:hover::after {
  opacity: 1;
}
.pm-gallery {
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 640px) {
  .pm-gallery__item {
    width: 230px;
    height: 170px;
  }
  .pm-gallery__arrow {
    width: 40px;
    height: 40px;
  }
}
@media (min-width: 1024px) {
  .pm-gallery__strip {
    gap: 12px;
  }
  .pm-gallery__item {
    width: 250px;
    height: 185px;
  }
}

.pm-search {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #faf8f5;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pm-search--scrolled {
  border-bottom-color: #e7e5e4;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.pm-search__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 10px 28px 0;
}
.pm-search__bar {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1.5px solid #e7e5e4;
  border-radius: 12px;
  padding: 0 12px;
  gap: 8px;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.pm-search__bar:focus-within {
  border-color: #E8850A;
  box-shadow: 0 0 0 3px rgba(232, 133, 10, 0.12);
}
.pm-search__icon {
  flex-shrink: 0;
  color: #9ca3af;
  transition: color 0.18s;
}
.pm-search__bar:focus-within .pm-search__icon {
  color: #E8850A;
}
.pm-search__input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  color: #111827;
  padding: 11px 0;
  min-width: 0;
  font-family: inherit;
}
.pm-search__input::placeholder {
  color: #9ca3af;
}
.pm-search__input::-webkit-search-cancel-button {
  display: none;
}
.pm-search__clear {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: none;
  background: #f5f0ea;
  border-radius: 50%;
  color: #4B5563;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  padding: 0;
}
.pm-search__clear:hover {
  background: #E8850A;
  color: #fff;
}
.pm-search__clear[hidden] {
  display: none;
}
.pm-search__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 0 6px;
}
.pm-search__chips:empty {
  padding: 0;
}
.pm-search__chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1.5px solid #e7e5e4;
  background: #ffffff;
  color: #4B5563;
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  white-space: nowrap;
  font-family: inherit;
  line-height: 1;
}
.pm-search__chip:hover {
  border-color: #E8850A;
  color: #E8850A;
  background: #fff7ed;
}
.pm-search__chip--active {
  border-color: #E8850A;
  background: #E8850A;
  color: #fff;
}
.pm-search__chip--active:hover {
  background: #C2710A;
  border-color: #C2710A;
  color: #fff;
}
.pm-search__status {
  font-size: 12.5px;
  color: #9ca3af;
  padding-bottom: 4px;
}
.pm-search__status:empty {
  display: none;
}
@media (max-width: 639px) {
  .pm-search__inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.pm-search-hl {
  background: rgba(232, 133, 10, 0.18);
  color: #C2710A;
  border-radius: 2px;
  font-weight: 600;
}

.pm-section__no-match {
  font-size: 13px;
  color: #9ca3af;
  padding: 10px 0 6px;
  display: none;
}
.pm-section--search-no-match .pm-section__no-match {
  display: block;
}

.pm-search-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 56px 20px;
  color: #9ca3af;
  text-align: center;
}
.pm-search-empty[hidden] {
  display: none;
}
.pm-search-empty svg {
  opacity: 0.4;
}
.pm-search-empty__title {
  font-size: 16px;
  font-weight: 600;
  color: #4B5563;
  margin: 0;
}
.pm-search-empty__hint {
  font-size: 13.5px;
  margin: 0;
}

.pm-ol-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  border: 1px solid #f5f5f4;
  background: transparent;
  color: #e7e5e4;
  cursor: pointer;
  padding: 0;
  margin-left: 8px;
  transition: background 150ms, border-color 150ms, color 150ms, transform 100ms;
}
.pm-ol-add svg {
  pointer-events: none;
}
.pm-ol-add:hover {
  background: #E8850A;
  border-color: #E8850A;
  color: #fff;
  transform: scale(1.08);
}
.pm-ol-add:active {
  transform: scale(0.9);
}
.pm-ol-add--added {
  background: #E8850A !important;
  border-color: #E8850A !important;
  color: #fff !important;
  animation: pm-ol-add-flash 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.pm-ol-add--sm {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-left: 4px;
}

@keyframes pm-ol-add-flash {
  0% {
    transform: scale(1.2);
  }
  60% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
.pm-ol-fab {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 1030;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #E8850A;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(232, 133, 10, 0.4), 0 2px 8px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: scale(0.6) translateY(8px);
  pointer-events: none;
  transition: opacity 250ms cubic-bezier(0.22, 1, 0.36, 1), transform 250ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 200ms, background 150ms;
}
.pm-ol-fab--visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}
.pm-ol-fab:hover {
  background: #C2710A;
  box-shadow: 0 6px 28px rgba(232, 133, 10, 0.5), 0 3px 12px rgba(0, 0, 0, 0.18);
}
.pm-ol-fab:active {
  transform: scale(0.93) translateY(0);
}
.pm-ol-fab--pulse {
  animation: pm-ol-fab-pulse 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.pm-ol-fab--session-participant {
  background: #22c55e;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.45), 0 2px 8px rgba(0, 0, 0, 0.15);
}
.pm-ol-fab--session-participant:hover {
  background: #16a34a;
  box-shadow: 0 6px 28px rgba(34, 197, 94, 0.5), 0 3px 12px rgba(0, 0, 0, 0.18);
}
.pm-ol-fab--session-owner {
  background: #3b82f6;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.45), 0 2px 8px rgba(0, 0, 0, 0.15);
}
.pm-ol-fab--session-owner:hover {
  background: #2563eb;
  box-shadow: 0 6px 28px rgba(59, 130, 246, 0.5), 0 3px 12px rgba(0, 0, 0, 0.18);
}
.pm-ol-fab--session-done {
  background: #64748b;
  box-shadow: 0 4px 16px rgba(100, 116, 139, 0.3), 0 2px 8px rgba(0, 0, 0, 0.1);
  opacity: 0.75;
}
.pm-ol-fab--session-done:hover {
  background: #64748b;
  opacity: 0.85;
}
.pm-ol-fab__badge {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 20px;
  height: 20px;
  padding: 0 4px;
  border-radius: 10px;
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #faf8f5;
  font-variant-numeric: tabular-nums;
}

@keyframes pm-ol-fab-pulse {
  0% {
    transform: scale(1) translateY(0);
  }
  35% {
    transform: scale(1.22) translateY(0);
  }
  70% {
    transform: scale(0.96) translateY(0);
  }
  100% {
    transform: scale(1) translateY(0);
  }
}
.pm-ol-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1040;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms;
}
.pm-ol-backdrop--visible {
  opacity: 1;
  pointer-events: auto;
}

.pm-ol-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: #ffffff;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.13);
  max-height: 75dvh;
  display: flex;
  flex-direction: column;
  transform: translateY(105%);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}
.pm-ol-panel--open {
  transform: translateY(0);
}
@media (min-width: 600px) {
  .pm-ol-panel {
    left: auto;
    right: 20px;
    bottom: 90px;
    width: 340px;
    border-radius: 16px;
    max-height: 60dvh;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.16);
    transform: scale(0.95) translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 250ms cubic-bezier(0.22, 1, 0.36, 1), opacity 250ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .pm-ol-panel--open {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}
.pm-ol-panel__handle {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: #e7e5e4;
  margin: 12px auto 0;
  flex-shrink: 0;
}
@media (min-width: 600px) {
  .pm-ol-panel__handle {
    display: none;
  }
}
.pm-ol-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px 12px;
  border-bottom: 1px solid #f5f5f4;
  flex-shrink: 0;
}
.pm-ol-panel__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pm-ol-panel__title svg {
  color: #E8850A;
  flex-shrink: 0;
}
.pm-ol-panel__close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: #f5f0ea;
  color: #4B5563;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 140ms, color 140ms;
}
.pm-ol-panel__close:hover {
  background: #e7e5e4;
  color: #111827;
}
.pm-ol-panel__info {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 18px;
  font-size: 0.72rem;
  color: #9ca3af;
  background: #f5f0ea;
  border-bottom: 1px solid #f5f5f4;
  flex-shrink: 0;
}
.pm-ol-panel__info svg {
  color: #E8850A;
  flex-shrink: 0;
  opacity: 0.7;
}
.pm-ol-panel__body {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 4px 0 8px;
}
.pm-ol-panel__foot {
  border-top: 1px solid #f5f5f4;
  padding: 12px 18px 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.pm-ol-empty {
  padding: 28px 20px;
  text-align: center;
  color: #9ca3af;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.pm-ol-empty svg {
  opacity: 0.35;
}
.pm-ol-empty__title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #4B5563;
  margin: 0;
}
.pm-ol-empty__hint {
  font-size: 0.8rem;
  line-height: 1.45;
  max-width: 200px;
  margin: 0;
}

.pm-ol-menu-header {
  list-style: none;
  font-size: 0.75rem;
  font-weight: 700;
  color: #111827;
  padding: 12px 10px 5px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pm-ol-menu-header::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 13px;
  border-radius: 2px;
  background: #E8850A;
  flex-shrink: 0;
}
.pm-ol-menu-header--sep {
  border-top: 1px solid #e7e5e4;
  margin-top: 8px;
}

.pm-ol-section-header {
  list-style: none;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9ca3af;
  padding: 12px 10px 4px;
}
.pm-ol-section-header:not(:first-child) {
  border-top: 1px solid #f5f5f4;
  margin-top: 6px;
}

.pm-ol-list {
  list-style: none;
  margin: 0;
  padding: 6px 12px;
}

.pm-ol-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 10px;
  transition: background 120ms;
}
.pm-ol-item:hover {
  background: #faf8f5;
}
.pm-ol-item + .pm-ol-item {
  border-top: 1px solid #f5f5f4;
  border-radius: 0 0 10px 10px;
}
.pm-ol-item + .pm-ol-item:hover {
  border-radius: 10px;
}
.pm-ol-item__info {
  flex: 1;
  min-width: 0;
}
.pm-ol-item__name {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
  word-break: break-word;
}
.pm-ol-item__pricing {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 3px;
}
.pm-ol-item__sub {
  font-size: 0.88rem;
  font-weight: 700;
  color: #E8850A;
  font-variant-numeric: tabular-nums;
}
.pm-ol-item__unit {
  font-size: 0.72rem;
  color: #9ca3af;
  font-variant-numeric: tabular-nums;
}

.pm-ol-item__pill {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  background: #f5f0ea;
  border-radius: 20px;
  border: 1px solid #e7e5e4;
  overflow: hidden;
}

.pm-ol-pill-btn {
  width: 30px;
  height: 30px;
  border: none;
  background: transparent;
  color: #4B5563;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 120ms, color 120ms;
  flex-shrink: 0;
}
.pm-ol-pill-btn:hover {
  background: #E8850A;
  color: #fff;
}
.pm-ol-pill-btn:active {
  transform: scale(0.88);
}

.pm-ol-pill-val {
  min-width: 24px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #111827;
  font-variant-numeric: tabular-nums;
  padding: 0 2px;
  border-left: 1px solid #e7e5e4;
  border-right: 1px solid #e7e5e4;
  line-height: 30px;
}

.pm-ol-total {
  font-size: 0.82rem;
  color: #4B5563;
  flex: 1;
  min-width: 0;
}
.pm-ol-total strong {
  color: #111827;
  font-weight: 800;
  font-size: 1.05rem;
  font-variant-numeric: tabular-nums;
}

.pm-ol-total-note {
  display: block;
  font-size: 0.7rem;
  color: #9ca3af;
  margin-top: 2px;
  line-height: 1.3;
}

.pm-ol-clear-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.76rem;
  font-family: inherit;
  color: #9ca3af;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px 8px;
  border-radius: 8px;
  transition: color 140ms, background 140ms;
  flex-shrink: 0;
}
.pm-ol-clear-btn:hover {
  color: #ef4444;
  background: #fff1f2;
}

.pm-ol-panel .pm-ol-panel__foot {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 18px 20px;
}

.pm-ol-panel__foot-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
}

.pm-ol-collab-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.pm-ol-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid #e7e5e4;
  color: #4B5563;
  cursor: pointer;
  transition: background 140ms, border-color 140ms, color 140ms;
  position: relative;
}
.pm-ol-share-btn:hover {
  background: #f5f0ea;
  border-color: #9ca3af;
  color: #111827;
}
.pm-ol-share-btn:active {
  transform: scale(0.94);
}
.pm-ol-share-btn:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
.pm-ol-share-btn--loading {
  pointer-events: none;
}
.pm-ol-share-btn--loading > svg {
  opacity: 0;
}
.pm-ol-share-btn--loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  border: 1.5px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: pm-ol-share-spin 600ms linear infinite;
}

@keyframes pm-ol-share-spin {
  to {
    transform: rotate(360deg);
  }
}
.pm-ol-group-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 36px;
  padding: 0 10px;
  border-radius: 20px;
  background: rgba(232, 133, 10, 0.07);
  border: 1.5px solid rgba(232, 133, 10, 0.25);
  color: #E8850A;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 140ms, border-color 140ms;
}
.pm-ol-group-btn:hover {
  background: rgba(232, 133, 10, 0.14);
  border-color: rgba(232, 133, 10, 0.4);
}
.pm-ol-group-btn:active {
  transform: scale(0.96);
}
.pm-ol-group-btn[hidden] {
  display: none;
}

.pm-ol-session-info {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(232, 133, 10, 0.07);
  border: 1px solid rgba(232, 133, 10, 0.2);
  border-radius: 20px;
  padding: 2px 8px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #E8850A;
  margin-left: auto;
  margin-right: 8px;
  line-height: 1;
  white-space: nowrap;
}
.pm-ol-session-info svg {
  opacity: 0.75;
  flex-shrink: 0;
}
.pm-ol-session-info[hidden] {
  display: none;
}

.mos-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
}
.mos-backdrop--visible {
  display: block;
}

body.mos-no-scroll {
  overflow: hidden;
}

.mos-nickname-screen {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.mos-nickname-screen[hidden] {
  display: none;
}
.mos-nickname-screen__card {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 28px 28px;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
}
.mos-nickname-screen__dismiss {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4B5563;
  cursor: pointer;
  transition: background 150ms, color 150ms;
}
.mos-nickname-screen__dismiss:hover {
  background: #f5f0ea;
  color: #111827;
}
.mos-nickname-screen__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(232, 133, 10, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E8850A;
  margin-bottom: 4px;
}
.mos-nickname-screen__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111827;
  text-align: center;
  margin: 0;
}
.mos-nickname-screen__desc {
  font-size: 0.88rem;
  color: #4B5563;
  text-align: center;
  margin: 0;
  line-height: 1.5;
}
.mos-nickname-screen__input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e7e5e4;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #111827;
  background: #f5f0ea;
  outline: none;
  transition: border-color 150ms;
}
.mos-nickname-screen__input:focus {
  border-color: #E8850A;
  background: #ffffff;
}
.mos-nickname-screen__error {
  font-size: 0.8rem;
  color: #ef4444;
  margin: -4px 0 0;
  align-self: flex-start;
}
.mos-nickname-screen__error[hidden] {
  display: none;
}
.mos-nickname-screen__btn {
  width: 100%;
  padding: 13px;
  background: #E8850A;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 150ms;
  margin-top: 4px;
}
.mos-nickname-screen__btn:hover {
  opacity: 0.88;
}
.mos-nickname-screen__btn:disabled {
  opacity: 0.5;
  cursor: default;
}

.mos-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1150;
  background: #ffffff;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.15);
  max-height: 78dvh;
  display: flex;
  flex-direction: column;
  animation: mosSlideUp 280ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
@media (min-width: 600px) {
  .mos-panel {
    left: auto;
    right: 24px;
    bottom: 24px;
    width: 380px;
    border-radius: 18px;
    max-height: 65dvh;
    animation: mosFadeIn 220ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }
}
.mos-panel[hidden] {
  display: none;
}
.mos-panel__handle {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: #e7e5e4;
  margin: 12px auto 0;
  flex-shrink: 0;
}
@media (min-width: 600px) {
  .mos-panel__handle {
    display: none;
  }
}
.mos-panel__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px 12px;
  border-bottom: 1px solid #f5f5f4;
  flex-shrink: 0;
}
.mos-panel__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.mos-panel__title svg {
  color: #E8850A;
  flex-shrink: 0;
}
.mos-panel__nickname {
  font-size: 0.8rem;
  color: #9ca3af;
  font-weight: 600;
  background: #f5f0ea;
  padding: 3px 9px;
  border-radius: 20px;
  white-space: nowrap;
}
.mos-panel__participants {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: #9ca3af;
  font-weight: 600;
  white-space: nowrap;
}
.mos-panel__close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: #f5f0ea;
  color: #4B5563;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 140ms;
}
.mos-panel__close:hover {
  background: #e7e5e4;
}
.mos-panel__info {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  padding: 8px 14px 9px;
  font-size: 0.78rem;
  color: #4B5563;
  background: rgba(232, 133, 10, 0.05);
  border-bottom: 1px solid #f5f5f4;
  flex-shrink: 0;
  line-height: 1.45;
}
.mos-panel__info svg {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.65;
}
.mos-panel__info strong {
  color: #111827;
}
.mos-panel__info[hidden] {
  display: none;
}
.mos-panel__body {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
  -webkit-overflow-scrolling: touch;
}
.mos-panel__foot {
  padding: 12px 16px 16px;
  border-top: 1px solid #f5f5f4;
  flex-shrink: 0;
}

@keyframes mosSlideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mosFadeIn {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.mos-owner-my-section {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f5f5f4;
}

.mos-owner-my-label,
.mos-owner-participants-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9ca3af;
  margin-bottom: 8px;
}
.mos-owner-my-label svg,
.mos-owner-participants-label svg {
  flex-shrink: 0;
  color: #E8850A;
}

.mos-owner-participants-label {
  margin-bottom: 8px;
  margin-top: 0;
}

.mos-owner-my-items[hidden] {
  display: none;
}

.pm-ol-add--locked {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.mos-owner-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
}

.mos-invite-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: inherit;
  color: #E8850A;
  background: rgba(232, 133, 10, 0.08);
  border: 1px solid rgba(232, 133, 10, 0.18);
  border-radius: 20px;
  padding: 6px 12px;
  cursor: pointer;
  transition: background 140ms, color 140ms;
}
.mos-invite-btn:hover {
  background: #E8850A;
  color: #fff;
}

.mos-close-session-btn {
  font-size: 0.78rem;
  font-family: inherit;
  font-weight: 500;
  color: #9ca3af;
  background: none;
  border: 1px solid #e7e5e4;
  border-radius: 20px;
  padding: 5px 12px;
  cursor: pointer;
  transition: color 140ms, border-color 140ms;
}
.mos-close-session-btn:hover {
  color: #ef4444;
  border-color: #ef4444;
}

.mos-owner-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mos-participant {
  background: #f5f0ea;
  border-radius: 12px;
  padding: 12px 14px;
  border: 1.5px solid #f5f5f4;
  transition: border-color 200ms;
}
.mos-participant--ready {
  border-color: #22c55e;
}
.mos-participant__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.mos-participant__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #111827;
  flex: 1;
}
.mos-participant__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mos-participant__item {
  font-size: 0.83rem;
  color: #4B5563;
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.mos-participant-list .mos-participant__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mos-participant-list .mos-participant__item {
  font-size: 0.88rem;
  color: #4B5563;
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 7px 10px;
  background: #f5f0ea;
  border-radius: 8px;
}
.mos-participant-list .mos-participant__items--editable {
  gap: 8px;
}
.mos-participant-list .mos-participant__item--editable {
  align-items: center;
  padding: 8px 10px;
  gap: 0;
}

.mos-item-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.mos-item-info .mos-item-name {
  font-size: 0.87rem;
  color: #111827;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mos-item-info .mos-item-price {
  font-size: 0.78rem;
  color: #9ca3af;
  margin-left: 0;
}

.mos-item-qty-badge {
  font-size: 0.78rem;
  font-weight: 700;
  color: #E8850A;
  flex-shrink: 0;
  margin-left: 8px;
}

.mos-item-pill {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid #e7e5e4;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  margin-left: 10px;
}

.mos-pill-btn {
  width: 30px;
  height: 28px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4B5563;
  transition: background 120ms, color 120ms;
}
.mos-pill-btn:hover {
  background: #f5f0ea;
  color: #111827;
}
.mos-pill-btn:active {
  background: #e7e5e4;
}
.mos-pill-btn:first-child {
  border-right: 1px solid #f5f5f4;
}
.mos-pill-btn:last-child {
  border-left: 1px solid #f5f5f4;
}

.mos-pill-val {
  min-width: 26px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #111827;
  text-align: center;
  font-variant-numeric: tabular-nums;
  line-height: 28px;
}

.mos-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.01em;
}
.mos-badge--ready {
  background: #dcfce7;
  color: #15803d;
}
.mos-badge--choosing {
  background: #fef3c7;
  color: #b45309;
}

.mos-item-qty {
  font-weight: 700;
  color: #E8850A;
  flex-shrink: 0;
}

.mos-item-name {
  flex: 1;
}

.mos-item-price {
  font-size: 0.78rem;
  color: #9ca3af;
  margin-left: auto;
  flex-shrink: 0;
}

.mos-empty-hint {
  font-size: 0.85rem;
  color: #9ca3af;
  text-align: center;
  padding: 18px 10px;
  margin: 0;
}
.mos-empty-hint--sm {
  font-size: 0.78rem;
  padding: 6px 0 0;
  text-align: left;
}

.mos-confirm-btn {
  width: 100%;
  padding: 13px;
  background: #22c55e;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: opacity 150ms;
}
.mos-confirm-btn:hover {
  opacity: 0.88;
}
.mos-confirm-btn[hidden] {
  display: none;
}

.mos-confirmed-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  font-size: 0.88rem;
  font-weight: 700;
  color: #15803d;
  background: #dcfce7;
  border-radius: 12px;
  padding: 12px 16px;
  margin: 0;
  white-space: nowrap;
}
.mos-confirmed-info svg {
  flex-shrink: 0;
  color: #16a34a;
}
.mos-confirmed-info[hidden] {
  display: none;
}

.mos-share-sheet {
  position: fixed;
  inset: 0;
  z-index: 1250;
}
.mos-share-sheet[hidden] {
  display: none;
}
.mos-share-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
}
.mos-share-sheet__card {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 20px 20px 0 0;
  padding: 20px 16px 28px;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.18);
  animation: mosSlideUp 260ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
@media (min-width: 500px) {
  .mos-share-sheet__card {
    left: 50%;
    right: auto;
    bottom: 24px;
    transform: translateX(-50%);
    width: 360px;
    border-radius: 18px;
    animation: mosFadeIn 220ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }
}
.mos-share-sheet__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
  text-align: center;
  margin: 0 0 18px;
}
.mos-share-sheet__options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.mos-share-sheet__cancel {
  display: block;
  width: 100%;
  padding: 12px;
  background: #f5f0ea;
  border: 1.5px solid #e7e5e4;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  color: #4B5563;
  cursor: pointer;
  transition: background 140ms;
}
.mos-share-sheet__cancel:hover {
  background: #e7e5e4;
}

.mos-share-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 8px 10px;
  border-radius: 14px;
  background: #f5f0ea;
  border: 1.5px solid #f5f5f4;
  font-size: 0.72rem;
  font-weight: 600;
  color: #4B5563;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  transition: background 140ms, border-color 140ms, color 140ms;
  text-align: center;
  line-height: 1.3;
}
.mos-share-option:hover {
  background: #f5f5f4;
  color: #111827;
  border-color: #e7e5e4;
}
.mos-share-option:active {
  transform: scale(0.95);
}
.mos-share-option__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mos-share-option--whatsapp .mos-share-option__icon {
  background: #25d366;
  color: #fff;
}
.mos-share-option--sms .mos-share-option__icon {
  background: #3b82f6;
  color: #fff;
}
.mos-share-option--telegram .mos-share-option__icon {
  background: #229ed9;
  color: #fff;
}
.mos-share-option--copy .mos-share-option__icon {
  background: #faf8f5;
  border: 1.5px solid #e7e5e4;
  color: #4B5563;
}

.mos-others-section {
  margin-top: 16px;
  border-top: 1px solid #f5f5f4;
  padding-top: 12px;
}
.mos-others-section[hidden] {
  display: none;
}

.mos-others-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
  width: 100%;
  background: none;
  border: none;
  padding: 6px 2px;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: inherit;
  color: #4B5563;
  cursor: pointer;
  text-align: left;
}
.mos-others-toggle svg:first-child {
  color: #E8850A;
  flex-shrink: 0;
}
.mos-others-toggle__arrow {
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
  color: #9ca3af;
}
.mos-others-toggle--open .mos-others-toggle__arrow {
  transform: rotate(180deg);
}
.mos-others-toggle:hover {
  color: #111827;
}

.mos-others-list {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mos-others-list[hidden] {
  display: none;
}

.mos-panel--mode-owner {
  border-top: 3px solid #3b82f6;
}

.mos-panel--mode-participant {
  border-top: 3px solid #22c55e;
}

.mos-panel__count {
  font-size: 0.8rem;
  font-weight: 700;
  color: #E8850A;
  background: rgba(232, 133, 10, 0.08);
  border: 1px solid rgba(232, 133, 10, 0.18);
  border-radius: 20px;
  padding: 2px 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.mos-section-hdr {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 4px 16px 5px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9ca3af;
}
.mos-section-hdr svg {
  opacity: 0.55;
  flex-shrink: 0;
}
.mos-section-hdr--first {
  padding-top: 14px;
}

.mos-section-empty {
  padding: 10px 18px 12px;
  font-size: 0.82rem;
  color: #9ca3af;
  line-height: 1.5;
}
.mos-section-empty small {
  font-size: 0.75rem;
  opacity: 0.75;
  display: block;
  margin-top: 2px;
}

.mos-owner-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
}

.mos-invite-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 36px;
  background: rgba(232, 133, 10, 0.06);
  border: 1.5px solid rgba(232, 133, 10, 0.2);
  border-radius: 12px;
  color: #E8850A;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 140ms, border-color 140ms;
}
.mos-invite-btn:hover {
  background: rgba(232, 133, 10, 0.13);
  border-color: rgba(232, 133, 10, 0.35);
}
.mos-invite-btn:active {
  transform: scale(0.97);
}
.mos-invite-btn svg {
  flex-shrink: 0;
}

.mos-p-card {
  margin: 0 12px 8px;
  border: 1px solid #e7e5e4;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}
.mos-p-card:last-child {
  margin-bottom: 14px;
}
.mos-p-card--ready {
  border-color: rgba(21, 128, 61, 0.35);
  background: rgba(21, 128, 61, 0.02);
}
.mos-p-card__head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #f5f0ea;
  border-bottom: 1px solid #f5f5f4;
}
.mos-p-card__name {
  font-size: 0.83rem;
  font-weight: 700;
  color: #111827;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mos-p-card__items {
  list-style: none;
  margin: 0;
  padding: 2px 0;
}
.mos-p-card__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 7px 10px 7px 12px;
}
.mos-p-card__item + .mos-p-card__item {
  border-top: 1px solid #f5f5f4;
}
.mos-p-card__item-qty {
  font-size: 0.78rem;
  font-weight: 700;
  color: #E8850A;
  flex-shrink: 0;
  min-width: 22px;
  font-variant-numeric: tabular-nums;
  padding-top: 1px;
}
.mos-p-card__item-name {
  flex: 1;
  font-size: 0.83rem;
  color: #111827;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.mos-p-card__item-section {
  display: block;
  font-size: 0.72rem;
  color: #9ca3af;
  font-weight: 400;
}
.mos-p-card__item-price {
  font-size: 0.78rem;
  font-weight: 600;
  color: #4B5563;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
  align-self: center;
}
.mos-p-card__item-del {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  border: none;
  background: transparent;
  color: #9ca3af;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: center;
  transition: background 120ms, color 120ms;
}
.mos-p-card__item-del:hover {
  background: #fff1f2;
  color: #ef4444;
}
.mos-p-card__item-del:active {
  transform: scale(0.88);
}
.mos-p-card__empty {
  padding: 9px 12px;
  font-size: 0.78rem;
  color: #9ca3af;
  font-style: italic;
}

.mos-group-start-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 14px;
  border-radius: 20px;
  background: #E8850A;
  border: none;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 140ms;
  box-shadow: 0 2px 8px rgba(232, 133, 10, 0.35);
}
.mos-group-start-btn:hover {
  opacity: 0.88;
}
.mos-group-start-btn:active {
  transform: scale(0.96);
}
.mos-group-start-btn svg {
  flex-shrink: 0;
}

.mos-foot-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.mos-toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1300;
  background: #1a1a2e;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  max-width: min(90vw, 380px);
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mos-toast[hidden] {
  display: none;
}

/*# sourceMappingURL=menu-public.output.css.map */
