*,
*::before,
*::after {
  box-sizing: border-box;
}

.oz-page-region,
.oz-component,
.oz-module,
.oz-module__content,
.oz-component__inner,
.oz-component__layout,
.oz-theme-slot,
.oz-theme-slot__content {
  min-width: 0;
}

.oz-page-region,
.oz-component,
.oz-component__inner,
.oz-component__layout {
  width: 100%;
}

.oz-module {
  width: var(--business-module-width, 100%);
  max-width: var(--business-module-max-width, none);
}

.oz-theme-slot {
  min-width: 0;
  width: var(--business-module-width, 100%);
  max-width: var(--business-module-max-width, none);
}

.oz-theme-slot__content {
  min-width: 0;
  width: var(--business-module-content-width, 100%);
  max-width: 100%;
  height: 100%;
}

.oz-module__content {
  min-width: 0;
  width: var(--business-module-content-width, 100%);
  max-width: 100%;
  height: 100%;
}

.oz-component__inner > .oz-module {
  min-width: 0;
}

.oz-field,
.oz-field > img,
.oz-field > video {
  max-width: 100%;
}

.oz-field > img,
.oz-field > video {
  display: block;
  width: 100%;
  height: auto;
}

.oz-field__multiline {
  white-space: pre-wrap;
}

.oz-brand {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 14px;
  row-gap: 4px;
  align-items: center;
  width: 100%;
}

.oz-brand > [data-oz-field="logo"] {
  grid-row: 1 / span 2;
  width: 56px;
  height: 56px;
  overflow: hidden;
  border-radius: 14px;
}

.oz-brand > [data-oz-field="logo"] > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.oz-brand > [data-oz-field="brandName"] {
  display: block;
  color: var(--ink, var(--oz-text));
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.oz-brand > [data-oz-field="tagline"] {
  display: block;
  color: var(--muted, var(--oz-muted));
  line-height: 1.75;
}

.oz-brand > [data-oz-field="homeLink"] {
  display: none;
}

.header__inner .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  width: auto;
}

.header__inner .brand > [data-oz-field="logo"] {
  grid-row: auto;
  width: auto;
  height: auto;
  overflow: visible;
  border-radius: 0;
}

.header__inner .brand > [data-oz-field="logo"] > img {
  width: auto;
  height: 32px;
  object-fit: contain;
}

.header__inner .brand > [data-oz-field="tagline"],
.header__inner .brand > [data-oz-field="homeLink"] {
  display: none;
}

.header__inner .header__cta {
  margin-left: auto;
}

.header__inner .header__cta .oz-actions {
  justify-content: flex-end;
}

.header__inner .header__cta .oz-link {
  white-space: nowrap;
}

.oz-component--site-header .oz-nav--module {
  margin-left: 0;
}

.oz-component--site-header > .oz-theme-slot {
  width: var(--business-module-width, 100%);
  max-width: var(--business-module-max-width, none);
}

.oz-component--site-header .oz-theme-slot__content--actions,
.oz-component--site-header .oz-theme-slot__content--menu,
.oz-component--site-header .oz-theme-slot__content--brand {
  min-height: 100%;
}

.oz-component--site-header .header__cta-btn {
  white-space: nowrap;
}

[data-oz-instance][style*="--oz-background-video-url"] {
  position: relative;
  isolation: isolate;
}

[data-oz-instance][style*="--oz-background-video-url"] > :not(style):not(.oz-background-video) {
  position: relative;
  z-index: 1;
}

.oz-background-video {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  object-fit: var(--oz-background-video-fit, cover);
  object-position: var(--oz-background-video-position, center center);
  opacity: var(--oz-background-video-opacity, 1);
}

.oz-hero__bg--video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .oz-background-video,
  .oz-hero__bg--video {
    display: none;
  }
}

.header__mobile-toggle {
  display: none;
}

.header__mobile-panel {
  display: contents;
}

