/* ============================================================
   Anix Atelier - small overrides on top of the Woomen theme
   ============================================================ */

:root {
  --anix-ink: #1d1d1d;
  --anix-muted: #7d7466;
  --anix-cream: #f7f2ea;
  --anix-cream-deep: #f6f2ea;
  --anix-gold: #d8c49a;
  --anix-gold-deep: #9a8256;
  --anix-line: #e7e1d4;
  --anix-serif: "Bodoni Moda", Didot, "Bodoni MT", Georgia, serif;
}

/* ---------- global finish ---------- */

::selection { background: #1d1d1d; color: #f2ead9; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--anix-gold-deep);
  outline-offset: 3px;
}

/* slim, quiet scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f2ede4; }
::-webkit-scrollbar-thumb { background: #cfc6b3; border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: #b3a88f; }

/* soft page-enter transition on every Inertia navigation */
main {
  animation: anix-page-in 0.55s ease both;
}

@keyframes anix-page-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* shared muted paragraph */
.anix-muted-text {
  color: var(--anix-muted);
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.01em;
}

/* ---------- text logo (ANIX wordmark) ---------- */

.anix-logo {
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  line-height: 1;
}

.anix-logo .name {
  font-family: "Bodoni Moda", Didot, "Bodoni MT", Georgia, serif;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 0.24em;
  color: #fff;
  transition: color 0.35s ease;
}

.anix-logo .sub {
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.35s ease;
}

