:root {
  --mz-bg: #0b0b0a;
  --mz-panel: #151512;
  --mz-text: #f1ede3;
  --mz-muted: rgba(241, 237, 227, 0.58);
  --mz-line: rgba(241, 237, 227, 0.12);
  --mz-bronze: #c6a66b;
  --mz-max: 1600px;
}

* { box-sizing: border-box; }
html { background: var(--mz-bg); scroll-behavior: smooth; }
html.mz-menu-open,
html.mz-cart-open { overflow: hidden; }
body.mauzaris-site { margin: 0; min-width: 320px; background: var(--mz-bg); color: var(--mz-text); font-family: Arial, Helvetica, sans-serif; }
a { color: inherit; }
img { max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }

:where(a, button, input, select, textarea):focus-visible {
  outline: 1px solid var(--mz-bronze);
  outline-offset: 4px;
}

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

.mz-shell { width: min(calc(100% - 40px), var(--mz-max)); margin-inline: auto; }
.mz-main { min-height: 60vh; }
.mz-skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 9999; background: var(--mz-text); color: var(--mz-bg); padding: .75rem 1rem; }
.mz-skip-link:focus { top: 1rem; }

.mz-header { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--mz-line); background: rgba(11, 11, 10, .9); backdrop-filter: blur(18px); transition: background .3s ease, border-color .3s ease; }
.mz-header.is-scrolled { background: rgba(11, 11, 10, .96); border-color: rgba(241,237,227,.16); }
.mz-header__inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.mz-brand { display: inline-flex; align-items: center; gap: .75rem; text-decoration: none; }
.mz-brand__mark { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid rgba(198,166,107,.55); border-radius: 50%; color: var(--mz-bronze); font-size: .62rem; letter-spacing: .08em; }
.mz-brand__word { font-family: Georgia, 'Times New Roman', serif; font-size: 1rem; letter-spacing: .24em; }
.mz-nav__list, .mz-footer__nav { display: flex; align-items: center; gap: 1.5rem; margin: 0; padding: 0; list-style: none; }
.mz-nav a, .mz-footer a, .mz-selection-link { text-decoration: none; text-transform: uppercase; letter-spacing: .18em; font-size: .66rem; color: var(--mz-muted); transition: color .25s ease; }
.mz-nav a:hover, .mz-footer a:hover, .mz-selection-link:hover { color: var(--mz-text); }
.mz-header__actions { display: inline-flex; align-items: center; gap: 1rem; }
.mz-selection-link { display: inline-flex; min-height: 44px; align-items: center; gap: .5rem; }
.mz-selection-link__count { color: var(--mz-bronze); }

.mz-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--mz-text);
  cursor: pointer;
}

.mz-menu-toggle__lines {
  position: relative;
  display: block;
  width: 20px;
  height: 12px;
}

.mz-menu-toggle__lines i {
  position: absolute;
  left: 0;
  width: 20px;
  height: 1px;
  background: currentColor;
}

.mz-menu-toggle__lines i:first-child { top: 2px; }
.mz-menu-toggle__lines i:last-child { bottom: 2px; width: 13px; }

.mz-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 220;
  visibility: hidden;
  pointer-events: none;
}

.mz-mobile-nav.is-open {
  visibility: visible;
  pointer-events: auto;
}

.mz-mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0,0,0,.68);
  opacity: 0;
  cursor: pointer;
  transition: opacity .35s ease;
}

.mz-mobile-nav.is-open .mz-mobile-nav__backdrop { opacity: 1; }

.mz-mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: min(92vw, 520px);
  height: 100%;
  flex-direction: column;
  padding: 1.5rem;
  border-left: 1px solid rgba(241,237,227,.14);
  background:
    radial-gradient(circle at 78% 12%, rgba(198,166,107,.08), transparent 30%),
    #0d0d0b;
  transform: translateX(102%);
  transition: transform .45s cubic-bezier(.2,.75,.2,1);
  overflow-y: auto;
}

.mz-mobile-nav.is-open .mz-mobile-nav__panel { transform: translateX(0); }

.mz-mobile-nav__topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--mz-line);
}

.mz-mobile-nav__topline h2 {
  margin: .8rem 0 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.7rem, 7vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -.03em;
}

.mz-mobile-nav__close {
  display: grid;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--mz-line);
  background: transparent;
  color: rgba(241,237,227,.7);
  font-size: 1.45rem;
  cursor: pointer;
}

.mz-mobile-nav__nav { margin-top: 2.5rem; }
.mz-mobile-nav__list { margin: 0; padding: 0; list-style: none; }
.mz-mobile-nav__list li { border-bottom: 1px solid var(--mz-line); }
.mz-mobile-nav__list a {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 1rem;
  color: var(--mz-text);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.8rem, 8vw, 3rem);
  letter-spacing: -.035em;
  line-height: 1;
  text-decoration: none;
  transition: color .25s ease, padding-left .25s ease;
}
.mz-mobile-nav__list a:hover,
.mz-mobile-nav__list a:focus-visible { color: var(--mz-bronze); padding-left: .25rem; }
.mz-mobile-nav__list a span {
  width: 1.4rem;
  color: rgba(241,237,227,.3);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .5rem;
  letter-spacing: .18em;
}

.mz-mobile-nav__footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: auto;
  padding-top: 3rem;
  color: rgba(241,237,227,.36);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .5rem;
  line-height: 1.8;
}
.mz-mobile-nav__footer p { max-width: 13rem; margin: 0; }
.mz-mobile-nav__footer a { color: var(--mz-bronze); text-decoration: none; }

