.pxc-shell {
  --pxc-bg: #eceef0;
  --pxc-card: #ffffff;
  --pxc-section: #f2f4f6;
  --pxc-border: #d5dbe2;
  --pxc-text: var(--e-global-color-text, #1f2329);
  --pxc-muted: var(--e-global-color-secondary, #707882);
  --pxc-accent: var(--e-global-color-primary, var(--e-global-color-accent, #a5e244));
  --pxc-primary: var(--e-global-color-primary, #a5e244);
  --pxc-icon-neutral: var(--pxc-accent);
  --pxc-font-text: var(--e-global-typography-text-font-family, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif);
  --pxc-font-heading: var(--e-global-typography-primary-font-family, var(--pxc-font-text));
  color: var(--pxc-text);
  font-family: var(--pxc-font-text);
  font-weight: var(--e-global-typography-text-font-weight, 400);
}

.pxc-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(0, 0.85fr);
  gap: 22px;
  align-items: start;
}

.pxc-card {
  background: var(--pxc-card);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(20, 25, 31, 0.08);
}

.pxc-form-card {
  padding: 22px;
}

.pxc-head h2 {
  margin: 0;
  padding: 0 0 20px 0;
  font-size: clamp(34px, 4.5vw, 50px);
  line-height: 1;
  font-weight: var(--e-global-typography-primary-font-weight, 900);
  letter-spacing: -0.01em;
  font-family: var(--pxc-font-heading);
}

.pxc-form {
  display: grid;
  gap: 14px;
}

.pxc-section {
  background: var(--pxc-section);
  border: 1px solid var(--pxc-border);
  border-radius: 18px;
  padding: 14px;
}

.pxc-section h3 {
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 32px;
  line-height: 1;
  font-weight: var(--e-global-typography-primary-font-weight, 900);
  letter-spacing: -0.01em;
  font-family: var(--pxc-font-heading);
}

.pxc-section-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background-color: var(--pxc-accent);
  -webkit-mask: var(--pxc-section-mask) center / contain no-repeat;
  mask: var(--pxc-section-mask) center / contain no-repeat;
}

.pxc-section-company {
  --pxc-section-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 21h18M5 21V7l7-4 7 4v14M9 21v-6h6v6M8 11h.01M12 11h.01M16 11h.01' stroke='%23000' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.pxc-section-event {
  --pxc-section-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2M21 21v-2a4 4 0 0 0-3-3.87M9 11a4 4 0 1 0 0-8 4 4 0 0 0 0 8M16 3.13a4 4 0 0 1 0 7.75' stroke='%23000' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.pxc-section-catering {
  --pxc-section-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m4 4 16 16M20 4 4 20M9 3h1v7a2 2 0 1 1-4 0V3h1M14 3l4 4M17 7l-5 5' stroke='%23000' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.pxc-fields-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
}

.pxc-field {
  display: grid;
  gap: 6px;
}

.pxc-field > span {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 800;
  color: #3b424a;
  letter-spacing: 0.02em;
}

.pxc-field input,
.pxc-field select {
  width: 100%;
  min-height: 50px;
  border: 1px solid #ccd3dc;
  border-radius: 10px;
  background: #f7f8fa;
  color: var(--pxc-text);
  font-size: 16px;
  padding: 0 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pxc-field input:focus,
.pxc-field select:focus {
  border-color: var(--pxc-accent);
  box-shadow: 0 0 0 3px rgba(165, 226, 68, 0.2);
}

.pxc-field-icon {
  position: relative;
}

.pxc-field-icon input,
.pxc-field-icon select {
  padding-left: 44px;
}

.pxc-field-icon::after {
  content: '';
  position: absolute;
  left: 14px;
  bottom: 16px;
  width: 18px;
  height: 18px;
  background-color: var(--pxc-icon-neutral);
  -webkit-mask: var(--pxc-field-mask) center / contain no-repeat;
  mask: var(--pxc-field-mask) center / contain no-repeat;
  pointer-events: none;
}

.pxc-icon-company {
  --pxc-field-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 21h18M5 21V7l7-4 7 4v14M9 21v-6h6v6M8 11h.01M12 11h.01M16 11h.01' stroke='%23000' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.pxc-icon-user {
  --pxc-field-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 21a8 8 0 0 0-16 0M12 11a4 4 0 1 0 0-8 4 4 0 0 0 0 8' stroke='%23000' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.pxc-icon-mail {
  --pxc-field-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 5h16v14H4zM4 7l8 6 8-6' stroke='%23000' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.pxc-icon-phone {
  --pxc-field-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M22 16.92v2a2 2 0 0 1-2.18 2A19.86 19.86 0 0 1 3.09 4.18 2 2 0 0 1 5.08 2h2a2 2 0 0 1 2 1.72c.12.9.33 1.79.62 2.64a2 2 0 0 1-.45 2.11L8.1 9.62a16 16 0 0 0 6.28 6.28l1.15-1.15a2 2 0 0 1 2.11-.45c.85.29 1.74.5 2.64.62A2 2 0 0 1 22 16.92z' stroke='%23000' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.pxc-icon-flag {
  --pxc-field-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 4v16M5 5h13l-3 4 3 4H5' stroke='%23000' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.pxc-field-slider {
  grid-column: 1 / 2;
}

.pxc-slider-wrap {
  min-height: 50px;
  border: 1px solid #ccd3dc;
  border-radius: 10px;
  background: #f7f8fa;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 0 12px;
}

.pxc-slider-wrap input[type='range'] {
  width: 100%;
  accent-color: var(--pxc-accent);
}

.pxc-slider-wrap output {
  font-size: 22px;
  line-height: 1;
  font-weight: var(--e-global-typography-primary-font-weight, 900);
  color: #20252b;
  white-space: nowrap;
  font-family: var(--pxc-font-heading);
}

.pxc-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.pxc-service-chip {
  border: 1px solid #ccd3dc;
  border-radius: 10px;
  background: #f7f8fa;
  min-height: 50px;
  padding: 0 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  color: #2e353d;
  cursor: pointer;
}

.pxc-service-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.pxc-service-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background-color: var(--pxc-icon-neutral);
  -webkit-mask: var(--pxc-chip-mask) center / contain no-repeat;
  mask: var(--pxc-chip-mask) center / contain no-repeat;
}

.pxc-service-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pxc-service-catering {
  --pxc-chip-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 17h18M6 17a6 6 0 0 1 12 0M12 7v4' stroke='%23000' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.pxc-service-rackets {
  --pxc-chip-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m10.5 10.5 3 3M6 12l-3 3M18 12l3 3M8 8a3 3 0 1 1 0 .01M16 16a3 3 0 1 1 0 .01' stroke='%23000' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.pxc-service-coach {
  --pxc-chip-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m2 9 10-5 10 5-10 5-10-5zM6 11.5v4.5c0 1.5 3 3 6 3s6-1.5 6-3v-4.5' stroke='%23000' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.pxc-service-bar {
  --pxc-chip-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 4h16l-6.5 8v6l-3 2v-8L4 4z' stroke='%23000' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.pxc-service-chip input {
  margin: 0;
  width: 17px;
  height: 17px;
  accent-color: var(--pxc-accent);
  justify-self: end;
}

.pxc-footer {
  border-top: 1px solid #d5dbe2;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.pxc-footer p {
  margin: 0;
  color: #3f454c;
  font-size: 12px;
  line-height: 1.45;
  max-width: 62%;
}

.pxc-footer button {
  border: 0;
  border-radius: 10px;
  background: var(--pxc-accent);
  color: #131a0a;
  min-height: 56px;
  padding: 0 20px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: var(--e-global-typography-primary-font-weight, 900);
  font-family: var(--pxc-font-heading);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pxc-footer button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.pxc-status {
  margin: 0;
  min-height: 22px;
  font-size: 13px;
  font-weight: 700;
}

.pxc-status.is-success {
  color: #3f7f0f;
}

.pxc-status.is-error {
  color: #ac2a32;
}

.pxc-honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.pxc-side {
  display: grid;
  gap: 16px;
}

.pxc-side > .pxc-card {
  opacity: 0;
  transform: translate3d(28px, 0, 0);
  animation: pxc-aside-enter-x 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.pxc-side > .pxc-card:nth-child(1) {
  animation-delay: 0.08s;
}

.pxc-side > .pxc-card:nth-child(2) {
  animation-delay: 0.2s;
}

.pxc-side > .pxc-card:nth-child(3) {
  animation-delay: 0.32s;
}

.pxc-side-card {
  padding: 16px;
}

.pxc-side-card h4 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1;
  font-weight: var(--e-global-typography-primary-font-weight, 900);
  letter-spacing: -0.01em;
  font-family: var(--pxc-font-heading);
}

.pxc-side-card img {
  display: block;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.pxc-map-link {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.pxc-map-image {
  display: block;
  width: 100%;
  height: 165px;
  object-fit: cover;
  object-position: center;
  margin: 0;
  border-radius: 0;
}

.pxc-map-video {
  display: block;
  width: 100%;
  height: 165px;
  object-fit: cover;
  object-position: center;
  margin: 0;
  border-radius: 0;
  background: #dfe4ea;
}

.pxc-side-card p {
  margin: 0;
  font-size: 14px;
  color: var(--pxc-muted);
}

.pxc-side-card .pxc-venue-name {
  font-size: 20px;
  line-height: 1;
  color: var(--pxc-text);
  font-weight: 800;
  margin-bottom: 3px;
  font-family: var(--pxc-font-heading);
}

.pxc-side-card .pxc-venue-address {
  color: #3f454c;
}

.pxc-side-card ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  font-size: 16px;
  line-height: 1.35;
}

.pxc-side-card li {
  position: relative;
  padding-left: 22px;
}

.pxc-side-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pxc-accent);
}

.pxc-vibe-card {
  overflow: hidden;
  padding: 16px;
}

.pxc-vibe-media {
  display: block;
  position: relative;
  border-radius: 10px !important;
  overflow: hidden !important;
  margin-bottom: 10px;
}

.pxc-shell button.pxc-vibe-trigger {
  -webkit-appearance: none !important;
  appearance: none !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  min-height: 0 !important;
  display: block !important;
  background: transparent !important;
  box-shadow: none !important;
  text-shadow: none !important;
  border-radius: 0 !important;
  color: inherit !important;
  font: inherit !important;
  line-height: 0 !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  cursor: zoom-in;
}

.pxc-shell button.pxc-vibe-trigger:focus-visible {
  outline: 2px solid var(--pxc-accent);
  outline-offset: 3px;
}

.pxc-vibe-image {
  display: block;
  width: 100%;
  height: 165px;
  object-fit: cover;
  object-position: center;
  margin: 0;
  border-radius: 0 !important;
  vertical-align: top;
}

.pxc-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: var(--pxc-accent);
  color: #0f1807;
  border-radius: 5px;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  pointer-events: none;
}

.pxc-vibe-card strong {
  display: block;
  padding: 0 0 4px;
  font-size: 28px;
  line-height: 1;
  font-weight: var(--e-global-typography-primary-font-weight, 900);
  letter-spacing: -0.01em;
  font-family: var(--pxc-font-heading);
}

.pxc-vibe-subtitle {
  margin: 0;
  padding: 0 0 12px;
  font-size: 14px;
  line-height: 1.35;
  color: #3f454c;
}

.pxc-gallery-card {
  margin-top: 22px;
  padding: 16px;
}

.pxc-gallery-head h3 {
  margin: 0 0 10px;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.1;
  font-weight: var(--e-global-typography-primary-font-weight, 900);
  letter-spacing: -0.01em;
  font-family: var(--pxc-font-heading);
}

.pxc-gallery-masonry {
  column-count: 4;
  column-gap: 10px;
  line-height: 0;
}

.pxc-gallery-item {
  display: block;
  margin: 0 0 10px !important;
  padding: 0 !important;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  border-radius: 10px;
  overflow: hidden;
  background: #e2e7ed;
}

.pxc-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.pxc-faq-card {
  margin-top: 22px;
  padding: 22px;
}

.pxc-faq-head h3 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  font-weight: var(--e-global-typography-primary-font-weight, 900);
  letter-spacing: -0.01em;
  font-family: var(--pxc-font-heading);
}

.pxc-faq-head p {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: #3f454c;
  max-width: 1000px;
}

.pxc-faq-list {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.pxc-faq-item {
  background: #f7f8fa;
  border: 1px solid #dbe1e8;
  border-left: 4px solid var(--pxc-accent);
  border-radius: 12px;
  padding: 0 14px;
  box-shadow: 0 6px 14px rgba(20, 25, 31, 0.05);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.pxc-faq-item:hover {
  border-color: #c7d0d9;
  box-shadow: 0 10px 22px rgba(20, 25, 31, 0.09);
}

.pxc-faq-item summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  margin: 0;
  padding: 14px 28px 14px 0;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 800;
  color: #2c333a;
}

.pxc-faq-item summary::-webkit-details-marker {
  display: none;
}

.pxc-faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(165, 226, 68, 0.2);
  color: #2f5610;
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pxc-faq-item[open] summary::after {
  content: '-';
}

.pxc-faq-item[open] {
  border-color: rgba(165, 226, 68, 0.8);
  background: #f9fdeb;
  box-shadow: 0 12px 26px rgba(112, 165, 34, 0.16);
}

.pxc-faq-item[open] summary {
  color: #20310d;
}

.pxc-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.62s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.46s ease;
}

.pxc-faq-item[open] > .pxc-faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.pxc-faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 0 14px;
  font-size: 15px;
  line-height: 1.6;
  color: #3f454c;
  transform: translateY(-6px);
  transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.pxc-faq-item[open] > .pxc-faq-answer p {
  transform: translateY(0);
}

@keyframes pxc-aside-enter-x {
  from {
    opacity: 0;
    transform: translate3d(28px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes pxc-aside-enter-y {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

body.pxc-lightbox-open {
  overflow: hidden;
}

.pxc-lightbox[hidden] {
  display: none !important;
}

.pxc-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(14, 18, 24, 0.82);
  display: grid;
  place-items: center;
  padding: 24px;
}

.pxc-lightbox-dialog {
  max-width: min(1100px, 95vw);
  max-height: 90vh;
}

.pxc-lightbox-image {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.4);
}

.pxc-lightbox-close {
  appearance: none;
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #11161b;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  position: absolute;
  top: 16px;
  right: 16px;
}

@media (max-width: 1200px) {
  .pxc-main-grid {
    grid-template-columns: 1fr;
  }

  .pxc-side {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}

@media (max-width: 860px) {
  .pxc-form-card {
    padding: 16px;
  }

  .pxc-faq-card {
    padding: 16px;
  }

  .pxc-gallery-masonry {
    column-count: 2;
  }

  .pxc-faq-head h3 {
    font-size: 28px;
  }

  .pxc-faq-head p {
    font-size: 15px;
  }

  .pxc-faq-item summary {
    font-size: 16px;
  }

  .pxc-section {
    padding: 12px;
  }

  .pxc-section h3 {
    font-size: 26px;
  }

  .pxc-field-icon::after {
    width: 16px;
    height: 16px;
    left: 12px;
  }

  .pxc-field-icon input,
  .pxc-field-icon select {
    padding-left: 40px;
  }

  .pxc-fields-grid,
  .pxc-services-grid,
  .pxc-side {
    grid-template-columns: 1fr;
  }

  .pxc-side > .pxc-card {
    transform: translate3d(0, 28px, 0);
    animation-name: pxc-aside-enter-y;
  }

  .pxc-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .pxc-footer p {
    max-width: 100%;
  }

  .pxc-footer button {
    width: 100%;
    justify-content: center;
  }

  .pxc-slider-wrap output {
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pxc-side > .pxc-card {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .pxc-faq-answer,
  .pxc-faq-answer p {
    transition: none;
  }
}