/* hover tints the WHOLE lockup (name + sub) in soft gold - readable on dark */
.anix-logo:hover .name,
.anix-logo:hover .sub { color: #d8c49a; }

.anix-logo.dark .name { color: #1d1d1d; }
.anix-logo.dark .sub { color: rgba(29, 29, 29, 0.65); }
.anix-logo.dark:hover .name,
.anix-logo.dark:hover .sub { color: #9a8256; }

.anix-logo.footer-size .name { font-size: 44px; }

/* ---------- motion: scroll reveals & parallax ---------- */

html { scroll-behavior: smooth; }

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--rd, 0s);
  will-change: opacity, transform;
}

[data-reveal].is-revealed { opacity: 1; transform: none; }

[data-parallax] { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* full-width parallax band */
.anix-plx-band {
  position: relative;
  height: 62vh;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.anix-plx-band .bg {
  position: absolute;
  inset: -18% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.anix-plx-band .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 13, 11, 0.45);
}

.anix-plx-band .content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
}

.anix-plx-band .content .kicker {
  font-size: 11px;
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  text-transform: uppercase;
  color: rgba(242, 234, 217, 0.75);
  margin-bottom: 18px;
}

.anix-plx-band .content h3 {
  font-family: "Bodoni Moda", Didot, Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(26px, 4vw, 44px);
  letter-spacing: 0.06em;
  line-height: 1.3;
  color: #f6f0e3;
}

/* ---------- hero slide choreography ---------- */

/* the theme forces transform-only transitions on banner slides, which kills
   Swiper's fade effect - restore opacity transitions for the crossfade */
.banner-3-area .swiper-container-fade .swiper-slide {
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

/* Ken Burns + caption choreography, keyed to a JS-managed .is-on class:
   the outgoing slide KEEPS the class during the crossfade (no snap-back),
   and is only reset once fully invisible. */
.banner-3-area .banner-3-item .bg {
  will-change: transform;
  transform: scale(1.02);
}

.banner-3-area .swiper-slide.is-on .banner-3-item .bg {
  animation: anix-kenburns 8.5s ease-out forwards;
}

@keyframes anix-kenburns {
  from { transform: scale(1.02); }
  to { transform: scale(1.14); }
}

.banner-3-area .swiper-slide.is-on .content .subtitle {
  animation: anix-slide-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}

.banner-3-area .swiper-slide.is-on .content .title {
  animation: anix-slide-up 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

.banner-3-area .swiper-slide.is-on .content .su-btn-4 {
  animation: anix-slide-up 1s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both;
}

@keyframes anix-slide-up {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .banner-3-area .swiper-slide.is-on .banner-3-item .bg,
  .banner-3-area .swiper-slide.is-on .content .subtitle,
  .banner-3-area .swiper-slide.is-on .content .title,
  .banner-3-area .swiper-slide.is-on .content .su-btn-4 {
    animation: none;
  }
}

/* ---------- client account panel (contained dark block under the hero) ---------- */

.anix-account-panel {
  background: #14120f;
  padding: clamp(48px, 6vw, 76px) clamp(24px, 6vw, 90px);
  position: relative;
}

/* thin gold accent along the top edge */
.anix-account-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 2px;
  background: #9a8256;
}

.anix-account-panel .kicker {
  font-size: 11px;
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  text-transform: uppercase;
  color: #9a8256;
  margin-bottom: 16px;
}

.anix-account-panel .strip-title {
  font-family: var(--anix-serif);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: 0.12em;
  color: #f6f0e3;
  margin-bottom: 14px;
}

.anix-account-panel .strip-text {
  color: rgba(242, 234, 217, 0.65);
  font-size: 15px;
  line-height: 1.9;
  max-width: 560px;
  margin: 0 auto;
}

.anix-btn-cream,
.anix-btn-outline-light {
  display: inline-block;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 15px 30px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.anix-btn-cream {
  background: #f2ead9;
  color: #14120f;
  border: 1px solid #f2ead9;
}

.anix-btn-cream:hover { background: transparent; color: #f2ead9; }

.anix-btn-outline-light {
  background: transparent;
  color: #f2ead9;
  border: 1px solid rgba(242, 234, 217, 0.45);
}

.anix-btn-outline-light:hover { border-color: #f2ead9; color: #fff; }

/* hero scroll hint */
.anix-scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 10px;
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  text-transform: uppercase;
  pointer-events: none;
}

.anix-scroll-hint::after {
  content: "";
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.7);
  animation: anix-hint 2.2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes anix-hint {
  0% { transform: scaleY(0); }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- header ---------- */

.anix-header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px clamp(22px, 4vw, 56px);
  gap: 16px;
}

/* centered stacked wordmark lockup */
.anix-header-brand { text-align: center; }

.anix-header-inner .anix-logo {
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

/* right utilities: language switch + sign in */
.anix-header-utils {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px; /* matches the contact column on the left */
}

.anix-lang {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  line-height: 1;
  height: 13px;
}

.anix-lang a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.3s ease;
}

.anix-lang a:hover { color: #d8c49a; }
.anix-lang a.on { color: #fff; }
.anix-lang .sep { color: rgba(255, 255, 255, 0.25); }

.anix-signin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  height: 13px;
  transition: color 0.3s ease;
}

.anix-signin:hover { color: #d8c49a; }
.anix-signin svg { width: 12px; height: 12px; fill: currentColor; }

.anix-header-inner .anix-logo .name { font-size: 23px; letter-spacing: 0.3em; text-indent: 0.3em; }
.anix-header-inner .anix-logo .sub { font-size: 8.5px; letter-spacing: 0.52em; text-indent: 0.52em; }

.anix-header-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.anix-header-contact a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  line-height: 1;
  height: 13px;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.anix-header-contact a:hover { color: #d8c49a; }

/* hairline edge once the header turns solid */
.anix-header-solid { border-bottom: 1px solid rgba(255, 255, 255, 0.09); }

@media (max-width: 640px) {
  /* contacts live in the footer; mobile header = logo left, essentials right */
  .anix-header-contact { display: none; }
  .anix-header-inner { grid-template-columns: auto 1fr; padding: 13px 18px; gap: 8px; }
  .anix-header-brand { text-align: left; }
  .anix-header-utils { justify-content: flex-end; }
  .anix-header-inner .anix-logo .name { font-size: 19px; }
  .anix-header-inner .anix-logo .sub { font-size: 7.5px; }

  /* one compact row: EN/SQ · account icon · bag icon (count) */
  .anix-header-utils { flex-direction: row; align-items: center; gap: 18px; }
  .anix-signin .txt,
  .anix-bag .txt { display: none; }
  .anix-signin,
  .anix-bag { height: auto; gap: 4px; }
  .anix-signin svg,
  .anix-bag svg { width: 17px; height: 17px; }
  .anix-bag .n { font-size: 11.5px; letter-spacing: 0; }
}

.anix-header-icons a { color: #fff; }
.anix-header-icons a:hover { opacity: 0.75; }
.anix-header-icons svg { fill: currentColor; }

/* solid dark header for inner pages and after scrolling */
.header-3 { transition: background 0.3s ease; }
.anix-header-solid { background: rgba(24, 22, 20, 0.97); }
.anix-header-solid .su-header-16-middle { padding-bottom: 12px; }

/* push content below the fixed header on inner pages */
.anix-page-offset { padding-top: 130px; }
@media (max-width: 1199px) { .anix-page-offset { padding-top: 108px; } }

/* ---------- mobile header / menu ---------- */

.anix-mobile-bar {
  background: #1d1d1d;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.anix-burger {
  background: transparent;
  border: 0;
  width: 30px;
  height: 22px;
  position: relative;
  cursor: pointer;
}

.anix-burger span,
.anix-burger span::before,
.anix-burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.anix-burger span { top: 10px; }
.anix-burger span::before { top: -8px; }
.anix-burger span::after { top: 8px; }

.anix-burger.open span { background: transparent; }
.anix-burger.open span::before { transform: translateY(8px) rotate(45deg); }
.anix-burger.open span::after { transform: translateY(-8px) rotate(-45deg); }

.anix-mobile-panel {
  background: #1d1d1d;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.anix-mobile-panel.open { max-height: 420px; }

.anix-mobile-panel nav { padding: 10px 20px 26px; }

.anix-mobile-panel a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.anix-mobile-panel a.active { color: #c9a878; }

/* ---------- menu active state ---------- */

.su-menu-3 nav > ul > li > a.active { opacity: 0.65; }

/* ---------- forms (order page, styled like the theme) ---------- */

.anix-form label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 8px;
}

.anix-form input,
.anix-form textarea,
.anix-form select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #d8d2c5;
  background: transparent;
  padding: 12px 2px;
  font-size: 15px;
  color: #1d1d1d;
  outline: none;
  border-radius: 0;
  transition: border-color 0.3s ease;
}

.anix-form input::placeholder,
.anix-form textarea::placeholder { color: #b5ac99; }

.anix-form input:focus,
.anix-form textarea:focus { border-color: #1d1d1d; }

.anix-form textarea { min-height: 110px; resize: vertical; }

.anix-form .row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

@media (max-width: 640px) { .anix-form .row-2 { grid-template-columns: 1fr; } }

.anix-form .form-group { margin-bottom: 22px; }

.field-error { color: #b3402a; font-size: 13px; margin-top: 6px; }

.anix-notice {
  border: 1px solid #d8d2c5;
  background: #faf7f1;
  padding: 20px 26px;
  font-size: 15px;
}

.anix-notice.ok { border-color: #4a6b4a; }

/* honeypot */
.hp { position: absolute; left: -9999px; opacity: 0; }

/* ---------- buttons as <button> (theme styles are for <a>) ---------- */

button.su-btn-4 { border: 1px solid #1d1d1d; }

/* ---------- dress detail ---------- */

.anix-dress-gallery .main-img img { width: 100%; }

.anix-dress-gallery .thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.anix-dress-gallery .thumbs img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.25s ease;
}

.anix-dress-gallery .thumbs img:hover { opacity: 1; }

.anix-dress-info .price {
  font-size: 20px;
  letter-spacing: 0.06em;
  margin: 18px 0 22px;
}

.anix-dress-info .desc { color: #555; white-space: pre-line; margin-bottom: 28px; }

/* placeholder for dresses without a photo */
.anix-no-photo {
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2ede4;
  font-family: "Bodoni Moda", Didot, Georgia, serif;
  font-size: 44px;
  color: #cfc6b5;
}

/* ---------- footer contact list ---------- */

.anix-footer-contact li {
  color: #fff;
  font-size: 14px;
  margin-bottom: 10px;
  list-style: none;
}

.anix-footer-contact li a { color: #fff !important; text-decoration: none; }
.anix-footer-contact li a:hover { color: #fff !important; opacity: 0.75; }

/* ---------- consistent display typography (one serif voice) ---------- */

/* hero slider title + subtitle follow the same system as every section */
.banner-3-item .content .title {
  font-family: var(--anix-serif) !important;
  font-weight: 400 !important;
  letter-spacing: 0.08em !important;
}

.banner-3-item .content .subtitle {
  font-size: 11px !important;
  letter-spacing: 0.5em !important;
  text-indent: 0.5em;
  text-transform: uppercase;
  color: rgba(242, 234, 217, 0.85) !important;
  margin-bottom: 18px;
}

/* editorial block titles (Made to Measure / The Atelier) */
.product-step-15-item .text-content .title {
  font-family: var(--anix-serif) !important;
  font-weight: 400 !important;
  letter-spacing: 0.1em !important;
}

.product-step-15-item .text-content .text { color: var(--anix-muted); line-height: 1.9; }

/* one typographic spec for ALL boxed buttons (theme su-btn-4 included) */
.su-btn-4 {
  font-size: 12px !important;
  letter-spacing: 0.3em !important;
  text-transform: uppercase;
  padding: 15px 28px !important;
}

/* ---------- refined typography: serif section titles site-wide ---------- */

.section-title .kicker {
  font-size: 11px;
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  text-transform: uppercase;
  color: #9a8f7a;
  margin-bottom: 14px;
}

.section-title .title {
  font-family: "Bodoni Moda", Didot, "Bodoni MT", Georgia, serif !important;
  font-weight: 400 !important;
  letter-spacing: 0.12em;
}

/* ---------- dress page: product display (PDP) ---------- */

/* ---------- split-screen product hero ---------- */

.anix-pdp-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  min-height: calc(100vh - var(--anix-header-h, 124px));
}

@media (max-width: 991px) {
  .anix-pdp-hero { grid-template-columns: 1fr; min-height: 0; }
}

/* left: full-bleed media */
.anix-pdp-hero .media {
  position: relative;
  overflow: hidden;
  background: #e9e2d4;
}

@media (max-width: 991px) { .anix-pdp-hero .media { height: 68vh; } }

.anix-pdp-hero .media .swiper-wrapper { height: 100%; }

.anix-pdp-hero .media .swiper-slide {
  height: 100%;
  overflow: hidden;
}

.anix-pdp-hero .media .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 6s ease;
}

.anix-pdp-hero .media:hover .swiper-slide-active img { transform: scale(1.045); }

/* overlay controls */
.anix-g-nav {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  gap: 1px;
  z-index: 6;
}

.anix-g-nav button {
  width: 46px;
  height: 46px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(24, 22, 20, 0.72);
  color: #f2ead9;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.anix-g-nav button:hover { background: #f2ead9; color: #1d1d1d; }
.anix-g-nav svg { width: 14px; height: 14px; fill: currentColor; }

.anix-g-count {
  position: absolute;
  bottom: 30px;
  right: 26px;
  z-index: 6;
  font-family: "Bodoni Moda", Didot, Georgia, serif;
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.14em;
  color: #fff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

/* overlaid mini thumbnails */
.anix-g-thumbs {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 6;
}

.anix-g-thumbs button {
  width: 44px;
  height: 58px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: none;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.anix-g-thumbs button img { width: 100%; height: 100%; object-fit: cover; display: block; }
.anix-g-thumbs button:hover { opacity: 0.85; }
.anix-g-thumbs button.on { opacity: 1; border-color: #fff; border-width: 2px; }

@media (max-width: 767px) { .anix-g-thumbs { display: none; } }

/* right: info panel */
.anix-pdp-hero .panel {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f2ea;
  padding: 70px clamp(26px, 5.5vw, 90px);
}

.anix-pdp-hero .panel-inner { max-width: 470px; width: 100%; }

.anix-pdp-info .kicker {
  font-size: 11px;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: #9a8f7a;
}

.anix-pdp-info .title {
  font-family: "Bodoni Moda", Didot, Georgia, serif;
  font-weight: 400;
  font-size: clamp(30px, 3vw, 44px);
  letter-spacing: 0.05em;
  line-height: 1.15;
  margin: 16px 0 10px;
  color: #1d1d1d;
}

.anix-pdp-info .price {
  font-family: "Bodoni Moda", Didot, Georgia, serif;
  font-style: italic;
  font-size: 19px;
  color: #6b6357;
}

.anix-hairline {
  border: 0;
  height: 1px;
  background: #e7e1d4;
  margin: 28px 0;
  opacity: 1;
}

.anix-pdp-info .lede {
  color: #555;
  font-size: 15px;
  line-height: 1.95;
  letter-spacing: 0.01em;
  white-space: pre-line;
}

.anix-btn-primary {
  display: block;
  width: 100%;
  background: #1d1d1d;
  color: #f2ead9;
  border: 1px solid #1d1d1d;
  text-align: center;
  padding: 17px 20px;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.anix-btn-primary:hover { background: transparent; color: #1d1d1d; }
.anix-btn-primary:disabled { opacity: 0.6; }

.anix-link-quiet {
  display: inline-block;
  margin-top: 20px;
  font-size: 11.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #6b6357;
  text-decoration: none;
  border-bottom: 1px solid #c3b89f;
  padding-bottom: 4px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.anix-link-quiet:hover { color: #1d1d1d; border-color: #1d1d1d; }

/* ---------- product card (Anix design) ---------- */

.anix-card { display: block; text-decoration: none; }

.anix-card .frame {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f2ede4;
}

.anix-card .frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s ease, transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.anix-card .frame .alt { opacity: 0; }

.anix-card:hover .frame img { transform: scale(1.05); }
.anix-card:hover .frame .alt { opacity: 1; }

.anix-card .frame .tag {
  position: absolute;
  left: 0;
  bottom: 16px;
  z-index: 2;
  background: rgba(24, 22, 20, 0.82);
  color: #f2ead9;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  text-transform: uppercase;
  padding: 8px 14px 8px 18px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.anix-card:hover .frame .tag { opacity: 1; transform: none; }

.anix-card .info { padding: 16px 2px 0; text-align: center; }

.anix-card .info .name {
  font-family: var(--anix-serif);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--anix-ink);
  margin: 0 0 5px;
  transition: color 0.3s ease;
}

.anix-card:hover .info .name { color: var(--anix-gold-deep); }

.anix-card .info .price {
  font-family: var(--anix-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--anix-muted);
}

/* ---------- footer polish ---------- */

.footer_one .footer_qlink_widget .title,
.footer_one .mailchimp_widget .title {
  font-size: 11px !important;
  letter-spacing: 0.4em !important;
}

.footer_one .list-white li a { transition: color 0.3s ease; }
.footer_one .list-white li a:hover { color: var(--anix-gold) !important; }
.anix-footer-contact li a:hover { color: var(--anix-gold) !important; opacity: 1; }

/* ---------- dress page: size selection ---------- */

.anix-size-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--anix-muted);
  margin-bottom: 12px;
}

.anix-size-label .picked { color: var(--anix-ink); }

.anix-sizes { display: flex; flex-wrap: wrap; gap: 10px; }

.anix-sizes button {
  min-width: 46px;
  height: 46px;
  padding: 0 14px;
  border: 1px solid #d8d2c5;
  background: transparent;
  border-radius: 999px;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--anix-ink);
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.anix-sizes button:hover { border-color: var(--anix-ink); }

.anix-sizes button.on {
  background: var(--anix-ink);
  border-color: var(--anix-ink);
  color: #f2ead9;
}

.anix-custom-meas { margin-top: 14px; }

.anix-custom-meas textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #d8d2c5;
  background: transparent;
  padding: 10px 2px;
  font-size: 14.5px;
  color: var(--anix-ink);
  min-height: 64px;
  resize: vertical;
  outline: none;
}

.anix-custom-meas textarea:focus { border-color: var(--anix-ink); }
.anix-custom-meas textarea::placeholder { color: #b5ac99; }

.anix-size-error { color: #b3402a; font-size: 13px; margin-top: 10px; }

/* ---------- dress page: accordions ---------- */

.anix-acc { border-top: 1px solid var(--anix-line); }
.anix-acc:last-of-type { border-bottom: 1px solid var(--anix-line); }

.anix-acc summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 2px;
  font-size: 11.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--anix-ink);
}

.anix-acc summary::-webkit-details-marker { display: none; }

.anix-acc summary::after {
  content: "+";
  font-size: 16px;
  color: var(--anix-muted);
  transition: transform 0.25s ease;
}

.anix-acc[open] summary::after { content: "\2212"; }

.anix-acc .acc-body {
  padding: 2px 2px 18px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--anix-muted);
  white-space: pre-line;
}

.anix-size-table { width: 100%; border-collapse: collapse; font-size: 13px; margin-bottom: 12px; }

.anix-size-table th,
.anix-size-table td {
  border: 1px solid var(--anix-line);
  padding: 8px 10px;
  text-align: center;
  color: var(--anix-ink);
}

.anix-size-table th {
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--anix-muted);
  background: #f2ede4;
}

/* toast after adding to bag */
.anix-added-note { color: #3c6b45; font-size: 13.5px; margin-top: 12px; }

/* ---------- header bag + cart drawer ---------- */

.anix-bag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.72);
  background: none;
  border: 0;
  padding: 0;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  height: 13px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.anix-bag:hover { color: #d8c49a; }
.anix-bag svg { width: 12px; height: 12px; fill: currentColor; }
.anix-bag .n { color: #d8c49a; }

.anix-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 13, 11, 0.55);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.anix-drawer-overlay.open { opacity: 1; pointer-events: auto; }

.anix-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 92vw);
  background: #f7f2ea;
  z-index: 95;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
}

.anix-drawer.open { transform: none; }

.anix-drawer .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  border-bottom: 1px solid var(--anix-line);
}

.anix-drawer .head h4 {
  font-family: var(--anix-serif);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.14em;
  margin: 0;
}

.anix-drawer .head button {
  background: none;
  border: 0;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: var(--anix-ink);
}

.anix-drawer .items { flex: 1; overflow-y: auto; padding: 18px 26px; }

.anix-drawer .item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--anix-line);
}

.anix-drawer .item img { width: 62px; height: 82px; object-fit: cover; }

.anix-drawer .item .inf { flex: 1; min-width: 0; }

.anix-drawer .item .nm {
  font-family: var(--anix-serif);
  font-size: 15.5px;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
}

.anix-drawer .item .sz { font-size: 12.5px; color: var(--anix-muted); }
.anix-drawer .item .pr { font-family: var(--anix-serif); font-style: italic; font-size: 13.5px; color: var(--anix-muted); margin-top: 3px; }

.anix-drawer .item .rm {
  background: none;
  border: 0;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9a4632;
  cursor: pointer;
  padding: 0;
  margin-top: 6px;
}

.anix-drawer .foot { padding: 20px 26px 26px; border-top: 1px solid var(--anix-line); }

.anix-drawer .sub {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.anix-drawer .note { font-size: 12.5px; color: var(--anix-muted); margin-top: 10px; text-align: center; }

.anix-drawer .empty { color: var(--anix-muted); text-align: center; padding: 40px 0; }

/* ---------- dress page: marketing blocks ---------- */

/* sticky info column while the gallery scrolls */
@media (min-width: 992px) {
  .anix-sticky-info { position: sticky; top: 170px; }
}

/* value-prop list - quiet, no boxy borders */
.anix-value-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.anix-value-list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 7px 0;
  font-size: 13.5px;
  letter-spacing: 0.03em;
  line-height: 1.7;
  color: #6b6357;
}

.anix-value-list li::before {
  content: "—";
  color: #c3b89f;
  flex-shrink: 0;
}

/* subtle scarcity note */
.anix-urgency {
  font-size: 13px;
  font-style: italic;
  color: #9a8f7a;
  margin-top: 18px;
}

/* dark marquee band */
.anix-marquee {
  background: #1d1d1d;
  overflow: hidden;
  padding: 26px 0;
  white-space: nowrap;
}

.anix-marquee .track {
  display: inline-block;
  animation: anix-marquee 28s linear infinite;
}

.anix-marquee span {
  font-family: "Bodoni Moda", Didot, Georgia, serif;
  font-style: italic;
  font-size: 22px;
  letter-spacing: 0.14em;
  color: #f2ead9;
  padding: 0 34px;
}

.anix-marquee .dot { color: #8b7c5f; font-style: normal; }

@keyframes anix-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* mini how-it's-made steps */
.anix-mini-steps { text-align: center; }

.anix-mini-steps .num {
  font-family: "Bodoni Moda", Didot, Georgia, serif;
  font-style: italic;
  font-size: 30px;
  color: #b9ae99;
  margin-bottom: 8px;
}

.anix-mini-steps h5 { letter-spacing: 0.14em; margin-bottom: 8px; font-size: 15px; }
.anix-mini-steps p { color: #777; font-size: 14px; }

/* sticky mobile CTA bar */
.anix-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: rgba(24, 22, 20, 0.97);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 18px;
}

@media (max-width: 991px) { .anix-cta-bar { display: flex; } }

.anix-cta-bar .info { min-width: 0; }

.anix-cta-bar .name {
  font-family: "Bodoni Moda", Didot, Georgia, serif;
  font-size: 15px;
  letter-spacing: 0.08em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.anix-cta-bar .price { font-size: 12px; color: rgba(255,255,255,0.65); letter-spacing: 0.06em; }

.anix-cta-bar button,
.anix-cta-bar a:not(.info a) {
  flex-shrink: 0;
  background: #f2ead9;
  color: #1d1d1d;
  border: 0;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px 20px;
  cursor: pointer;
  text-decoration: none;
}

/* ---------- dress page: lookbook & video ---------- */

.anix-lookbook .story {
  max-width: 720px;
  margin: 0 auto 70px;
  text-align: center;
  font-family: "Bodoni Moda", Didot, Georgia, serif;
  font-size: 21px;
  line-height: 1.75;
  font-style: italic;
  color: #3a352e;
  white-space: pre-line;
}

.anix-lookbook .story::before {
  content: "";
  display: block;
  width: 64px;
  height: 1px;
  background: #b9ae99;
  margin: 0 auto 34px;
}

.anix-lookbook .photo { overflow: hidden; }

.anix-lookbook .photo img {
  width: 100%;
  display: block;
  transition: transform 1.2s ease;
}

.anix-lookbook .photo:hover img { transform: scale(1.03); }

.anix-lookbook .caption {
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #9a8f7a;
  text-align: center;
  margin-top: 14px;
}

.anix-video {
  background: #1d1d1d;
  padding: 90px 0;
}

.anix-video .video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.anix-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.anix-video .kicker {
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(242, 234, 217, 0.55);
  text-align: center;
  margin-bottom: 14px;
}

.anix-video h3 {
  font-family: "Bodoni Moda", Didot, Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #f2ead9;
  text-align: center;
  margin-bottom: 50px;
  font-size: 30px;
}

/* compact editorial image (made-to-measure block) */
.anix-mtm-img {
  max-width: 380px;
  margin: 0 auto;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.anix-mtm-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* serif italic lede used in editorial splits */
.anix-story-text {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--anix-serif);
  font-size: 21px;
  line-height: 1.75;
  font-style: italic;
  color: #3a352e;
}

.anix-story-text::before {
  content: "";
  display: block;
  width: 64px;
  height: 1px;
  background: #b9ae99;
  margin: 0 auto 30px;
}

/* ---------- about page ---------- */

.anix-step-num {
  font-family: "Bodoni Moda", Didot, Georgia, serif;
  font-style: italic;
  font-size: 34px;
  color: #b9ae99;
  margin-bottom: 10px;
}

.anix-about-socials a {
  width: 48px;
  height: 48px;
  border: 1px solid #d8d2c5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1d1d1d;
  transition: background 0.3s ease, color 0.3s ease;
}

.anix-about-socials a:hover { background: #1d1d1d; color: #fff; }
.anix-about-socials svg { width: 18px; height: 18px; fill: currentColor; }

/* stronger hero overlay so white text stays legible over bright photos */
.banner-3-item .overly {
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 30%, rgba(0, 0, 0, 0.55) 100%) !important;
}

/* ---------- map (about page) ---------- */

.anix-map {
  position: relative;
  overflow: hidden;
  border: 1px solid #e7e1d4;
}

.anix-map iframe {
  display: block;
  width: 100%;
  height: 600px;
  border: 0;
}

@media (max-width: 767px) { .anix-map iframe { height: 420px; } }

/* hide theme leftovers we don't use */
.preloader { display: none !important; }

/* ---------- upload control (Order Your Own Dress) ---------- */
.anix-upload {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1px dashed rgba(26, 23, 20, 0.35);
  background: transparent;
  color: #1a1714;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}
.anix-upload:hover {
  border-color: var(--anix-gold-deep);
  background: rgba(216, 196, 154, 0.14);
}
.anix-upload-hint {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--anix-muted);
}
.anix-upload-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.anix-upload-chips .chip {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(26, 23, 20, 0.12);
  background: #fff;
  padding: 6px 10px 6px 6px;
  max-width: 230px;
}
.anix-upload-chips .chip img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  display: block;
}
.anix-upload-chips .chip .vid {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1714;
  color: #fff;
  font-size: 11px;
  flex-shrink: 0;
}
.anix-upload-chips .chip .nm {
  font-size: 12px;
  color: var(--anix-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.anix-upload-chips .chip button {
  border: 0;
  background: none;
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  color: var(--anix-muted);
  padding: 2px 4px;
}
.anix-upload-chips .chip button:hover {
  color: #1a1714;
}

/* ---------- "my measurements" fields ---------- */
.anix-meas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 4px;
}
.anix-meas-grid label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--anix-muted);
  margin-bottom: 2px;
}
.anix-meas-grid input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #d8d2c5;
  background: transparent;
  padding: 8px 2px;
  font-size: 14.5px;
  color: var(--anix-ink);
  outline: none;
  -moz-appearance: textfield;
}
.anix-meas-grid input::-webkit-outer-spin-button,
.anix-meas-grid input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.anix-meas-grid input:focus { border-color: var(--anix-ink); }

/* ---------- delivery & returns policy text ---------- */
.anix-policy p { margin: 0 0 10px; }
.anix-policy .q {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--anix-ink);
  margin: 20px 0 6px;
  font-weight: 600;
}
.anix-policy .q:first-child { margin-top: 4px; }

/* ---------- client account pages ---------- */
.anix-auth-wrap { padding: 90px 20px 120px; }
.anix-auth { max-width: 780px; margin: 0 auto; }
.anix-auth.narrow { max-width: 440px; }
.anix-auth .kicker {
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--anix-gold-deep);
  margin-bottom: 14px;
}
.anix-auth h1 {
  font-family: var(--anix-serif);
  font-size: clamp(34px, 4.6vw, 52px);
  color: var(--anix-ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.anix-auth .lede {
  color: var(--anix-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 560px;
}
.anix-auth-switch { margin-top: 26px; font-size: 14px; color: var(--anix-muted); }
.anix-auth-switch a {
  color: var(--anix-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.anix-auth-switch a:hover { color: var(--anix-gold-deep); }
.g-recaptcha { margin-top: 6px; }

.anix-account-block {
  border: 1px solid var(--anix-line);
  background: #fff;
  padding: 28px 30px;
  margin: 26px 0;
}
.anix-account-block h3 {
  font-family: var(--anix-serif);
  font-size: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--anix-ink);
}
.muted-note { color: var(--anix-muted); font-size: 14px; margin: 0; }

.anix-profile { margin: 0; }
.anix-profile > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px solid var(--anix-line);
}
.anix-profile > div:last-child { border-bottom: 0; }
.anix-profile dt {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--anix-muted);
  padding-top: 3px;
}
.anix-profile dd { margin: 0; font-size: 14.5px; color: var(--anix-ink); }

@media (max-width: 575px) {
  .anix-form .row-2 { grid-template-columns: 1fr; }
  .anix-profile > div { grid-template-columns: 1fr; gap: 2px; }
}

/* ---------- auth pages: vertical split with sticky image ---------- */
.anix-auth-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  min-height: calc(100vh - var(--anix-header-h, 124px));
}
.anix-auth-split .media {
  position: sticky;
  top: var(--anix-header-h, 124px);
  height: calc(100vh - var(--anix-header-h, 124px));
  overflow: hidden;
  background: #e9e2d4;
}
.anix-auth-split .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.anix-auth-split .panel {
  padding: 76px clamp(26px, 6vw, 110px) 110px;
}
.anix-auth-split .panel.center {
  display: flex;
  align-items: center;
}
.anix-auth-split .panel.center > .anix-auth { width: 100%; }
.anix-auth-split .anix-auth { margin: 0; max-width: 640px; }
.anix-auth-split .anix-auth.narrow { max-width: 440px; }

@media (max-width: 991px) {
  .anix-auth-split { grid-template-columns: 1fr; min-height: 0; }
  .anix-auth-split .media { position: static; height: 42vh; }
  .anix-auth-split .panel { padding: 46px 22px 84px; }
}

/* the theme wrapper's overflow:hidden kills position:sticky (auth image column);
   clip the x-axis only - same horizontal protection, sticky keeps working */
.wrapper.ovh {
  overflow: hidden;
  overflow-x: clip;
  overflow-y: visible;
}

/* ---------- account: block heads, order list, statuses ---------- */
.anix-account-block .block-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.muted-note a { color: var(--anix-ink); text-decoration: underline; text-underline-offset: 3px; }

.anix-order-list { display: flex; flex-direction: column; }
.anix-order-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--anix-line);
  color: inherit;
}
.anix-order-row:last-child { border-bottom: 0; }
.anix-order-row:hover .nm { color: var(--anix-gold-deep); }
.anix-order-row .thumb {
  width: 52px;
  height: 68px;
  flex-shrink: 0;
  background: #efe9dd;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.anix-order-row .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.anix-order-row .thumb .mono { font-family: var(--anix-serif); font-size: 22px; color: #c9bda3; }
.anix-order-row .inf { flex: 1; min-width: 0; }
.anix-order-row .nm { font-size: 15px; color: var(--anix-ink); transition: color 0.25s; }
.anix-order-row .dt { font-size: 12.5px; color: var(--anix-muted); margin-top: 2px; }

.anix-status {
  flex-shrink: 0;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--anix-line);
  color: var(--anix-muted);
  background: #fff;
  white-space: nowrap;
}
.anix-status.lg { font-size: 11px; padding: 7px 16px; }
.anix-status.new { border-color: var(--anix-gold-deep); color: var(--anix-gold-deep); }
.anix-status.in_progress { border-color: #1c1a17; color: #1c1a17; }
.anix-status.completed { border-color: #4c7a4c; color: #4c7a4c; }
.anix-status.cancelled { border-color: #b3402a; color: #b3402a; }

.anix-order-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.anix-order-head h1 { margin-bottom: 0; }
.anix-order-head .kicker { margin-bottom: 8px; }

/* ---------- order message thread ---------- */
.anix-thread { display: flex; flex-direction: column; gap: 14px; margin-bottom: 8px; }
.anix-thread .msg { max-width: 82%; }
.anix-thread .msg.mine { align-self: flex-end; text-align: right; }
.anix-thread .msg .who {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--anix-muted);
  margin-bottom: 4px;
}
.anix-thread .msg .body {
  display: inline-block;
  text-align: left;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.7;
  white-space: pre-line;
  background: #f3eee4;
  color: var(--anix-ink);
}
.anix-thread .msg.mine .body { background: #1c1a17; color: #f5f1e9; }
.anix-thread .msg .when { font-size: 11px; color: #b5ac99; margin-top: 4px; }

.anix-composer { margin-top: 18px; }
.anix-composer textarea {
  width: 100%;
  border: 1px solid var(--anix-line);
  background: #fff;
  padding: 12px 14px;
  font-size: 14px;
  min-height: 84px;
  resize: vertical;
  outline: none;
}
.anix-composer textarea:focus { border-color: var(--anix-ink); }
.anix-composer button { margin-top: 12px; }

.anix-attach-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.anix-attach-grid img { width: 84px; height: 84px; object-fit: cover; display: block; }
.anix-attach-grid video { width: 180px; max-height: 120px; background: #000; }

.mt10 { margin-top: 10px; }
.mt20 { margin-top: 20px; }

/* ---------- account: editorial redesign ---------- */
.anix-account-page { padding: 72px 20px 120px; }
.anix-account-page .wrap { max-width: 1140px; margin: 0 auto; }
.anix-account-page .wrap.narrow { max-width: 860px; }

.acc-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  margin: 10px 0 30px;
}
.acc-head .kicker {
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--anix-gold-deep);
  margin-bottom: 12px;
}
.acc-head h1 {
  font-family: var(--anix-serif);
  font-size: clamp(32px, 4.4vw, 50px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--anix-ink);
  margin: 0;
}
.acc-head .sub { margin: 10px 0 0; font-size: 13.5px; color: var(--anix-muted); letter-spacing: 0.04em; }
.acc-head.order { margin-top: 26px; }

.acc-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 28px;
  align-items: start;
}
@media (max-width: 991px) { .acc-grid { grid-template-columns: 1fr; } }

.acc-panel {
  background: #fff;
  border: 1px solid var(--anix-line);
  padding: 30px 32px 34px;
}
.anix-account-page .acc-panel + .acc-panel { margin-top: 26px; }

.acc-panel .panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.acc-panel .panel-head .pk {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--anix-gold-deep);
  margin: 0 0 6px;
}
.acc-panel .panel-head h3 {
  font-family: var(--anix-serif);
  font-size: 21px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--anix-ink);
  margin: 0;
}
.acc-panel .panel-head .count {
  width: 30px;
  height: 30px;
  border: 1px solid var(--anix-line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--anix-muted);
  flex-shrink: 0;
}

.acc-empty { padding: 18px 0 6px; }
.acc-empty p { color: var(--anix-muted); font-size: 14.5px; line-height: 1.8; max-width: 420px; }
.acc-empty .btns { display: flex; align-items: center; gap: 22px; margin-top: 22px; flex-wrap: wrap; }

/* profile card */
.acc-panel.profile .avatar {
  width: 76px;
  height: 76px;
  border: 1px solid var(--anix-gold-deep);
  border-radius: 50%;
  margin: 4px auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--anix-serif);
  font-size: 26px;
  letter-spacing: 0.08em;
  color: var(--anix-gold-deep);
}
.acc-panel.profile .pname {
  font-family: var(--anix-serif);
  font-size: 21px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  color: var(--anix-ink);
  margin: 0;
}
.acc-panel.profile .phandle {
  text-align: center;
  font-size: 12.5px;
  color: var(--anix-muted);
  letter-spacing: 0.08em;
  margin: 6px 0 18px;
}
.acc-panel.profile .anix-hairline { margin: 18px 0; }

.acc-info { margin: 0; }
.acc-info > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 7px 0;
}
.acc-info dt {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--anix-muted);
  flex-shrink: 0;
}
.acc-info dd { margin: 0; font-size: 13.5px; color: var(--anix-ink); text-align: right; word-break: break-word; }
.acc-info.wide > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--anix-line);
}
.acc-info.wide > div:last-child { border-bottom: 0; }
.acc-info.wide dd { text-align: left; font-size: 14.5px; line-height: 1.7; }
.acc-info.wide dd a { color: var(--anix-ink); text-decoration: underline; text-underline-offset: 3px; }
.acc-info.wide dd a:hover { color: var(--anix-gold-deep); }

.mini-title {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--anix-gold-deep);
  margin: 0 0 12px;
}

.acc-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.acc-stats .stat {
  border: 1px solid var(--anix-line);
  padding: 12px 4px 10px;
  text-align: center;
}
.acc-stats .stat .v {
  font-family: var(--anix-serif);
  font-size: 20px;
  color: var(--anix-ink);
  line-height: 1;
}
.acc-stats .stat .v .u { font-family: inherit; font-size: 10px; color: var(--anix-muted); letter-spacing: 0.06em; }
.acc-stats .stat .l {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--anix-muted);
  margin-top: 6px;
}
.acc-notes { font-size: 12.5px; color: var(--anix-muted); font-style: italic; margin: 12px 0 0; line-height: 1.7; }

.acc-edit {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 13px 10px;
  background: transparent;
  border: 1px solid var(--anix-ink);
  color: var(--anix-ink);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.acc-edit:hover { background: var(--anix-ink); color: #f5f1e9; }

.acc-edit-form .row-2 { gap: 16px; }
.acc-edit-actions { display: flex; align-items: center; gap: 18px; margin-top: 6px; }

/* status progress tracker */
.anix-steps { display: flex; margin: 6px 0 34px; }
.anix-steps .st { flex: 1; text-align: center; position: relative; }
.anix-steps .st::before {
  content: '';
  position: absolute;
  top: 7px;
  left: -50%;
  width: 100%;
  height: 1px;
  background: var(--anix-line);
}
.anix-steps .st:first-child::before { display: none; }
.anix-steps .dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid #cfc6b2;
  background: #fff;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.anix-steps .st.done .dot,
.anix-steps .st.on .dot { background: var(--anix-gold-deep); border-color: var(--anix-gold-deep); }
.anix-steps .st.done::before,
.anix-steps .st.on::before { background: var(--anix-gold-deep); }
.anix-steps .lbl {
  display: block;
  margin-top: 9px;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--anix-muted);
}
.anix-steps .st.on .lbl { color: var(--anix-ink); font-weight: 600; }

/* order rows: refined */
.anix-order-row { gap: 18px; padding: 16px 0; }
.anix-order-row .thumb { width: 60px; height: 80px; }
.anix-order-row .chev { color: #c9bda3; font-size: 20px; line-height: 1; flex-shrink: 0; }

/* ---------- account v3: membership band + editorial sections ---------- */
.acc-hero {
  background: #171412;
  color: #f5f1e9;
  padding: 52px 20px 48px;
  border-bottom: 1px solid rgba(216, 196, 154, 0.35);
}
.acc-hero .wrap { max-width: 1140px; margin: 0 auto; }
.acc-hero-inner { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.acc-hero .avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 1px solid var(--anix-gold);
  color: var(--anix-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--anix-serif);
  font-size: 30px;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
.acc-hero .kicker {
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--anix-gold);
  margin: 0 0 10px;
}
.acc-hero h1 {
  font-family: var(--anix-serif);
  font-size: clamp(28px, 3.8vw, 44px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #f5f1e9;
  margin: 0;
  line-height: 1.1;
}
.acc-hero .sub { margin: 9px 0 0; font-size: 12.5px; color: #a99f8e; letter-spacing: 0.06em; }
.acc-hero .spacer { flex: 1; }
.acc-hero .hstats { display: flex; }
.acc-hero .hs { padding: 0 32px; border-left: 1px solid rgba(245, 241, 233, 0.14); text-align: center; }
.acc-hero .hs:first-child { border-left: 0; }
.acc-hero .hs .v {
  display: block;
  font-family: var(--anix-serif);
  font-size: 36px;
  line-height: 1;
  color: var(--anix-gold);
}
.acc-hero .hs .l {
  display: block;
  margin-top: 9px;
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #a99f8e;
}
.acc-hero .logout {
  background: none;
  border: 0;
  border-bottom: 1px solid rgba(169, 159, 142, 0.45);
  color: #a99f8e;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 2px 0;
  margin-left: 18px;
  transition: color 0.3s, border-color 0.3s;
}
.acc-hero .logout:hover { color: var(--anix-gold); border-color: var(--anix-gold); }
.acc-hero .backlink {
  display: inline-block;
  margin-bottom: 24px;
  color: #a99f8e;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.acc-hero .backlink:hover { color: var(--anix-gold); }

.anix-status.ghost {
  background: transparent;
  border-color: rgba(245, 241, 233, 0.35);
  color: #f5f1e9;
}
.anix-status.ghost.completed { border-color: #7fae7f; color: #a8cba8; }
.anix-status.ghost.cancelled { border-color: #cf7b66; color: #e3a493; }

.anix-steps.dark { margin: 38px 0 0; max-width: 660px; }
.anix-steps.dark .dot { background: transparent; border-color: #4a443c; }
.anix-steps.dark .st::before { background: #4a443c; }
.anix-steps.dark .st.done .dot,
.anix-steps.dark .st.on .dot { background: var(--anix-gold); border-color: var(--anix-gold); }
.anix-steps.dark .st.done::before,
.anix-steps.dark .st.on::before { background: var(--anix-gold); }
.anix-steps.dark .lbl { color: #8b8171; }
.anix-steps.dark .st.on .lbl { color: #f5f1e9; }

/* content below the band */
.acc-content { padding: 64px 20px 130px; }
.acc-content .wrap { max-width: 1140px; margin: 0 auto; }
.acc-content .wrap.narrow { max-width: 860px; }
.acc-cols {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 60px;
  align-items: start;
}
@media (max-width: 991px) { .acc-cols { grid-template-columns: 1fr; gap: 46px; } }

.acc-sec + .acc-sec { margin-top: 60px; }
.acc-sec-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  border-bottom: 1px solid var(--anix-ink);
  padding-bottom: 16px;
  margin-bottom: 10px;
}
.acc-sec-head .pk {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--anix-gold-deep);
  margin: 0 0 8px;
}
.acc-sec-head h3 {
  font-family: var(--anix-serif);
  font-size: 25px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--anix-ink);
  margin: 0;
}
.acc-sec-head .count {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--anix-muted);
}

/* order rows, open editorial style */
.anix-order-row { padding: 24px 0; gap: 24px; }
.anix-order-row .thumb { width: 74px; height: 98px; }
.anix-order-row .thumb img { transition: transform 0.6s ease; }
.anix-order-row:hover .thumb img { transform: scale(1.07); }
.anix-order-row .nm { font-family: var(--anix-serif); font-size: 19px; letter-spacing: 0.05em; }
.anix-order-row .dt {
  margin-top: 7px;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.anix-order-row .chev {
  font-size: 20px;
  color: #c9bda3;
  transition: transform 0.3s, color 0.3s;
}
.anix-order-row:hover .chev { transform: translateX(6px); color: var(--anix-gold-deep); }

.acc-empty { padding: 34px 0 10px; }
.acc-empty .line {
  font-family: var(--anix-serif);
  font-size: 21px;
  line-height: 1.6;
  color: var(--anix-ink);
  max-width: 460px;
}
.acc-empty .btns { display: flex; align-items: center; gap: 24px; margin-top: 26px; flex-wrap: wrap; }

/* measurement card: double frame */
.acc-card { background: #fff; border: 1px solid var(--anix-line); padding: 9px; }
.acc-card .in { border: 1px solid #ddd2b8; padding: 30px 28px 32px; }
.acc-card .card-title {
  font-family: var(--anix-serif);
  font-size: 17px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  color: var(--anix-ink);
  margin: 0 0 20px;
}
.acc-card .card-title.sm { font-size: 12px; letter-spacing: 0.26em; margin: 20px 0 14px; color: var(--anix-gold-deep); }
.acc-card .anix-hairline { margin: 18px 0 0; }
.acc-card .acc-edit { margin-top: 24px; }

/* account area: buttons are inline with consistent dimensions
   (the full-width variant is for product/auth form CTAs only) */
.acc-content .anix-btn-primary {
  display: inline-block;
  width: auto;
  padding: 14px 36px;
  font-size: 11px;
  letter-spacing: 0.24em;
}
.acc-content .anix-link-quiet { margin-top: 0; }
.acc-edit {
  font-size: 11px;
  letter-spacing: 0.24em;
  padding: 14px 10px;
}

/* the theme's "body.*-type h1/h3" rules outrank single-class selectors and
   silently swap our serif headings to Plus Jakarta Sans - reassert with
   two-class specificity */
.acc-hero .id h1,
.acc-content .acc-sec-head h3,
.acc-card .in .card-title,
.anix-auth-split .anix-auth h1,
.anix-auth-wrap .anix-auth h1 {
  font-family: var(--anix-serif);
}

/* ---------- ONE button system for the account area ----------
   Every button shares the exact same height and typography;
   only the fill differs: solid, outline, or light (on dark). */
.acc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 34px;
  background: #1d1d1d;
  color: #f2ead9;
  border: 1px solid #1d1d1d;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.acc-btn:hover { background: transparent; color: #1d1d1d; }
.acc-btn.outline { background: transparent; color: #1d1d1d; }
.acc-btn.outline:hover { background: #1d1d1d; color: #f2ead9; }
.acc-btn.light {
  background: transparent;
  border-color: rgba(245, 241, 233, 0.4);
  color: #f5f1e9;
}
.acc-btn.light:hover { border-color: var(--anix-gold); color: var(--anix-gold); background: transparent; }
.acc-btn:disabled { opacity: 0.55; cursor: default; }
.acc-hero .acc-btn { margin-left: 22px; }
.acc-edit-actions { gap: 12px; }

/* status pills become rounded chips - clearly labels, not buttons
   (echoing the round size pills on the dress page) */
.anix-status {
  border: 0;
  border-radius: 999px;
  padding: 7px 15px;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  background: #eae3d3;
  color: #6b6357;
}
.anix-status.lg { font-size: 10.5px; padding: 9px 20px; }
.anix-status.new { background: rgba(154, 130, 86, 0.16); color: var(--anix-gold-deep); }
.anix-status.contacted { background: #eae3d3; color: #6b6357; }
.anix-status.in_progress { background: rgba(29, 29, 29, 0.09); color: #1d1d1d; }
.anix-status.completed { background: rgba(76, 122, 76, 0.14); color: #43703f; }
.anix-status.cancelled { background: rgba(179, 64, 42, 0.12); color: #ab4029; }
.anix-status.ghost { background: rgba(245, 241, 233, 0.14); color: #f5f1e9; }
.anix-status.ghost.completed { background: rgba(127, 174, 127, 0.22); color: #b6d4b6; }
.anix-status.ghost.cancelled { background: rgba(207, 123, 102, 0.2); color: #e3a493; }

/* center the edit-form actions in the profile card */
.acc-edit-actions { justify-content: center; margin-top: 12px; }

.anix-meas-prefill {
  font-size: 12px;
  color: var(--anix-gold-deep);
  margin: 8px 0 0;
  font-style: italic;
}

/* ---------- checkout ---------- */
.acc-cols.checkout { grid-template-columns: minmax(0, 1fr) 400px; }
@media (max-width: 991px) { .acc-cols.checkout { grid-template-columns: 1fr; } }

.anix-ship { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.ship-opt {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: left;
  background: #fff;
  border: 1px solid var(--anix-line);
  padding: 16px 20px;
  cursor: pointer;
  transition: border-color 0.25s;
}
.ship-opt:hover { border-color: #b9ac8d; }
.ship-opt.on { border-color: var(--anix-ink); }
.ship-opt .dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid #cfc6b2;
  flex-shrink: 0;
  transition: all 0.25s;
}
.ship-opt.on .dot { border-color: var(--anix-gold-deep); box-shadow: inset 0 0 0 4px var(--anix-gold-deep); }
.ship-opt .lbl { flex: 1; font-size: 14px; color: var(--anix-ink); }
.ship-opt .lbl em {
  display: block;
  font-style: normal;
  font-size: 12px;
  color: var(--anix-muted);
  margin-top: 3px;
}
.ship-opt .cost {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--anix-gold-deep);
  white-space: nowrap;
}

.anix-cc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  margin-top: 18px;
  transition: opacity 0.3s;
}
.anix-cc-grid .cc-field.full { grid-column: 1 / -1; }
.anix-cc-grid label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 8px;
}
.cc-box {
  border: 1px solid var(--anix-line);
  background: #fff;
  min-height: 48px;
  padding: 2px 10px;
}
.acc-btn.pay { margin-top: 26px; }
.anix-pay-note { font-size: 12px; color: var(--anix-muted); margin: 14px 0 0; }

.co-items { display: flex; flex-direction: column; }
.co-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--anix-line);
}
.co-item:first-child { padding-top: 4px; }
.co-item img, .co-item .ph {
  width: 54px;
  height: 72px;
  object-fit: cover;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #efe9dd;
  font-family: var(--anix-serif);
  color: #c9bda3;
  font-size: 20px;
}
.co-item .inf { flex: 1; min-width: 0; }
.co-item .nm { font-size: 14.5px; color: var(--anix-ink); }
.co-item .sz { font-size: 12px; color: var(--anix-muted); margin-top: 3px; }
.co-item .rm {
  background: none;
  border: 0;
  padding: 0;
  margin-top: 6px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b3402a;
  cursor: pointer;
  border-bottom: 1px solid rgba(179, 64, 42, 0.35);
}
.co-item .pr { font-size: 13.5px; color: var(--anix-ink); white-space: nowrap; }

.co-totals { margin-top: 16px; }
.co-totals > div {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 13.5px;
  color: var(--anix-muted);
}
.co-totals .grand {
  border-top: 1px solid var(--anix-ink);
  margin-top: 8px;
  padding-top: 13px;
  font-size: 15px;
  color: var(--anix-ink);
}
.co-totals .grand span:last-child { font-family: var(--anix-serif); font-size: 19px; }

.cc-box input {
  width: 100%;
  height: 44px;
  border: 0;
  background: transparent;
  outline: none;
  font-size: 15px;
  color: var(--anix-ink);
}
.cc-box input::placeholder { color: #b5ac99; }

/* ---------- refined side cards: single frame, stacked rows ----------
   (details card on /account and the order summary at checkout) */
.acc-card { padding: 28px 30px 32px; }
.acc-card .in { border: 0; padding: 0; }
.acc-card .in .card-title {
  text-align: left;
  font-size: 18px;
  letter-spacing: 0.1em;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--anix-ink);
  margin: 0 0 4px;
}
.acc-card .in .card-title.sm {
  border-bottom: 0;
  padding-bottom: 0;
  margin: 26px 0 14px;
  font-size: 12px;
  letter-spacing: 0.26em;
  color: var(--anix-gold-deep);
}
.acc-info > div {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--anix-line);
}
.acc-info > div:last-child { border-bottom: 0; }
.acc-info dt { margin-bottom: 4px; }
.acc-info dd { text-align: left; font-size: 14px; line-height: 1.6; }
.acc-stats .stat { border: 0; background: #f6f1e7; padding: 13px 4px 11px; }

/* ---------- agreed-price banner on the client order page ---------- */
.acc-pay-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: #171412;
  color: #f5f1e9;
  padding: 26px 30px;
  margin-bottom: 46px;
  border: 1px solid rgba(216, 196, 154, 0.4);
}
.acc-pay-banner .mini-title { color: var(--anix-gold); margin-bottom: 8px; }
.acc-pay-banner .amount {
  font-family: var(--anix-serif);
  font-size: 30px;
  line-height: 1;
  margin: 0 0 8px;
  color: #f5f1e9;
}
.acc-pay-banner .note { font-size: 13px; color: #a99f8e; margin: 0; max-width: 440px; }
.acc-pay-banner .acc-btn {
  background: var(--anix-gold);
  border-color: var(--anix-gold);
  color: #171412;
}
.acc-pay-banner .acc-btn:hover { background: transparent; color: var(--anix-gold); }

.anix-order-row .pay-due { color: var(--anix-gold-deep); }

/* POK Payments card form container - the form itself is scoped under
   #pok-payment-container; keep it fluid inside our checkout column */
.anix-pok { margin-top: 4px; }
.anix-pok #pok-payment-container { max-width: 100%; width: 100%; }

/* total line above the payment form */
.anix-pay-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 2px 18px;
  font-size: 14px;
  color: var(--anix-ink);
}
.anix-pay-total span:last-child { font-family: var(--anix-serif); font-size: 21px; }

.anix-pay-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.anix-pay-actions .acc-btn { margin-top: 26px; }
.acc-btn.pay-cancel {
  display: flex;
  width: 100%;
  margin-top: 10px;
}


.anix-pay-loading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--anix-muted);
  margin: 14px 0;
}
.anix-pay-loading .dots {
  width: 14px;
  height: 14px;
  border: 2px solid var(--anix-line);
  border-top-color: var(--anix-gold-deep);
  border-radius: 50%;
  animation: anix-spin 0.9s linear infinite;
}
@keyframes anix-spin { to { transform: rotate(360deg); } }

/* ---------- the atelier story ---------- */
.anix-story .photo { overflow: hidden; }
.anix-story .photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform 1.4s ease;
}
.anix-story .photo:hover img { transform: scale(1.045); }
.anix-story .txt { max-width: 480px; margin: 0 auto; }
.anix-story .kicker {
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--anix-gold-deep);
  margin-bottom: 16px;
}
.anix-story-title {
  font-family: var(--anix-serif);
  font-size: clamp(30px, 3.6vw, 46px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--anix-ink);
  margin-bottom: 22px;
  line-height: 1.15;
}
.anix-story .body { font-size: 15px; line-height: 1.95; color: var(--anix-muted); margin-bottom: 26px; }
.anix-story .sig {
  font-family: var(--anix-serif);
  font-style: italic;
  font-size: 21px;
  color: var(--anix-gold-deep);
  margin: 0;
}
/* the theme's body-type heading rules would swap the serif; reassert */
.anix-story .txt .anix-story-title { font-family: var(--anix-serif); }

/* ---------- parallax quote band ---------- */
.anix-band {
  position: relative;
  overflow: hidden;
  padding: 150px 20px;
  text-align: center;
}
.anix-band .bg {
  position: absolute;
  inset: -14% 0;
  background-size: cover;
  background-position: center 30%;
}
.anix-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 17, 14, 0.55);
}
.anix-band .inner { position: relative; z-index: 2; }
.anix-band .q {
  font-family: var(--anix-serif);
  color: #f5f1e9;
  font-size: clamp(24px, 3.4vw, 42px);
  line-height: 1.4;
  max-width: 860px;
  margin: 0 auto 34px;
}
.anix-band .anix-btn-cream { display: inline-block; width: auto; }

/* ---------- faq ---------- */
.anix-faq-list { max-width: 780px; margin: 0 auto; }
.anix-faq-list .anix-acc summary { font-size: 13px; }

/* ---------- the journey (made to measure) ---------- */
.anix-journey {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 26px 0 6px;
}
.anix-journey::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--anix-gold) 10%, var(--anix-gold) 90%, transparent);
}
.jr-step {
  position: relative;
  width: 50%;
  padding: 40px 74px 40px 0;
  text-align: right;
}
.jr-step.flip {
  margin-left: 50%;
  padding: 40px 0 40px 74px;
  text-align: left;
}
.jr-step::after {
  content: '';
  position: absolute;
  top: 62px;
  right: -7px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--anix-gold-deep);
  border: 4px solid #f6f2ea;
  box-shadow: 0 0 0 1px var(--anix-gold-deep);
}
.jr-step.flip::after { right: auto; left: -6px; }
.jr-step .num {
  position: absolute;
  top: 4px;
  left: 6px;
  font-family: var(--anix-serif);
  font-size: 128px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(154, 130, 86, 0.32);
  pointer-events: none;
  user-select: none;
}
.jr-step.flip .num { left: auto; right: 6px; }
.jr-step .body { position: relative; z-index: 1; }
.jr-step .jk {
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--anix-gold-deep);
  margin: 0 0 10px;
}
.anix-journey .jr-step h3 {
  font-family: var(--anix-serif);
  font-size: 26px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--anix-ink);
  margin: 0 0 14px;
}
.jr-step .jx {
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--anix-muted);
  margin: 0;
  max-width: 340px;
}
.jr-step:not(.flip) .jx { margin-left: auto; }

.anix-journey-close { margin-top: 54px; }
.anix-journey-close .line {
  font-family: var(--anix-serif);
  font-size: clamp(22px, 2.6vw, 30px);
  color: var(--anix-ink);
  margin-bottom: 28px;
}
.anix-journey-close .anix-btn-primary {
  display: inline-block;
  width: auto;
  padding: 17px 46px;
}
.anix-journey-close .anix-link-quiet { margin-top: 22px; }

@media (max-width: 767px) {
  .anix-journey::before { left: 7px; }
  .jr-step,
  .jr-step.flip {
    width: 100%;
    margin-left: 0;
    padding: 30px 0 30px 40px;
    text-align: left;
  }
  .jr-step::after,
  .jr-step.flip::after { left: 1px; right: auto; top: 46px; }
  .jr-step .num,
  .jr-step.flip .num {
    left: auto;
    right: 0;
    top: -4px;
    font-size: 76px;
    -webkit-text-stroke: 1px rgba(154, 130, 86, 0.2);
  }
  .jr-step .jx { max-width: none; }
  .jr-step:not(.flip) .jx { margin-left: 0; }
}