.mz-hero { min-height: calc(100svh - 72px); display: flex; align-items: end; border-bottom: 1px solid var(--mz-line); background: linear-gradient(180deg, rgba(11,11,10,.2), rgba(11,11,10,.96)); }
.mz-hero__content { padding-block: clamp(5rem, 10vw, 9rem) 3.5rem; }
.mz-kicker { margin: 0; color: var(--mz-bronze); text-transform: uppercase; letter-spacing: .28em; font-size: .62rem; }
.mz-hero__title, .mz-display { font-family: Georgia, 'Times New Roman', serif; letter-spacing: -.04em; }
.mz-hero__title { max-width: 1100px; margin: 1.5rem 0 0; font-size: clamp(4rem, 10vw, 9rem); line-height: .82; }
.mz-hero__title em { display: block; margin-left: .75em; color: var(--mz-bronze); font-weight: 400; }
.mz-hero__copy { max-width: 520px; margin: 2rem 0 0; color: var(--mz-muted); line-height: 1.8; }
.mz-hero__actions { margin-top: 2rem; }
.mz-button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; border: 1px solid var(--mz-bronze); background: var(--mz-bronze); color: #17120b; padding: 0 1.5rem; text-decoration: none; text-transform: uppercase; letter-spacing: .18em; font-size: .65rem; transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease; }
.mz-button:hover, .mz-button:focus-visible { transform: translateY(-1px); background: #d2b578; }
.mz-button--outline { background: transparent; color: var(--mz-text); border-color: rgba(241,237,227,.18); }
.mz-button--outline:hover, .mz-button--outline:focus-visible { background: transparent; color: var(--mz-bronze); border-color: var(--mz-bronze); }

.mz-text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: .65rem;
  color: rgba(241,237,227,.68);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .58rem;
  transition: color .3s ease;
}
.mz-text-link:hover, .mz-text-link:focus-visible { color: var(--mz-bronze); }

.mz-empty-collection {
  position: relative;
  max-width: 960px;
  padding: clamp(4rem, 8vw, 8rem) 0;
  border-top: 1px solid var(--mz-line);
  border-bottom: 1px solid var(--mz-line);
}
.mz-empty-collection__mark {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 3rem;
  place-items: center;
  border: 1px solid rgba(198,166,107,.5);
  border-radius: 50%;
  color: var(--mz-bronze);
  font-size: .56rem;
  letter-spacing: .08em;
}
.mz-empty-collection h2 {
  max-width: 820px;
  margin: 1.2rem 0 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .95;
}
.mz-empty-collection > p:not(.mz-kicker) {
  max-width: 580px;
  margin: 1.8rem 0 0;
  color: var(--mz-muted);
  line-height: 1.85;
}
.mz-empty-collection .mz-text-link { margin-top: 2rem; }

.mz-intro, .mz-collection-preview, .mz-page-stack { padding-block: clamp(5rem, 9vw, 9rem); }
.mz-display { max-width: 1000px; margin: 1.5rem 0 0; font-size: clamp(2.2rem, 5vw, 4.8rem); line-height: 1.05; font-weight: 400; }
.mz-section-heading { padding-bottom: 2rem; border-bottom: 1px solid var(--mz-line); }
.mz-content-card { padding: 2rem 0; }
.mz-prose { color: var(--mz-muted); line-height: 1.8; }

.mz-footer { border-top: 1px solid var(--mz-line); padding-top: 4rem; }
.mz-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; }
.mz-footer__statement { max-width: 420px; color: var(--mz-muted); line-height: 1.7; }
.mz-footer__bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 4rem; padding-block: 1.5rem; border-top: 1px solid var(--mz-line); color: var(--mz-muted); text-transform: uppercase; letter-spacing: .15em; font-size: .6rem; }

.woocommerce ul.products { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; margin: 2.5rem 0 0; padding: 0; }
.woocommerce ul.products::before, .woocommerce ul.products::after { display: none; }
.woocommerce ul.products li.product { float: none; width: auto; margin: 0; }
.woocommerce ul.products li.product a { text-decoration: none; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { color: var(--mz-text); font-family: Georgia, 'Times New Roman', serif; font-size: 1.5rem; font-weight: 400; }
.woocommerce ul.products li.product .price { color: var(--mz-bronze); }
.woocommerce ul.products li.product .button { border-radius: 0; background: transparent; border: 1px solid var(--mz-line); color: var(--mz-text); text-transform: uppercase; letter-spacing: .15em; font-size: .62rem; }

@media (max-width: 900px) {
  .mz-nav { display: none; }
  .mz-menu-toggle { display: inline-flex; }
  .mz-footer__grid { grid-template-columns: 1fr; }
  .woocommerce ul.products { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .mz-shell { width: min(calc(100% - 28px), var(--mz-max)); }
  .mz-header__inner { min-height: 64px; gap: .75rem; }
  .mz-header__actions { gap: .25rem; }
  .mz-brand__word { font-size: .86rem; }
  .mz-selection-link > span:first-child { display: none; }
  .mz-hero__title { font-size: clamp(3.6rem, 20vw, 6rem); }
  .mz-mobile-nav__panel { width: 100%; padding: 1.1rem; }
  .mz-mobile-nav__list a { min-height: 70px; }
  .mz-mobile-nav__footer { align-items: flex-start; flex-direction: column; }
  .mz-footer__bottom { flex-direction: column; }
}

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