.oz-theme-fresh .oz-component--site-header .header__cta-btn {
  padding: 9px 16px;
  font-size: .9rem;
}

.oz-theme-noir .oz-component--site-header .header__cta-btn {
  padding: 10px 18px;
  font-size: .85rem;
}

.oz-title {
  display: grid;
  gap: 12px;
  width: 100%;
}

.oz-title > [data-oz-field="title"] {
  display: block;
  margin: 0;
  color: var(--ink, var(--oz-text));
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.1;
}

.oz-title > [data-oz-field="subtitle"] {
  display: block;
  margin: 0;
  color: var(--primary-600, var(--accent, var(--oz-primary)));
  font-size: 17px;
}

.oz-title > [data-oz-field="description"] {
  display: block;
  margin: 0;
  color: var(--muted, var(--oz-muted));
  line-height: 1.75;
}

.oz-field__values,
.oz-actions,
.oz-social-links,
.oz-repeat__tabs,
.oz-repeat__controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
}

.oz-icon {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
}

.oz-link {
  display: inline-flex;
  align-items: center;
  gap: .45em;
}

.oz-actions {
  gap: 12px;
}

.oz-actions .oz-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  color: var(--primary-600, var(--accent, var(--oz-primary)));
  text-decoration: none;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 9px;
  transition: color .18s ease, background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.oz-actions .oz-link:first-of-type {
  color: #fff;
  background: var(--primary, var(--accent, var(--oz-primary)));
  border-color: var(--primary, var(--accent, var(--oz-primary)));
}

.oz-theme-noir .oz-actions .oz-link:first-of-type {
  color: #141414;
}

.oz-actions .oz-link:not(:first-of-type) {
  border-color: color-mix(in srgb, var(--primary, var(--accent, var(--oz-primary))) 28%, transparent);
}

.oz-actions .oz-link:hover {
  transform: translateY(-1px);
}

.oz-link.is-disabled {
  cursor: not-allowed;
  opacity: .55;
  pointer-events: none;
}

.oz-rich-text,
.oz-rich-text > * {
  max-width: 100%;
}

.oz-rich-text {
  width: 100%;
  min-width: 0;
  color: var(--muted, var(--oz-muted));
  line-height: 1.75;
}

.oz-rich-text__body {
  width: 100%;
  min-width: 0;
}

.oz-rich-text img,
.oz-rich-text table {
  max-width: 100%;
}

.oz-rich-text table {
  border-collapse: collapse;
}

:is(.oz-component--rich-text, .oz-module--rich-text, .oz-field--rich_text) .oz-rich-text {
  display: grid;
  justify-self: stretch;
  gap: 16px;
}

:is(.oz-component--rich-text, .oz-module--rich-text, .oz-field--rich_text) .oz-rich-text img {
  display: inline-block;
  height: auto;
  vertical-align: middle;
  max-width: 100%;
}

:is(.oz-component--rich-text, .oz-module--rich-text, .oz-field--rich_text) .oz-rich-text video,
:is(.oz-component--rich-text, .oz-module--rich-text, .oz-field--rich_text) .oz-rich-text iframe {
  display: block;
  max-width: 100%;
}

:is(.oz-component--rich-text, .oz-module--rich-text, .oz-field--rich_text) .oz-rich-text video,
:is(.oz-component--rich-text, .oz-module--rich-text, .oz-field--rich_text) .oz-rich-text iframe {
  width: 100%;
}

:is(.oz-component--rich-text, .oz-module--rich-text, .oz-field--rich_text) .oz-rich-text video {
  height: auto;
}

:is(.oz-component--rich-text, .oz-module--rich-text, .oz-field--rich_text) .oz-rich-text iframe,
:is(.oz-component--rich-text, .oz-module--rich-text, .oz-field--rich_text) .oz-rich-text .ql-video {
  min-height: 320px;
  border: 0;
}

:is(.oz-component--rich-text, .oz-module--rich-text, .oz-field--rich_text) .oz-rich-text .ql-align-center {
  text-align: center;
}

:is(.oz-component--rich-text, .oz-module--rich-text, .oz-field--rich_text) .oz-rich-text .ql-align-right {
  text-align: right;
}

:is(.oz-component--rich-text, .oz-module--rich-text, .oz-field--rich_text) .oz-rich-text .ql-align-justify {
  text-align: justify;
}

:is(.oz-component--rich-text, .oz-module--rich-text, .oz-field--rich_text) .oz-rich-text .ql-direction-rtl {
  direction: rtl;
  text-align: inherit;
}

:is(.oz-component--rich-text, .oz-module--rich-text, .oz-field--rich_text) .oz-rich-text .ql-font-serif {
  font-family: Georgia, "Times New Roman", serif;
}

:is(.oz-component--rich-text, .oz-module--rich-text, .oz-field--rich_text) .oz-rich-text .ql-font-monospace {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

:is(.oz-component--rich-text, .oz-module--rich-text, .oz-field--rich_text) .oz-rich-text .ql-size-small {
  font-size: 0.75em;
}

:is(.oz-component--rich-text, .oz-module--rich-text, .oz-field--rich_text) .oz-rich-text .ql-size-large {
  font-size: 1.5em;
}

:is(.oz-component--rich-text, .oz-module--rich-text, .oz-field--rich_text) .oz-rich-text .ql-size-huge {
  font-size: 2.5em;
}

:is(.oz-component--rich-text, .oz-module--rich-text, .oz-field--rich_text) .oz-rich-text .ql-indent-1 {
  padding-left: 3em;
}

:is(.oz-component--rich-text, .oz-module--rich-text, .oz-field--rich_text) .oz-rich-text .ql-indent-2 {
  padding-left: 6em;
}

:is(.oz-component--rich-text, .oz-module--rich-text, .oz-field--rich_text) .oz-rich-text .ql-indent-3 {
  padding-left: 9em;
}

:is(.oz-component--rich-text, .oz-module--rich-text, .oz-field--rich_text) .oz-rich-text .ql-indent-4 {
  padding-left: 12em;
}

:is(.oz-component--rich-text, .oz-module--rich-text, .oz-field--rich_text) .oz-rich-text .ql-indent-5 {
  padding-left: 15em;
}

:is(.oz-component--rich-text, .oz-module--rich-text, .oz-field--rich_text) .oz-rich-text .ql-indent-6 {
  padding-left: 18em;
}

:is(.oz-component--rich-text, .oz-module--rich-text, .oz-field--rich_text) .oz-rich-text .ql-indent-7 {
  padding-left: 21em;
}

:is(.oz-component--rich-text, .oz-module--rich-text, .oz-field--rich_text) .oz-rich-text .ql-indent-8 {
  padding-left: 24em;
}

.oz-structured-list__items,
.oz-menu__list,
.oz-breadcrumb,
.oz-social-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.oz-menu__mobile-toggle {
  display: none;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 8px;
  cursor: pointer;
}

.oz-menu__list--level-1 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.oz-menu__entry {
  position: relative;
}

.oz-menu__item {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  white-space: nowrap;
}

.oz-menu__submenu-toggle {
  display: inline-grid;
  width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.oz-menu__list--level-2,
.oz-menu__list--level-3 {
  position: absolute;
  z-index: 100;
  top: 100%;
  left: 0;
  display: grid;
  min-width: 12rem;
  gap: .25rem;
  padding: .65rem;
  visibility: hidden;
  opacity: 0;
  transform: translateY(.35rem);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}

.oz-menu__list--level-3 {
  top: 0;
  left: 100%;
}

.oz-menu__entry:hover > .oz-menu__list,
.oz-menu__entry:focus-within > .oz-menu__list,
.oz-menu__entry.is-open > .oz-menu__list {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.oz-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}

.oz-breadcrumb li + li::before {
  content: "/";
  margin-right: .5rem;
  opacity: .55;
}

.oz-repeat__viewport {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.oz-repeat__item {
  min-width: 0;
}

.oz-repeat__controls {
  justify-content: center;
  margin-top: 1rem;
}

.oz-js [data-oz-layout="tabs"] .oz-repeat__item[hidden],
.oz-js [data-oz-layout="carousel"] .oz-repeat__item[hidden] {
  display: none;
}

.oz-faq {
  display: grid;
  width: 100%;
  min-width: 0;
  gap: .5rem;
}

.oz-faq > * {
  width: 100%;
  min-width: 0;
}

.oz-faq__item + .oz-faq__item {
  margin-top: .5rem;
}

.oz-faq__item > summary {
  display: flex;
  width: 100%;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.oz-faq__answer {
  width: 100%;
  min-width: 0;
  padding-top: .75rem;
}

.oz-info,
.oz-contact-info {
  margin: 0;
  font-style: normal;
}

.oz-contact-info {
  display: grid;
  gap: 12px;
}

.oz-contact-info__item {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: color-mix(in srgb, var(--bg, var(--oz-surface, #fff)) 92%, var(--secondary, var(--accent-secondary, #f5f5f5)) 8%);
  border: 1px solid color-mix(in srgb, var(--primary, var(--accent, var(--oz-primary))) 10%, transparent);
  border-radius: 11px;
}

.oz-contact-info__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.oz-contact-info__content {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.oz-contact-info__label {
  color: var(--muted, var(--oz-muted));
  font-size: .82rem;
}

.oz-contact-info__item .oz-field,
.oz-contact-info__item .oz-link {
  min-width: 0;
  color: var(--ink, var(--oz-text));
  overflow-wrap: anywhere;
}

.oz-contact-info__item .oz-link:hover {
  color: var(--primary-600, var(--accent, var(--oz-primary)));
}

.oz-info__item dd {
  margin: 0;
}

.oz-form {
  display: grid;
  width: 100%;
  gap: 16px;
}

.oz-form-field {
  display: grid;
  min-width: 0;
  gap: 8px;
}

.oz-form-field > label,
.oz-form-field > small {
  display: block;
}

.oz-form-field > label {
  color: var(--oz-text);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
}

.oz-form-field input:not([type="radio"]):not([type="checkbox"]),
.oz-form-field textarea,
.oz-form-field select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-height: 48px;
  padding: 12px 14px;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.oz-form-field textarea {
  min-height: 132px;
  resize: vertical;
}

.oz-form button {
  min-height: 46px;
  padding: 0 24px;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .01em;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.oz-form button:not(:disabled):hover {
  transform: translateY(-1px);
}

.oz-form-field input:focus,
.oz-form-field textarea:focus,
.oz-form-field select:focus {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--oz-primary) 18%, transparent);
}

.oz-form__notice:empty {
  display: none;
}

.oz-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.oz-editor-selected-component {
  position: relative;
  z-index: 3;
  isolation: isolate;
}

.oz-editor-selected-component::after {
  content: none;
}

.oz-editor-selected-component::before {
  content: none;
}

.oz-editor-selected-component [data-oz-module] {
  position: relative;
  z-index: 1;
  isolation: isolate;
}

.oz-editor-selected-component [data-oz-module]::before {
  content: none;
}

.oz-editor-selected-component [data-oz-module-label]:not([data-oz-module-label=""])::after {
  content: none;
}

.oz-editor-highlight-layer {
  position: fixed;
  inset: 0;
  z-index: 2147483646;
  pointer-events: none;
}

.oz-editor-highlight-box {
  position: fixed;
  border: 2px dashed var(--oz-highlight-color, #409eff);
  background: color-mix(in srgb, var(--oz-highlight-color, #409eff) 8%, transparent);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--oz-highlight-color, #409eff) 22%, transparent) inset,
    0 6px 18px rgba(15, 23, 42, 0.08);
  pointer-events: none;
}

.oz-editor-highlight-box--component {
  border-width: 3px;
  background: color-mix(in srgb, var(--oz-highlight-color, #409eff) 6%, transparent);
}

.oz-editor-highlight-box--module {
  border-width: 2px;
  background: color-mix(in srgb, var(--oz-highlight-color, #409eff) 12%, transparent);
}

.oz-editor-highlight-badge {
  position: fixed;
  padding: .3rem .56rem;
  color: #ffffff;
  background: color-mix(in srgb, var(--oz-highlight-color, #409eff) 88%, rgba(15, 23, 42, .2));
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.16);
  font: 600 12px/1.2 "PingFang SC", "Microsoft YaHei", sans-serif;
  white-space: nowrap;
  pointer-events: none;
}

.oz-editor-highlight-badge--component {
  font-size: 13px;
}

.oz-editor-highlight-badge--module {
  font-size: 11px;
}

.oz-storefront .intro-layout {
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.oz-storefront .intro-layout > .oz-module,
.oz-storefront .intro-layout > .intro__copy,
.oz-storefront .intro-layout > .intro__actions,
.oz-storefront .intro-layout > .intro__media {
  min-width: 0;
}

.oz-storefront .intro-layout .intro__media,
.oz-storefront .intro-layout .intro__media .oz-media {
  display: block;
}

.oz-storefront .intro-layout .intro__media img,
.oz-storefront .intro-layout .intro__media video {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius, 16px);
  border: 1px solid var(--surface-border, var(--panel-border, rgba(148, 163, 184, .22)));
  background: var(--bg, var(--panel, #fff));
  box-shadow: var(--shadow, 0 10px 30px rgba(15, 23, 42, .08));
}

.oz-storefront .intro-layout .intro__copy {
  display: grid;
  gap: 14px;
}

.oz-storefront .intro-layout .intro__copy--title .oz-title {
  gap: 14px;
}

.oz-storefront .intro-layout .intro__copy--body .oz-info {
  display: grid;
  gap: 12px;
}

.oz-storefront .intro-layout .intro__copy--body .oz-info__item {
  display: block;
}

.oz-storefront .intro-layout .intro__copy--body dt {
  display: none;
}

.oz-storefront .intro-layout .intro__actions .oz-actions {
  justify-content: flex-start;
}

.oz-component--stats-metrics .stats .oz-repeat__item {
  display: grid;
  gap: 10px;
  align-content: start;
  justify-items: center;
  min-width: 0;
  padding: 26px;
  text-align: center;
  border-radius: var(--radius, 16px);
  border: 1px solid var(--surface-border, var(--panel-border, rgba(148, 163, 184, .22)));
}

.oz-theme-fresh .oz-component--stats-metrics .stats .oz-repeat__item {
  background: linear-gradient(180deg, #fff 0%, var(--surface-soft, #f8fafc) 100%);
  box-shadow: var(--shadow, 0 10px 30px rgba(15, 23, 42, .08));
}

.oz-theme-noir .oz-component--stats-metrics .stats {
  gap: 1px;
  background: var(--line, rgba(255, 255, 255, .12));
  border: 1px solid var(--line, rgba(255, 255, 255, .12));
}

.oz-theme-noir .oz-component--stats-metrics .stats .oz-repeat__item {
  border: 0;
  border-radius: 0;
  background: var(--panel, #15151c);
  padding: 34px 26px;
}

.oz-component--stats-metrics .stats [data-oz-field="icon"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-600, var(--accent, var(--oz-primary)));
}

.oz-component--stats-metrics .stats .stat__value-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.oz-component--stats-metrics .stats [data-oz-field="value"],
.oz-component--stats-metrics .stats [data-oz-field="value"] > span {
  display: block;
  color: var(--primary-600, var(--accent, var(--oz-primary)));
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
}

.oz-theme-noir .oz-component--stats-metrics .stats [data-oz-field="value"],
.oz-theme-noir .oz-component--stats-metrics .stats [data-oz-field="value"] > span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--accent, var(--oz-primary));
}

.oz-component--stats-metrics .stats [data-oz-field="label"],
.oz-component--stats-metrics .stats [data-oz-field="label"] > span {
  display: block;
  color: var(--muted, var(--oz-muted));
  font-size: .95rem;
  line-height: 1.6;
}

.oz-component--media-gallery .gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.oz-component--media-gallery .gallery .oz-repeat__item,
.oz-component--media-gallery .gallery.oz-module--media,
.oz-component--media-gallery .gallery .oz-module--media {
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius-sm, 10px);
}

.oz-component--media-gallery .gallery .oz-repeat__item img,
.oz-component--media-gallery .gallery .oz-module--media img,
.oz-component--media-gallery .gallery.oz-module--media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform .3s ease;
}

.oz-component--media-gallery .gallery .oz-repeat__item:hover img,
.oz-component--media-gallery .gallery .oz-module--media:hover img,
.oz-component--media-gallery .gallery.oz-module--media:hover img {
  transform: scale(1.06);
}

.oz-theme-noir .oz-component--media-gallery .gallery {
  display: block;
  columns: 3;
  gap: 14px;
}

.oz-theme-noir .oz-component--media-gallery .gallery .oz-repeat__item,
.oz-theme-noir .oz-component--media-gallery .gallery .oz-module--media,
.oz-theme-noir .oz-component--media-gallery .gallery.oz-module--media {
  display: block;
  margin: 0 0 14px;
  break-inside: avoid;
}

.oz-theme-noir .oz-component--media-gallery .gallery img {
  filter: saturate(.9);
}

@media (max-width: 900px) {
  .oz-component--site-header .header__inner {
    width: 100%;
    height: 64px;
  }

  .oz-component--site-header .header__layout {
    position: relative;
    display: grid !important;
    box-sizing: border-box;
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    grid-template-columns: minmax(0, 1fr) 44px !important;
    grid-template-rows: 64px !important;
    align-items: center !important;
    justify-items: stretch !important;
    column-gap: 12px !important;
    row-gap: 0 !important;
    padding-inline: 16px !important;
  }

  .oz-component--site-header .header__slot--brand,
  .oz-component--site-header .brand {
    min-width: 0;
  }

  .oz-component--site-header .header__slot--brand {
    grid-row: 1 !important;
    grid-column: 1 !important;
    justify-self: start !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .oz-component--site-header .header__slot--brand .brand {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 10px !important;
    text-align: left !important;
  }

  .oz-component--site-header .brand__media,
  .oz-component--site-header .brand__mark {
    flex: 0 0 auto;
  }

  .oz-component--site-header .brand__title {
    min-width: 0;
    flex: 1 1 auto;
  }

  .oz-component--site-header .brand__title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .oz-component--site-header .header__mobile-toggle {
    display: inline-grid;
    grid-row: 1 !important;
    grid-column: 2 !important;
    align-self: center !important;
    justify-self: end !important;
    margin: 0 !important;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 0;
    color: inherit;
    background: color-mix(in srgb, currentColor 6%, transparent);
    border: 1px solid color-mix(in srgb, currentColor 18%, transparent);
    border-radius: var(--radius-sm, var(--oz-radius-small, 8px));
    cursor: pointer;
  }

  .header__mobile-toggle-lines,
  .header__mobile-toggle-lines i {
    display: block;
  }

  .header__mobile-toggle-lines {
    position: relative;
    width: 20px;
    height: 16px;
  }

  .header__mobile-toggle-lines i {
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transition: top .18s ease, transform .18s ease, opacity .18s ease;
  }

  .header__mobile-toggle-lines i:nth-child(1) { top: 0; }
  .header__mobile-toggle-lines i:nth-child(2) { top: 7px; }
  .header__mobile-toggle-lines i:nth-child(3) { top: 14px; }

  .oz-component--site-header.is-mobile-menu-open .header__mobile-toggle-lines i:nth-child(1) {
    top: 7px;
    transform: rotate(45deg);
  }

  .oz-component--site-header.is-mobile-menu-open .header__mobile-toggle-lines i:nth-child(2) {
    opacity: 0;
  }

  .oz-component--site-header.is-mobile-menu-open .header__mobile-toggle-lines i:nth-child(3) {
    top: 7px;
    transform: rotate(-45deg);
  }

  .oz-component--site-header .header__mobile-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 20;
    display: none;
    flex-direction: column;
    max-height: calc(100vh - 88px);
    gap: 10px;
    padding: 14px;
    overflow-y: auto;
    color: var(--ink, var(--oz-text));
    background: var(--surface, var(--oz-surface, #fff));
    border: 1px solid var(--line, var(--oz-border));
    border-radius: var(--radius-sm, var(--oz-radius-small, 10px));
    box-shadow: var(--shadow, var(--oz-shadow, 0 18px 40px rgba(15, 23, 42, .16)));
  }

  .oz-component--site-header.is-mobile-menu-open .header__mobile-panel {
    display: flex;
  }

  .oz-component--site-header .header__mobile-panel > .header__slot {
    position: static !important;
    inset: auto !important;
    grid-row: auto !important;
    grid-column: auto !important;
    grid-area: auto !important;
    align-self: stretch !important;
    justify-self: stretch !important;
    flex: 0 0 auto !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    transform: none !important;
    --business-module-width: 100%;
    --business-module-max-width: 100%;
    --business-module-content-width: 100%;
  }

  .oz-component--site-header .header__mobile-panel > .header__slot--menu {
    order: 1;
  }

  .oz-component--site-header .header__mobile-panel .oz-nav {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100%;
    max-width: none !important;
    margin: 0;
    gap: 0;
    justify-items: stretch !important;
    text-align: left !important;
  }

  .oz-component--site-header .header__mobile-panel .oz-nav a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 10px 8px;
    color: inherit;
    border-bottom: 1px solid color-mix(in srgb, currentColor 12%, transparent);
    white-space: nowrap;
    cursor: pointer;
  }

  .oz-component--site-header .header__mobile-panel .oz-nav a:last-child {
    border-bottom: 0;
  }

  .oz-component--site-header .header__mobile-panel .header__cta {
    order: 2;
    width: 100% !important;
    margin: 2px 0 0 !important;
  }

  .oz-component--site-header .header__mobile-panel .header__cta .oz-module__content,
  .oz-component--site-header .header__mobile-panel .header__cta-btn {
    width: 100% !important;
    max-width: none !important;
  }

  .oz-component--site-header .header__mobile-panel .header__cta-btn {
    min-height: 46px;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .oz-storefront .intro-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .oz-component--stats-metrics .stats {
    grid-template-columns: 1fr;
  }

  .oz-component--media-gallery .gallery {
    grid-template-columns: 1fr;
  }

  .oz-theme-noir .oz-component--media-gallery .gallery {
    columns: 1;
  }

  .oz-menu__mobile-toggle {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
  }

  .oz-js .oz-menu__list--level-1 {
    display: none;
  }

  .oz-js .oz-module--menu.is-open > .oz-menu__list--level-1 {
    display: grid;
  }

  .oz-menu__list--level-1,
  .oz-menu__list--level-2,
  .oz-menu__list--level-3 {
    position: static;
    display: grid;
    width: 100%;
    min-width: 0;
    gap: .25rem;
    padding: .35rem 0 .35rem 1rem;
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .oz-js .oz-menu__entry:not(.is-open) > .oz-menu__list {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
