@charset "UTF-8";
:root {
  --cream: #FFFFFF;
  --cream-mid: #F5F5F5;
  --cream-dark: #EBEBEB;
  --black: #0A0A0A;
  --black2: #111111;
  --gold: #B8956A;
  --gold-light: #CDA97D;
  --gold-pale: #E8D9C0;
  --muted: #6B6B6B;
  --border: rgba(10, 10, 10, 0.1);
  --nav-h: 68px;
  --utility-h: 34px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Jost", sans-serif;
  font-weight: 300;
  background: #FFFFFF;
  color: var(--black);
  overflow-x: hidden;
  padding-top: var(--nav-h);
}
body.has-utility {
  padding-top: calc(var(--nav-h) + var(--utility-h));
}
body.has-hero-nav {
  padding-top: 0;
}
body.has-hero-nav.has-utility {
  padding-top: var(--utility-h);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-main {
  min-height: 60vh;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-block {
  display: block !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-none {
  display: none !important;
}

.d-table {
  display: table !important;
}

@media (min-width: 768px) {
  .d-md-flex {
    display: flex !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-none {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-none {
    display: none !important;
  }
}
.flex-column {
  flex-direction: column !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-1 {
  flex: 1 !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.text-center {
  text-align: center !important;
}

.text-end {
  text-align: right !important;
}

.text-start {
  text-align: left !important;
}

.text-muted {
  color: var(--muted) !important;
}

.text-danger {
  color: #c0392b !important;
}

.text-warning {
  color: #d4a017 !important;
}

.text-success {
  color: #5b8a4a !important;
}

.text-white {
  color: #fff !important;
}

.text-dark {
  color: var(--black) !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.w-100 {
  width: 100% !important;
}

.w-50 {
  width: 50% !important;
}

.w-auto {
  width: auto !important;
}

.h-100 {
  height: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-static {
  position: static !important;
}

.top-0 {
  top: 0 !important;
}

.start-0 {
  left: 0 !important;
}

.end-0 {
  right: 0 !important;
}

.top-50 {
  top: 50% !important;
}

.start-50 {
  left: 50% !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-y {
  transform: translateY(-50%) !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.rounded {
  border-radius: 0 !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-auto {
  overflow: auto !important;
}

.gap-0 {
  gap: 0 !important;
}

.g-0 {
  gap: 0 !important;
}

.gx-0 {
  -moz-column-gap: 0 !important;
       column-gap: 0 !important;
}

.gy-0 {
  row-gap: 0 !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.me-0 {
  margin-right: 0 !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.g-1 {
  gap: 0.25rem !important;
}

.gx-1 {
  -moz-column-gap: 0.25rem !important;
       column-gap: 0.25rem !important;
}

.gy-1 {
  row-gap: 0.25rem !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.g-2 {
  gap: 0.5rem !important;
}

.gx-2 {
  -moz-column-gap: 0.5rem !important;
       column-gap: 0.5rem !important;
}

.gy-2 {
  row-gap: 0.5rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.g-3 {
  gap: 1rem !important;
}

.gx-3 {
  -moz-column-gap: 1rem !important;
       column-gap: 1rem !important;
}

.gy-3 {
  row-gap: 1rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.mx-3 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.g-4 {
  gap: 1.5rem !important;
}

.gx-4 {
  -moz-column-gap: 1.5rem !important;
       column-gap: 1.5rem !important;
}

.gy-4 {
  row-gap: 1.5rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.mx-4 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.g-5 {
  gap: 3rem !important;
}

.gx-5 {
  -moz-column-gap: 3rem !important;
       column-gap: 3rem !important;
}

.gy-5 {
  row-gap: 3rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.mx-5 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.px-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.row > * {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-4 {
  flex: 0 0 33.333%;
  max-width: 33.333%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-2 {
  flex: 0 0 16.666%;
  max-width: 16.666%;
}

.col-1 {
  flex: 0 0 8.333%;
  max-width: 8.333%;
}

@media (min-width: 768px) {
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .col-md-8 {
    flex: 0 0 66.666%;
    max-width: 66.666%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-2 {
    flex: 0 0 16.666%;
    max-width: 16.666%;
  }
}
@media (min-width: 1200px) {
  .col-xl-1 {
    flex: 0 0 8.333%;
    max-width: 8.333%;
  }
}
.form-label {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
  font-weight: 400;
}

.form-label.required::after {
  content: " *";
  color: var(--gold);
}

.form-control,
.form-select {
  display: block;
  width: 100%;
  padding: 0.7rem 0.85rem;
  font-family: "Jost", sans-serif;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--black);
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: 0;
  transition: border-color 0.2s;
}

.form-control:focus,
.form-select:focus {
  outline: none;
  border-color: var(--gold);
}

.form-control::-moz-placeholder {
  color: var(--muted);
}

.form-control::placeholder {
  color: var(--muted);
}

.required {
  color: var(--gold);
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.4rem;
  font-family: "Jost", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.4;
  background: transparent;
  border: 0.5px solid var(--border);
  color: var(--black);
  cursor: pointer;
  text-decoration: none;
  border-radius: 0;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn:hover {
  border-color: var(--black);
}

.btn-primary {
  background: var(--black) !important;
  border-color: var(--black) !important;
  color: #fff !important;
}

.btn-primary:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
}

.btn-outline-warning,
.btn-outline-info {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline-warning:hover,
.btn-outline-info:hover {
  background: var(--gold);
  color: #fff;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.6rem;
}

.progress {
  background: var(--cream-mid);
  border-radius: 0 !important;
  height: 0.5rem;
  overflow: hidden;
}

.progress-bar {
  background: var(--gold) !important;
  height: 100%;
}

.alert {
  padding: 0.85rem 1rem;
  border: 0.5px solid var(--border);
  background: var(--cream-mid);
  color: var(--black);
  font-size: 0.78rem;
  margin-bottom: 1rem;
  border-radius: 0;
}

.alert-info {
  border-left: 3px solid var(--gold);
}

.small {
  font-size: 0.75rem;
}

.fw-medium {
  font-weight: 500;
}

.required + label,
label.required::after {
  content: " *";
  color: var(--gold);
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1055;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal.show {
  display: block;
}

.modal.fade .modal-dialog {
  transform: translate(0, -50px);
  transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
  transform: none;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 1.75rem auto;
  pointer-events: none;
  max-width: 500px;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 3.5rem);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: 0;
  outline: 0;
}

.modal-header,
.modal-footer {
  padding: 1rem 1.25rem;
  border-color: var(--border);
}

.modal-header {
  border-bottom: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-footer {
  border-top: 0.5px solid var(--border);
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.modal-body {
  padding: 1.25rem;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(10, 10, 10, 0.5);
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: var(--black);
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 0;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-close:hover {
  opacity: 1;
}

.fade {
  transition: opacity 0.15s linear;
}

.fade:not(.show) {
  opacity: 0;
}

.show {
  opacity: 1;
}

.collapse:not(.show) {
  display: none;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 45px;
  padding: 0 2rem;
  background: var(--black);
  color: var(--cream);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: "Jost", sans-serif;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
}

.btn-dark:hover {
  background: var(--gold);
}

.btn-line, .btn-line-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  border: none;
  border-bottom: 0.5px solid var(--black);
  padding-bottom: 2px;
  cursor: pointer;
  background: none;
  font-family: "Jost", sans-serif;
  font-weight: 300;
  text-decoration: none;
  transition: color 0.25s, border-color 0.25s;
}

.btn-line:hover, .btn-line-light:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.btn-line-light {
  color: var(--cream);
  border-bottom-color: rgba(242, 237, 230, 0.4);
}

.btn-line-light:hover {
  color: var(--cream);
  border-bottom-color: var(--cream);
}

nav.site-nav {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 300;
  height: var(--nav-h);
  top: 0;
  background: transparent;
  border-bottom: 0.5px solid transparent;
  box-shadow: none;
  transition: background 0.45s, border-color 0.45s, box-shadow 0.45s, top 0.3s;
}

nav.site-nav.scrolled {
  background: #FFFFFF;
  border-bottom-color: var(--border);
  box-shadow: 0 2px 28px rgba(10, 10, 10, 0.06);
}

body.has-utility nav.site-nav {
  top: var(--utility-h);
}

.nav-utility {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 301;
  height: var(--utility-h);
  background: var(--black);
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: "Jost", sans-serif;
}

.nav-utility-inner {
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-utility-msg {
  position: relative;
  flex: 1;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.22em;
  min-height: 1.2em;
  overflow: hidden;
}

.nav-utility-msg-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}

.nav-utility-msg-item.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-utility-msg-item p,
.nav-utility-msg-item span {
  display: inline;
}

.nav-utility-msg-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-utility-msg-link:hover {
  color: var(--gold-pale);
}

.nav-utility-msg-cta {
  margin-left: 0.6rem;
  color: var(--gold-pale);
  font-weight: 500;
}

.nav-utility-msg-spacer {
  flex: 1;
}

.nav-utility-controls {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-switch {
  position: relative;
}

.nav-switch-trigger {
  background: none;
  border: none;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
  padding: 0.3rem 0.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.78;
  transition: opacity 0.2s, color 0.2s;
}

.nav-switch-trigger:hover {
  opacity: 1;
  color: var(--gold-pale);
}

.nav-switch-trigger[aria-expanded=true] {
  opacity: 1;
  color: var(--gold-pale);
}

.nav-switch-symbol {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  letter-spacing: 0;
  line-height: 1;
}

.nav-switch-icon {
  display: inline-flex;
  opacity: 0.7;
}

.nav-switch-label {
  line-height: 1;
}

.nav-switch-chev {
  width: 8px;
  height: 5px;
  transition: transform 0.2s;
  opacity: 0.6;
}

.nav-switch-trigger[aria-expanded=true] .nav-switch-chev {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-switch-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 160px;
  background: #fff;
  border: 0.5px solid var(--border);
  box-shadow: 0 12px 32px rgba(10, 10, 10, 0.1);
  list-style: none;
  padding: 0.4rem 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.18s, visibility 0.18s, transform 0.18s;
  z-index: 305;
}

.nav-switch[data-open=true] .nav-switch-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-switch-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.1rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  transition: color 0.2s, background 0.2s, padding-left 0.2s;
}

.nav-switch-item:hover {
  color: var(--gold);
  background: var(--cream-mid);
  padding-left: 1.4rem;
}

.nav-switch-item.is-active {
  color: var(--black);
  font-weight: 500;
  cursor: default;
}

.nav-switch-item.is-active:hover {
  color: var(--black);
  background: transparent;
  padding-left: 1.1rem;
}

.nav-switch-item .nav-switch-symbol {
  font-family: "Cormorant Garamond", serif;
  color: var(--gold);
  font-size: 0.95rem;
  min-width: 14px;
  text-align: center;
}

.nav-switch-item.is-active .nav-switch-symbol {
  color: var(--black);
}

@media (max-width: 720px) {
  .nav-utility-inner {
    padding: 0 1rem;
    gap: 0.8rem;
  }
  .nav-utility-msg {
    display: none;
  }
  .nav-utility-controls {
    gap: 0.8rem;
    width: 100%;
    justify-content: flex-end;
  }
  .nav-switch-label {
    display: none;
  }
  .nav-switch-trigger {
    gap: 0.35rem;
  }
}
.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  padding: 0 2.5rem;
}

.nav-left {
  display: flex;
  align-items: center;
}

.nur-nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

.nur-nav-item {
  position: relative;
  height: var(--nav-h);
  display: flex;
  align-items: center;
}

.nur-nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 1rem;
  height: 100%;
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  opacity: 0.55;
  white-space: nowrap;
  cursor: pointer;
  background: none;
  border: none;
  font-family: "Jost", sans-serif;
  font-weight: 300;
  transition: opacity 0.25s, color 0.4s;
}

.nur-nav-link:hover {
  opacity: 1;
}

body.has-hero-nav nav.site-nav:not(.scrolled) .nur-nav-link {
  color: var(--cream);
  opacity: 0.75;
}

body.has-hero-nav nav.site-nav:not(.scrolled) .nur-nav-link:hover {
  opacity: 1;
}

.nur-nav-chev {
  width: 8px;
  height: 5px;
  flex-shrink: 0;
  transition: transform 0.2s ease, stroke 0.4s;
  stroke: currentColor;
}

.nur-nav-item.has-children:hover .nur-nav-chev {
  transform: rotate(180deg);
}

.nur-nav-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--cream);
  border: 0.5px solid var(--border);
  min-width: 200px;
  padding: 0.8rem 0;
  box-shadow: 0 16px 40px rgba(22, 22, 20, 0.08);
  list-style: none;
  margin: 0;
  z-index: 10;
}

.nur-nav-item.has-children:hover > .nur-nav-submenu {
  display: block;
}

.nur-nav-sublink {
  display: block;
  padding: 0.5rem 1.3rem;
  font-size: 0.69rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  opacity: 0.55;
  transition: opacity 0.2s, padding-left 0.2s, color 0.2s;
  font-family: "Jost", sans-serif;
  font-weight: 300;
}

.nur-nav-sublink:hover {
  opacity: 1;
  padding-left: 1.7rem;
  color: var(--gold);
}

.chev {
  width: 8px;
  height: 5px;
  fill: none;
  stroke: var(--black);
  stroke-width: 1.6;
  transition: stroke 0.4s, transform 0.2s;
  flex-shrink: 0;
}

.nav-item:hover .chev {
  transform: rotate(180deg);
}

body.has-hero-nav nav.site-nav:not(.scrolled) .chev {
  stroke: var(--cream);
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--cream);
  border: 0.5px solid var(--border);
  min-width: 200px;
  padding: 0.8rem 0;
  box-shadow: 0 16px 40px rgba(22, 22, 20, 0.08);
}

.nav-item:hover .dropdown {
  display: block;
}

.drop-label {
  display: block;
  padding: 0.3rem 1.3rem 0.15rem;
  font-size: 0.53rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.drop-link {
  display: block;
  padding: 0.5rem 1.3rem;
  font-size: 0.69rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  opacity: 0.55;
  transition: opacity 0.2s, padding-left 0.2s, color 0.2s;
  font-family: "Jost", sans-serif;
  font-weight: 300;
}

.drop-link:hover {
  opacity: 1;
  padding-left: 1.7rem;
  color: var(--gold);
}

.drop-divider {
  height: 0.5px;
  background: rgba(22, 22, 20, 0.07);
  margin: 0.4rem 0;
}

.drop-link.view-all {
  font-weight: 400;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 6px;
}

.drop-link.view-all:hover {
  color: var(--gold);
  opacity: 1;
}

.nav-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  height: var(--nav-h);
  padding: 0 0.5rem;
  color: var(--black);
}

.nav-logo svg {
  display: block;
}

.nav-logo-img {
  display: block;
  height: 36px;
  width: auto;
  max-width: 160px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.nav-logo-light {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.nav-logo-dark {
  opacity: 0;
}

.nav-logo-light {
  opacity: 1;
}

nav.site-nav.scrolled .nav-logo-dark {
  opacity: 1;
}

nav.site-nav.scrolled .nav-logo-light {
  opacity: 0;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.1rem;
}

.nav-icon {
  width: 18px;
  height: 18px;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s, stroke 0.4s;
  stroke: var(--black);
  fill: none;
  stroke-width: 1.3;
  flex-shrink: 0;
}

.nav-icon:hover {
  opacity: 1;
}

body.has-hero-nav nav.site-nav:not(.scrolled) .nav-icon {
  stroke: var(--cream);
  opacity: 0.8;
}

.nav-icon-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: inherit;
  line-height: 0;
}

.cart-wrap,
.nav-compare-link {
  position: relative;
  display: flex;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  min-width: 13px;
  height: 13px;
  padding: 0 3px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--cream);
  font-size: 0.48rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-family: "Jost", sans-serif;
}

.site-footer {
  background: #000000;
  padding: 4rem 3.5rem 0;
  color: var(--cream);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 0.5px solid rgba(242, 237, 230, 0.08);
  max-width: 1440px;
  margin: 0 auto;
}

.footer-col-brand .footer-brand {
  display: inline-block;
  margin-bottom: 1rem;
  text-decoration: none;
  line-height: 0;
}

.footer-col-brand .footer-brand img {
  display: block;
  height: 72px;
  width: auto;
  max-width: none;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-contact-list a {
  font-size: 0.72rem;
  color: rgba(242, 237, 230, 0.5);
  text-decoration: none;
  letter-spacing: 0.04em;
  font-family: "Jost", sans-serif;
  font-weight: 300;
  transition: color 0.25s;
}

.footer-contact-list a:hover {
  color: var(--cream);
}

.footer-top-strip {
  max-width: 1440px;
  margin: 0 auto;
  padding-bottom: 2rem;
}

.footer-logo-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--cream);
  display: block;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.75rem;
  line-height: 1.85;
  color: rgba(242, 237, 230, 0.35);
  letter-spacing: 0.03em;
  max-width: 240px;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.7rem;
}

.social-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 0.5px solid rgba(242, 237, 230, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
  text-decoration: none;
}

.social-btn:hover {
  border-color: var(--gold);
  background: rgba(184, 149, 106, 0.1);
}

.social-btn svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: rgba(242, 237, 230, 0.4);
  stroke-width: 1.4;
}

.footer-col-title {
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.footer-col ul,
.footer-menu-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-menu-list li {
  margin: 0;
}

.footer-col a {
  font-size: 0.72rem;
  color: rgba(242, 237, 230, 0.4);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.25s;
  font-family: "Jost", sans-serif;
  font-weight: 300;
}

.footer-col a:hover {
  color: var(--cream);
}

.footer-menu-list a {
  font-size: 0.72rem;
  color: rgba(242, 237, 230, 0.4);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.25s;
  font-family: "Jost", sans-serif;
  font-weight: 300;
}

.footer-menu-list a:hover {
  color: var(--cream);
}

.newsletter-wrap {
  margin-top: 1.5rem;
}

.newsletter-label {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(242, 237, 230, 0.3);
  margin-bottom: 0.7rem;
}

.newsletter-row {
  display: flex;
  border: 0.5px solid rgba(242, 237, 230, 0.15);
}

.newsletter-input {
  flex: 1;
  padding: 0.7rem 0.9rem;
  background: transparent;
  border: none;
  outline: none;
  font-family: "Jost", sans-serif;
  font-size: 0.72rem;
  color: var(--cream);
  font-weight: 300;
  letter-spacing: 0.04em;
}

.newsletter-input::-moz-placeholder {
  color: rgba(242, 237, 230, 0.25);
}

.newsletter-input::placeholder {
  color: rgba(242, 237, 230, 0.25);
}

.newsletter-btn {
  padding: 0.7rem 1rem;
  background: transparent;
  border: none;
  border-left: 0.5px solid rgba(242, 237, 230, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background 0.25s;
}

.newsletter-btn:hover {
  background: rgba(184, 149, 106, 0.15);
}

.newsletter-btn svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: rgba(242, 237, 230, 0.4);
  stroke-width: 1.4;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  border-top: 0.5px solid rgba(242, 237, 230, 0.06);
  max-width: 1440px;
  margin: 0 auto;
}

.footer-copy {
  font-size: 0.6rem;
  color: rgba(242, 237, 230, 0.2);
  letter-spacing: 0.1em;
}

.footer-payments {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.payment-icon {
  width: 32px;
  height: 20px;
  border: 0.5px solid rgba(242, 237, 230, 0.1);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-icon span {
  font-size: 0.45rem;
  color: rgba(242, 237, 230, 0.25);
  letter-spacing: 0.04em;
}

/* ─── Payment badges (footer + checkout summary) ─── */
.nur-pay-badges {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.nur-pay-badges__secure {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}

.nur-pay-badges__secure svg {
  width: 13px;
  height: 13px;
}

.nur-pay-badges__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.nur-pay-badge {
  display: inline-flex;
  width: 36px;
  height: 24px;
  border-radius: 3px;
  overflow: hidden;
  background: #fff;
  line-height: 0;
}

.nur-pay-badge svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Variant: light — on dark footer */
.nur-pay-badges--light .nur-pay-badges__secure {
  color: rgba(242, 237, 230, 0.55);
}

.nur-pay-badges--light .nur-pay-badge {
  box-shadow: 0 0 0 0.5px rgba(255, 255, 255, 0.12);
}

/* Variant: dark — on light checkout sidebar */
.nur-pay-badges--dark {
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 0.5px solid var(--border);
  justify-content: space-between;
}

.nur-pay-badges--dark .nur-pay-badges__secure {
  color: var(--gold);
}

.nur-pay-badges--dark .nur-pay-badge {
  box-shadow: 0 0 0 0.5px rgba(10, 10, 10, 0.08);
}

@media (max-width: 768px) {
  .site-footer {
    padding: 3rem 1.5rem 0;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  .nur-pay-badges {
    gap: 0.75rem;
  }
}
.nur-auth-page {
  padding: 5rem 0 7rem;
  background: linear-gradient(180deg, #fff 0%, var(--cream-light, #FBF8F1) 100%);
  min-height: 70vh;
}
.nur-auth-page .container {
  max-width: 1440px;
  padding-inline: 1.5rem;
}

.auth-card.card,
.auth-card {
  max-width: 460px;
  margin: 0 auto;
  background: #fff;
  border: 0.5px solid var(--border, #e8e1d3);
  border-radius: 0;
  box-shadow: 0 12px 40px -20px rgba(10, 10, 10, 0.08);
  overflow: hidden;
}

.auth-card__banner {
  width: 100%;
  height: auto;
  max-height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  display: none;
}

.auth-card__header {
  padding: 2rem 2rem 0.5rem;
  border-bottom: 0.5px solid var(--border, #e8e1d3);
  padding-bottom: 1.5rem;
  text-align: center;
}
.auth-card__header .d-flex {
  justify-content: center;
  align-items: center !important;
  flex-direction: column !important;
  gap: 0.85rem !important;
}

.auth-card__header-icon {
  background: var(--cream-mid, #F5EEE2) !important;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  color: var(--gold, #B8956A);
}
.auth-card__header-icon svg {
  width: 22px;
  height: 22px;
}
.auth-card__header-icon .text-primary {
  color: var(--gold, #B8956A) !important;
}

.auth-card__header-title {
  font-family: "Cormorant Garamond", serif !important;
  font-size: 1.8rem !important;
  font-weight: 300;
  color: var(--black, #1B1714);
  letter-spacing: 0.01em;
  margin-bottom: 0.3rem !important;
}

.auth-card__header-description {
  font-size: 0.75rem;
  color: var(--muted, #5a5045) !important;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 380px;
}

.auth-card__body {
  padding: 2rem;
}

.auth-card .mb-3 {
  margin-bottom: 1.2rem !important;
}

.auth-card .form-label {
  font-size: 0.55rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--black, #1B1714);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.auth-card .form-control {
  border: none;
  border-bottom: 0.5px solid var(--border, #e8e1d3);
  border-radius: 0;
  padding: 0.7rem 0.4rem 0.7rem 2.5rem;
  background: transparent;
  font-family: "Jost", sans-serif;
  font-size: 0.85rem;
  color: var(--black, #1B1714);
  letter-spacing: 0.02em;
  transition: border-color 0.2s ease;
}
.auth-card .form-control:focus {
  outline: none;
  box-shadow: none;
  border-bottom-color: var(--gold, #B8956A);
}
.auth-card .form-control::-moz-placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.auth-card .form-control::placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.auth-card .form-control.ps-5 {
  padding-left: 2.5rem;
}
.auth-card .form-control.is-invalid {
  border-bottom-color: #B84A3A;
  background-image: none;
  padding-right: 0.4rem;
}

.auth-card .input-group-text,
.auth-card .auth-input-icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--gold, #B8956A);
  width: 28px;
  z-index: 1;
  padding: 0;
}
.auth-card .input-group-text svg,
.auth-card .auth-input-icon svg {
  width: 16px;
  height: 16px;
}

.auth-card .position-relative > .position-relative {
  padding-left: 0 !important;
}

.auth-card .invalid-feedback {
  font-size: 0.7rem;
  color: #B84A3A;
  margin-top: 0.4rem;
  letter-spacing: 0.02em;
}

.auth-card .form-check {
  padding-left: 1.6rem;
}
.auth-card .form-check .form-check-input {
  margin-left: -1.6rem;
  border: 0.5px solid var(--border, #e8e1d3);
  border-radius: 2px;
  width: 14px;
  height: 14px;
}
.auth-card .form-check .form-check-input:checked {
  background-color: var(--gold, #B8956A);
  border-color: var(--gold, #B8956A);
}
.auth-card .form-check .form-check-input:focus {
  box-shadow: 0 0 0 2px rgba(184, 149, 106, 0.2);
}
.auth-card .form-check .form-check-label {
  font-size: 0.7rem;
  color: var(--muted, #5a5045);
  letter-spacing: 0.04em;
}

.auth-card .row.g-0.mb-3 {
  align-items: center;
}
.auth-card .row.g-0.mb-3 .text-end a {
  font-size: 0.7rem;
  color: var(--gold, #B8956A);
  text-decoration: underline;
  text-underline-offset: 3px;
  letter-spacing: 0.04em;
}

.auth-card .btn-auth-submit,
.auth-card .btn-primary {
  background: var(--black, #1B1714) !important;
  border: none !important;
  color: #fff !important;
  padding: 1rem 1.5rem !important;
  font-family: "Jost", sans-serif !important;
  font-size: 0.62rem !important;
  letter-spacing: 0.28em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  border-radius: 0 !important;
  transition: background 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.auth-card .btn-auth-submit:hover, .auth-card .btn-auth-submit:focus,
.auth-card .btn-primary:hover,
.auth-card .btn-primary:focus {
  background: var(--gold, #B8956A) !important;
}
.auth-card .btn-auth-submit svg,
.auth-card .btn-primary svg {
  width: 14px;
  height: 14px;
}

.auth-card .d-grid {
  display: flex !important;
}

.auth-card .text-center.mt-3,
.auth-card .text-center a,
.auth-card .form-text a {
  font-family: "Jost", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

.auth-card .text-center {
  margin-top: 1.5rem !important;
  font-size: 0.72rem;
  color: var(--muted, #5a5045);
}
.auth-card .text-center a {
  color: var(--gold, #B8956A);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 0.3rem;
}

.auth-card .alert {
  border-radius: 0;
  border: none;
  border-left: 2px solid currentColor;
  padding: 0.85rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
.auth-card .alert.alert-success {
  background: rgba(42, 122, 74, 0.06);
  color: #2a7a4a;
}
.auth-card .alert.alert-danger {
  background: rgba(184, 74, 58, 0.06);
  color: #B84A3A;
}
.auth-card .alert.alert-warning {
  background: rgba(184, 149, 106, 0.08);
  color: var(--gold, #B8956A);
}

@media (max-width: 520px) {
  .nur-auth-page {
    padding: 2rem 0 4rem;
  }
  .auth-card__header,
  .auth-card__body {
    padding-inline: 1.25rem;
  }
}
.breadcrumb {
  max-width: 1440px;
  margin: 0 auto;
  padding: 1rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 0.5px solid var(--border);
}

.bc {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.bc:hover {
  color: var(--black);
}

.bc.current {
  color: var(--black);
  opacity: 0.8;
}

.bc-sep {
  font-size: 0.6rem;
  color: var(--cream-dark);
  margin: 0 0.1rem;
}

.acc-layout {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: calc(100vh - var(--nav-h) - 50px);
}

.acc-side {
  background: var(--cream-mid);
  border-right: 0.5px solid var(--border);
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.acc-side-eyebrow {
  font-size: 0.55rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
  padding-left: 0.8rem;
}

.acc-side-link {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  padding: 0.7rem 0.8rem;
  cursor: pointer;
  border-left: 2px solid transparent;
  text-decoration: none;
  transition: all 0.2s;
  font-family: "Jost", sans-serif;
}

.acc-side-link:hover {
  color: var(--black);
}

.acc-side-link.active {
  color: var(--black);
  font-weight: 500;
  border-left-color: var(--black);
  background: #fff;
}

.acc-side-divider {
  height: 0.5px;
  background: var(--border);
  margin: 0.8rem 0.8rem;
}

.acc-side-logout {
  opacity: 0.6;
  background: none;
  border: none;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.acc-side-logout:hover {
  opacity: 1;
  color: #B84A3A;
}

.acc-content {
  padding: 3rem 3rem 4rem;
  max-width: 760px;
}

.acc-content--wide {
  max-width: none;
}

.acc-page-head {
  margin-bottom: 2.2rem;
}

.acc-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--black);
  line-height: 1;
  letter-spacing: 0.01em;
}

.acc-sub {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-top: 0.6rem;
  line-height: 1.65;
  max-width: 520px;
}

.profile-card {
  border: 0.5px solid var(--border);
  border-radius: 6px;
  padding: 1.6rem 1.8rem;
  margin-bottom: 1.2rem;
  background: #fff;
}

.profile-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.7rem 0;
}

.profile-field + .profile-field {
  border-top: 0.5px solid var(--border);
  margin-top: 0.3rem;
  padding-top: 1rem;
}

.field-label-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.field-label-text {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  font-weight: 400;
}

.field-value-display {
  font-size: 1rem;
  color: var(--black);
  font-weight: 400;
  letter-spacing: 0.005em;
  min-height: 1.5em;
}

.field-value-display.empty {
  color: var(--muted);
}

.profile-edit-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.profile-edit-input {
  height: 44px;
  padding: 0 0.9rem;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 6px;
  font-family: "Jost", sans-serif;
  font-size: 0.95rem;
  color: var(--black);
  font-weight: 400;
  letter-spacing: 0.01em;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.profile-edit-input:focus {
  border-color: var(--black);
}

.profile-edit-input.is-invalid {
  border-color: #B84A3A;
}

.profile-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

@media (max-width: 600px) {
  .profile-row {
    grid-template-columns: 1fr;
  }
}
.edit-btn {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.7rem 1.2rem;
  border: none;
  cursor: pointer;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  border-radius: 6px;
  transition: all 0.2s;
}

.edit-btn.save {
  background: var(--black);
  color: #fff;
}

.edit-btn.save:hover {
  background: var(--gold);
}

.edit-btn.cancel {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  text-decoration: none;
}

.edit-btn.cancel:hover {
  color: var(--black);
  border-color: var(--black);
}

.addresses-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.addresses-title {
  font-size: 1rem;
  color: var(--black);
  font-weight: 500;
  letter-spacing: 0.005em;
}

.add-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: "Jost", sans-serif;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0.01em;
  padding: 0.3rem 0.4rem;
  border-radius: 4px;
  transition: background 0.2s;
  text-decoration: none;
}

.add-btn:hover {
  background: rgba(184, 149, 106, 0.08);
}

.add-btn svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

.addresses-empty {
  background: var(--cream-mid);
  border-radius: 6px;
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.empty-info-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--muted);
  font-weight: 500;
  font-family: Georgia, serif;
  font-style: italic;
  flex-shrink: 0;
}

.address-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.address-item {
  border: 0.5px solid var(--border);
  border-radius: 6px;
  padding: 1rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
}

.address-item-text {
  font-size: 0.85rem;
  color: var(--black);
  line-height: 1.65;
  letter-spacing: 0.01em;
}

.address-item-default {
  display: inline-block;
  font-size: 0.55rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-top: 0.4rem;
  padding: 0.2rem 0.5rem;
  background: rgba(184, 149, 106, 0.1);
  border-radius: 10px;
}

.address-item-actions {
  display: flex;
  gap: 0.2rem;
  align-items: center;
}

.address-item-action {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--muted);
  padding: 0.3rem;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: color 0.2s;
}

.address-item-action:hover {
  color: var(--black);
}

.address-item-action.delete:hover {
  color: #B84A3A;
}

.address-item-action svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.4;
}

.address-form-card {
  border: 0.5px solid var(--border);
  border-radius: 6px;
  padding: 1.6rem 1.8rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.address-form-card .field-label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  padding-left: 0.1rem;
  display: block;
  margin-bottom: 0.3rem;
}

.address-form-card .form-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.4rem;
  justify-content: flex-end;
}

.orders-list {
  display: flex;
  flex-direction: column;
  border-top: 0.5px solid var(--border);
}

.order-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 90px;
  gap: 1rem;
  padding: 1.3rem 0.8rem;
  border-bottom: 0.5px solid var(--border);
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
  position: relative;
}

.order-row-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.order-row > .order-cell {
  pointer-events: none;
}

.order-row > .order-row-track {
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

.order-row.head > .order-cell {
  pointer-events: auto;
}

.order-row-track {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.9rem;
  border: 0.5px solid var(--border);
  color: var(--black);
  text-decoration: none;
  font-family: "Jost", sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  width: -moz-fit-content;
  width: fit-content;
  justify-self: end;
}

.order-row-track:hover {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}

.order-row-track svg {
  width: 9px;
  height: 9px;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
}

.order-row:hover {
  background: var(--cream-mid);
}

.order-row.head {
  padding: 0.6rem 0.8rem 0.7rem;
  cursor: default;
}

.order-row.head:hover {
  background: transparent;
}

.order-cell {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.order-cell-label {
  font-size: 0.55rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.order-cell-val {
  font-size: 0.85rem;
  color: var(--black);
  letter-spacing: 0.01em;
}

.order-cell-val.mono,
.order-cell-val.price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 500;
}

.order-cell-sub {
  font-size: 0.62rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 0.15rem;
}

.order-cell-right {
  text-align: right;
  align-items: flex-end;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 14px;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
}

.status-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-pill.pending,
.status-pill.processing {
  background: rgba(184, 149, 106, 0.12);
  color: #8C6E4A;
}

.status-pill.pending::before,
.status-pill.processing::before {
  background: #B8956A;
}

.status-pill.shipped,
.status-pill.shipping {
  background: rgba(42, 90, 184, 0.1);
  color: #2A5AB8;
}

.status-pill.shipped::before,
.status-pill.shipping::before {
  background: #2A5AB8;
}

.status-pill.completed,
.status-pill.delivered {
  background: rgba(42, 122, 74, 0.1);
  color: #2a7a4a;
}

.status-pill.completed::before,
.status-pill.delivered::before {
  background: #2a7a4a;
}

.status-pill.canceled,
.status-pill.returned,
.status-pill.refunded {
  background: rgba(107, 107, 107, 0.12);
  color: #6B6B6B;
}

.status-pill.canceled::before,
.status-pill.returned::before,
.status-pill.refunded::before {
  background: #6B6B6B;
}

.acc-page-head-actions {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
}

.acc-page-head-actions .btn-dark svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
}

a.order-detail-line.is-linked {
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}

a.order-detail-line.is-linked:hover {
  background: var(--cream-mid);
}

a.order-detail-line.is-linked:hover .order-detail-line-name {
  color: var(--gold);
}

a.order-detail-line.is-linked .order-detail-line-name {
  transition: color 0.2s;
  border-bottom: 0.5px solid transparent;
}

.order-chev {
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-chev svg {
  width: 13px;
  height: 13px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 1.5;
  transition: transform 0.2s, stroke 0.2s;
}

.order-row:hover .order-chev svg {
  stroke: var(--black);
  transform: translateX(3px);
}

.orders-empty {
  text-align: center;
  padding: 3.5rem 1.5rem 4rem;
  border-top: 0.5px solid var(--border);
}

.orders-empty-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.6rem;
  color: var(--gold);
  opacity: 0.55;
}

.orders-empty-icon svg {
  width: 100%;
  height: 100%;
}

.orders-empty-eyebrow {
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.7rem;
}

.orders-empty-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--black);
  line-height: 1.2;
  margin: 0 0 0.8rem;
}

.orders-empty-sub {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto 2rem;
  letter-spacing: 0.02em;
}

.orders-empty-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 1rem 2rem;
  background: var(--black);
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s;
}

.orders-empty-cta svg {
  width: 12px;
  height: 12px;
}

.orders-empty-cta:hover {
  background: var(--gold);
}

.order-detail-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1.2rem;
}

.order-detail-card {
  border: 0.5px solid var(--border);
  border-radius: 6px;
  padding: 1.4rem 1.6rem;
  background: #fff;
}

.order-detail-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 1rem;
}

.order-detail-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 1rem;
  padding: 0.9rem 0;
  border-top: 0.5px solid var(--border);
  align-items: center;
}

.order-detail-line:first-of-type {
  border-top: none;
}

.order-detail-line-img {
  width: 64px;
  height: 78px;
  background: linear-gradient(135deg, #f6f2ea 0%, #e8ddc8 100%);
  border: 0.5px solid var(--border);
}

.order-detail-line-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.order-detail-line-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: var(--black);
  font-weight: 400;
}

.order-detail-line-meta {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-top: 0.2rem;
}

.order-detail-line-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: var(--black);
  font-weight: 500;
}

.order-totals {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 0.5px solid var(--border);
}

.order-totals-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.order-totals-row.grand {
  border-top: 0.5px solid var(--border);
  margin-top: 0.3rem;
  padding-top: 0.8rem;
  font-size: 1rem;
  color: var(--black);
  font-weight: 500;
}

.order-totals-row.grand .order-totals-amount {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
}

@media (max-width: 900px) {
  .acc-layout {
    grid-template-columns: 1fr;
  }
  .acc-side {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 1rem 1.2rem;
    gap: 0.5rem;
    overflow-x: auto;
  }
  .acc-side-eyebrow,
  .acc-side-divider {
    display: none;
  }
  .acc-side-link {
    white-space: nowrap;
    padding: 0.5rem 0.9rem;
    border-left: none;
    border-bottom: 2px solid transparent;
  }
  .acc-side-link.active {
    border-left: none;
    border-bottom-color: var(--black);
    background: transparent;
  }
  .acc-content {
    padding: 2rem 1.5rem;
  }
  .order-row {
    grid-template-columns: 1fr auto;
    gap: 0.6rem;
    padding: 1.1rem 0.6rem;
  }
  .order-row.head {
    display: none;
  }
  .order-row > :nth-child(2),
  .order-row > :nth-child(4) {
    grid-column: 1;
  }
  .order-row > :nth-child(3) {
    grid-column: 2;
    grid-row: 1;
  }
  .order-row > :nth-child(5) {
    grid-column: 2;
    grid-row: 2;
    align-self: flex-end;
  }
  .order-cell-right {
    align-items: flex-start;
    text-align: left;
  }
  .order-detail-grid {
    grid-template-columns: 1fr;
  }
}
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(2rem);
  background: var(--black);
  color: #fff;
  padding: 0.85rem 1.4rem;
  border-radius: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 24px rgba(10, 10, 10, 0.18);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.cartmini__area {
  display: contents;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.42);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

body.cart-open .cart-overlay {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 460px;
  max-width: 100vw;
  background: #FFFFFF;
  z-index: 1000;
  box-shadow: -12px 0 40px rgba(10, 10, 10, 0.08);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1);
}

body.cart-open .cart-drawer {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.6rem;
  border-bottom: 0.5px solid var(--border);
  flex-shrink: 0;
}

.cart-head-left {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
}

.cart-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: var(--black);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
}

.cart-count-pill {
  font-size: 0.55rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  background: var(--cream-mid);
  padding: 0.3rem 0.6rem;
  border-radius: 12px;
}

.cart-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0.5px solid var(--border);
  cursor: pointer;
  color: var(--black);
  transition: background 0.2s, border-color 0.2s;
}

.cart-close:hover {
  background: var(--cream-mid);
  border-color: var(--black);
}

.cart-close svg {
  width: 12px;
  height: 12px;
}

.cart-strip {
  padding: 0.75rem 1.6rem;
  background: linear-gradient(135deg, #fbf8f1 0%, #f4ecdb 100%);
  border-bottom: 0.5px solid var(--border);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-align: center;
  flex-shrink: 0;
}

.cart-strip strong {
  color: var(--black);
  font-weight: 500;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 0.4rem 1.6rem;
  display: flex;
  flex-direction: column;
}

.cart-items::-webkit-scrollbar {
  width: 6px;
}

.cart-items::-webkit-scrollbar-track {
  background: transparent;
}

.cart-items::-webkit-scrollbar-thumb {
  background: var(--cream-dark);
  border-radius: 3px;
}

.cart-line {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 0.5px solid var(--border);
  align-items: stretch;
}

.cart-line:last-child {
  border-bottom: none;
}

.cart-line-img {
  width: 80px;
  height: 96px;
  background: linear-gradient(135deg, #f6f2ea 0%, #e8ddc8 100%);
  border: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cart-line-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.cart-line-img svg {
  width: 65%;
}

.cart-line-mid {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cart-line-cat {
  font-size: 0.55rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.cart-line-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  color: var(--black);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.cart-line-meta {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-top: 0.1rem;
}

.cart-line-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 0.6rem;
}

.qty-stepper {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  border: 0.5px solid var(--border);
}

.qty-btn {
  width: 26px;
  height: 26px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Jost", sans-serif;
  font-size: 0.9rem;
  color: var(--black);
  font-weight: 300;
  transition: background 0.15s;
  padding: 0;
}

.qty-btn:hover:not(:disabled) {
  background: var(--cream-mid);
}

.qty-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.qty-input {
  width: 36px;
  height: 26px;
  text-align: center;
  border: none;
  border-left: 0.5px solid var(--border);
  border-right: 0.5px solid var(--border);
  background: transparent;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  color: var(--black);
  -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button, .qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-line-remove {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--muted);
  transition: color 0.2s;
}

.cart-line-remove:hover {
  color: #B84A3A;
}

.cart-line-remove svg {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.cart-line-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  color: var(--black);
  font-weight: 500;
}

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  gap: 0.8rem;
}

.empty-bag-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.empty-bag-icon svg {
  width: 24px;
  height: 24px;
}

.empty-bag-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--black);
  font-weight: 400;
}

.empty-bag-text {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 260px;
  letter-spacing: 0.02em;
}

.empty-bag-btn {
  margin-top: 1rem;
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 0.95rem 1.8rem;
  background: var(--black);
  color: #fff;
  border: none;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}

.empty-bag-btn:hover {
  background: var(--gold);
}

.cart-foot {
  border-top: 0.5px solid var(--border);
  background: #fff;
  padding: 1.2rem 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-shrink: 0;
}

.subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.subtotal-row--muted .subtotal-val {
  font-size: 1rem;
  color: var(--muted);
}

.subtotal-label {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 500;
}

.subtotal-val {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: var(--black);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.ship-note {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
}

.checkout-btn {
  height: 48px;
  background: var(--black);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  margin-top: 0.4rem;
  transition: background 0.3s;
  text-decoration: none;
}

.checkout-btn:hover {
  background: var(--gold);
}

.checkout-btn svg {
  width: 11px;
  height: 11px;
}

.view-cart-btn {
  height: 44px;
  background: transparent;
  color: var(--black);
  border: 0.5px solid var(--border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.view-cart-btn:hover {
  background: var(--cream-mid);
  border-color: var(--black);
}

.cont-shopping {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.6rem 0;
  font-family: "Jost", sans-serif;
  text-align: center;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.cont-shopping:hover {
  color: var(--black);
}

body.cart-open {
  overflow: hidden;
}

@media (max-width: 480px) {
  .cart-drawer {
    width: 100%;
  }
}
/* ─── SEARCH DRAWER ─── */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.42);
  z-index: 299;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.search-drawer {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: #FFFFFF;
  z-index: 301;
  box-shadow: 0 12px 36px rgba(10, 10, 10, 0.08);
  border-bottom: 0.5px solid var(--border);
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-16px);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.32s cubic-bezier(0.32, 0.72, 0, 1), visibility 0s 0.32s;
}

.search-drawer.open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.28s ease, transform 0.32s cubic-bezier(0.32, 0.72, 0, 1), visibility 0s;
}

.search-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.2rem 2.5rem 2.4rem;
}

.search-input-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-bottom: 1px solid var(--black);
  padding-bottom: 0.85rem;
}

.search-input-icon {
  width: 22px;
  height: 22px;
  color: var(--black);
  flex-shrink: 0;
}

.search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.01em;
  padding: 0;
}

.search-input::-moz-placeholder {
  color: var(--muted);
  font-style: italic;
}

.search-input::placeholder {
  color: var(--muted);
  font-style: italic;
}

.search-clear {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--muted);
  display: none;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.search-clear:hover {
  color: var(--black);
}

.search-clear svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

.search-clear.show {
  display: flex;
}

.search-esc-hint {
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  padding: 0.3rem 0.55rem;
  border: 0.5px solid var(--border);
  border-radius: 4px;
}

.search-section-label {
  font-size: 0.55rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.search-empty {
  padding-top: 1.6rem;
}

.search-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.search-chip {
  font-family: "Jost", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  padding: 0.55rem 0.95rem;
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: 18px;
  color: var(--black);
  font-weight: 300;
  cursor: pointer;
  transition: all 0.2s;
}

.search-chip:hover {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}

.search-results {
  padding-top: 1.6rem;
}

.search-results-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 2.5rem;
}

.search-loading {
  padding: 1rem 0.5rem;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  font-style: italic;
}

.search-product-list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.search-prod-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.search-product-row {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 0.85rem;
  padding: 0.55rem 0.5rem;
  border-radius: 4px;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}

.search-product-row:hover {
  background: var(--cream-mid);
}

.search-prod-img {
  width: 54px;
  height: 54px;
  border-radius: 4px;
  background: linear-gradient(135deg, #f4ecdc, #dccab0);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.search-prod-img.var2 {
  background: linear-gradient(135deg, #f0eadb, #dccab0);
}

.search-prod-img.var3 {
  background: linear-gradient(135deg, #ece6da, #d6c8ad);
}

.search-prod-img svg {
  width: 65%;
  max-height: 42px;
}

.search-prod-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
  overflow: hidden;
}

.search-prod-cat {
  font-size: 0.52rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.search-prod-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem;
  color: var(--black);
  font-weight: 400;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-prod-name mark {
  background: rgba(184, 149, 106, 0.18);
  color: var(--black);
  font-weight: 600;
  padding: 0 1px;
  border-radius: 1px;
}

.search-prod-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  color: var(--black);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.search-content-list {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.search-content-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.5rem 0.5rem;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}

.search-content-row:hover {
  background: var(--cream-mid);
}

.search-content-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.search-content-icon svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.search-content-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.search-content-text {
  font-size: 0.78rem;
  color: var(--black);
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.search-content-text mark {
  background: rgba(184, 149, 106, 0.18);
  color: var(--black);
  font-weight: 500;
  padding: 0 1px;
  border-radius: 1px;
}

.search-content-sub {
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 0.1rem;
}

.search-no-section {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  font-style: italic;
  padding: 0.4rem 0.5rem;
  display: none;
}

.search-no-section.show {
  display: block;
}

.search-view-all {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.4rem;
  margin-top: 1.8rem;
  border-top: 0.5px solid var(--border);
  flex-wrap: wrap;
  gap: 0.6rem;
}

.search-view-all-count {
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.search-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Jost", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  padding: 0.85rem 1.4rem;
  background: var(--black);
  color: #fff;
  border: none;
  transition: background 0.3s;
}

.search-view-all-btn:hover {
  background: var(--gold);
}

.search-view-all-btn svg {
  width: 11px;
  height: 11px;
  stroke: currentColor;
}

.search-no-results {
  padding: 3rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.search-no-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.search-no-icon svg {
  width: 22px;
  height: 22px;
}

.search-no-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: var(--black);
  font-weight: 400;
}

.search-no-text {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.search-no-text a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.search-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .search-results-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .search-inner {
    padding: 1.4rem 1.2rem 1.6rem;
  }
  .search-input {
    font-size: 1.2rem;
  }
}
.hero-photo-placeholder {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-photo-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 30%, rgba(184, 149, 106, 0.28) 0%, transparent 55%), radial-gradient(circle at 75% 65%, rgba(238, 228, 212, 0.18) 0%, transparent 60%), linear-gradient(180deg, #1f1812 0%, #2a2017 45%, #1a1410 100%);
  filter: saturate(0.92) contrast(1.02);
}

.hero-photo-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 11, 7, 0.25) 0%, transparent 25%, transparent 55%, rgba(10, 8, 5, 0.7) 100%);
  pointer-events: none;
}

.cat-placeholder-svg {
  width: 70%;
  max-width: 360px;
  max-height: 70%;
  display: block;
  margin: auto;
  color: var(--gold);
}

.product-img-inner .cat-placeholder-svg {
  width: 60%;
  max-width: 260px;
  max-height: 80%;
  opacity: 0.65;
}

.mosaic-tile-bg {
  background: linear-gradient(135deg, #F5EEE2 0%, #EBE0CB 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mosaic-tile.mosaic-2 .mosaic-tile-bg {
  background: linear-gradient(135deg, #F0EADB 0%, #DCCAB0 100%);
}

.mosaic-tile.mosaic-3 .mosaic-tile-bg {
  background: linear-gradient(135deg, #ECE6DA 0%, #D6C8AD 100%);
}

.mosaic-tile.mosaic-4 .mosaic-tile-bg {
  background: linear-gradient(135deg, #F4ECDC 0%, #DCCAB0 100%);
}

.craft-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1410;
  overflow: hidden;
}

.craft-video-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1410 0%, #251d12 50%, #1a1410 100%);
}

.craft-glow {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 149, 106, 0.22) 0%, transparent 65%);
  pointer-events: none;
}

.cg1 {
  width: 350px;
  height: 280px;
  top: -40px;
  left: -40px;
  animation: craft-glow-pulse 7s ease-in-out infinite;
}

.cg2 {
  width: 220px;
  height: 220px;
  bottom: 5%;
  right: 5%;
  animation: craft-glow-pulse 7s ease-in-out 3.5s infinite;
}

@keyframes craft-glow-pulse {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}
.craft-play {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.craft-play-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid rgba(232, 217, 192, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}

.craft-play-btn:hover {
  border-color: rgba(232, 217, 192, 0.75);
  background: rgba(184, 149, 106, 0.12);
}

.craft-play-tri {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid rgba(232, 217, 192, 0.65);
}

.craft-play-label {
  font-size: 0.56rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(232, 217, 192, 0.35);
}

.nur-atelier .atelier-media {
  position: relative;
  overflow: hidden;
}

.about-media-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-mid);
  overflow: hidden;
}

.about-glow {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 149, 106, 0.15) 0%, transparent 65%);
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.about-play {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.about-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(22, 22, 20, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}

.about-play-btn:hover {
  border-color: var(--gold);
  background: rgba(184, 149, 106, 0.08);
}

.about-play-tri {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid var(--gold);
}

.about-play-label {
  font-size: 0.56rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-img-note {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.55rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(22, 22, 20, 0.35);
  font-weight: 500;
  white-space: nowrap;
}

.nur-feature .nur-feature-media {
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 3vw, 2.5rem);
}

.nur-breadcrumb {
  padding: 1.6rem 0 0;
}
.nur-breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  align-items: baseline;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
}
.nur-breadcrumb li {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
}
.nur-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nur-breadcrumb a:hover {
  color: var(--black);
}
.nur-breadcrumb .current {
  color: var(--black);
}
.nur-breadcrumb .sep {
  color: rgba(0, 0, 0, 0.25);
}

.plp-header {
  text-align: center;
  padding: 3rem 0 2.5rem;
  border-bottom: 0.5px solid var(--border);
  margin-bottom: 3rem;
}

.plp-eyebrow {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold, #B8956A);
  font-weight: 500;
  margin-bottom: 1rem;
}

.plp-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  color: var(--black);
  line-height: 1.05;
  letter-spacing: 0.005em;
  margin: 0 0 1rem;
}

.plp-intro {
  max-width: 540px;
  margin: 0 auto;
  font-size: 0.85rem;
  line-height: 1.85;
  color: var(--muted);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  letter-spacing: 0.02em;
}

.plp-subcats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
}

.plp-subcat {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted, #5a5045);
  padding: 0.7rem 1.4rem;
  border: 0.5px solid var(--border, #e8e1d3);
  background: transparent;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.plp-subcat:hover {
  border-color: var(--black, #1B1714);
  color: var(--black, #1B1714);
}

.plp-subcat.active {
  background: var(--black, #1B1714);
  color: #fff;
  border-color: var(--black, #1B1714);
}

.plp-subcat-sep {
  width: 0.5px;
  height: 18px;
  background: var(--border, #e8e1d3);
  margin: 0 0.4rem;
}

.plp-body {
  padding-bottom: 6rem;
}

.plp-layout {
  display: block;
}

.plp-body--with-sidebar .plp-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 3rem;
  align-items: start;
}

.plp-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-self: start;
}

.plp-sidebar > * + * {
  padding-top: 2rem;
  border-top: 0.5px solid var(--border);
}

.bb-shop-sidebar {
  font-family: "Jost", sans-serif;
}

.bb-product-form-filter {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.bb-product-filter + .bb-product-filter {
  padding-top: 2rem;
  border-top: 0.5px solid var(--border);
}

.bb-product-filter-title {
  font-family: "Jost", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--black);
  margin: 0 0 1rem;
  padding: 0;
  border: none;
}

.bb-product-filter-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.bb-product-filter-item {
  line-height: 1.4;
}

.bb-product-filter-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--muted);
  text-decoration: none;
  font-weight: 300;
  padding: 0.15rem 0;
  transition: color 0.2s, padding-left 0.2s;
}
.bb-product-filter-link svg, .bb-product-filter-link i {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.bb-product-filter-link:hover {
  color: var(--black);
  padding-left: 0.2rem;
}

.bb-product-filter-link.active {
  color: var(--gold);
}

.bb-product-filter-content .form-check, .bb-product-filter-content label.form-check-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--muted);
  font-weight: 300;
  padding: 0.15rem 0;
  cursor: pointer;
}
.bb-product-filter-content input[type=checkbox], .bb-product-filter-content input[type=radio] {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: var(--gold);
  cursor: pointer;
}

.bb-product-price-filter .price-slider {
  margin: 0.5rem 0 1rem;
}
.bb-product-price-filter .input-range,
.bb-product-price-filter .bb-product-price-filter-info {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

[data-bb-toggle=toggle-product-categories-tree] {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--muted);
  padding: 0.2rem;
  margin-left: 0.4rem;
}

[data-bb-toggle=toggle-product-categories-tree]:hover {
  color: var(--black);
}

.plp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 1.5rem;
}

@media (max-width: 1100px) {
  .plp-body--with-sidebar .plp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .plp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .plp-body--with-sidebar .plp-layout {
    grid-template-columns: 1fr;
  }
  .plp-sidebar {
    position: static;
  }
}
@media (max-width: 540px) {
  .plp-grid {
    grid-template-columns: 1fr;
  }
}
.plp-pagination {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}
.plp-pagination .pagination {
  display: inline-flex;
  gap: 0.4rem;
  padding: 0;
  list-style: none;
  font-family: "Jost", sans-serif;
}
.plp-pagination .page-item .page-link {
  min-width: 36px;
  height: 36px;
  padding: 0 0.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  background: transparent;
  border: 0.5px solid var(--border);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.2s;
}
.plp-pagination .page-item .page-link:hover {
  background: var(--cream-mid);
  border-color: var(--black);
}
.plp-pagination .page-item.active .page-link {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}
.plp-pagination .page-item.disabled .page-link {
  color: var(--muted);
  opacity: 0.4;
  cursor: not-allowed;
}

.plp-empty {
  padding: 5rem 1.5rem;
  text-align: center;
  color: var(--muted);
}

.plp-empty-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--black);
  margin: 0 0 0.8rem;
}

.plp-empty-sub {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 auto 2rem;
  max-width: 420px;
}

.plp-empty-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.8rem;
  background: var(--black);
  color: #fff;
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  font-family: "Jost", sans-serif;
  transition: background 0.3s;
}

.plp-empty-btn:hover {
  background: var(--gold, #B8956A);
}

.product-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  transition: transform 0.3s ease;
  position: relative;
}
.product-card:hover .product-img-inner img {
  transform: scale(1.04);
}
.product-card:hover .product-quick {
  opacity: 1;
  transform: translateY(0);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #F5EEE2 0%, #EBE0CB 100%);
  overflow: hidden;
  margin-bottom: 1rem;
}

.product-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img-inner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-img-inner .product-svg {
  width: 55%;
  height: auto;
}

.cat-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black, #1B1714);
  background: rgba(255, 255, 255, 0.92);
  border: 0.5px solid var(--border, #e8e1d3);
  font-weight: 500;
  padding: 0.3rem 0.65rem;
  z-index: 2;
}

.wishlist-corner {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
  z-index: 2;
}
.wishlist-corner svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}
.wishlist-corner:hover {
  color: var(--gold, #B8956A);
  background: #fff;
}
.wishlist-corner.saved {
  color: var(--gold, #B8956A);
}
.wishlist-corner.saved svg {
  fill: currentColor;
}

.product-quick {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  text-align: center;
}

.quick-btn {
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  font-family: "Jost", sans-serif;
  font-weight: 500;
}

@media (hover: none) {
  .product-quick {
    opacity: 1;
    transform: translateY(0);
  }
}
.product-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.product-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1.25;
  letter-spacing: 0.005em;
}

.product-meta {
  font-size: 0.55rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.product-row-bottom {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 0.35rem;
}

.product-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  color: var(--black);
  font-weight: 500;
  letter-spacing: 0.005em;
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
}

.product-price-old {
  color: var(--muted);
  font-size: 0.85em;
  text-decoration: line-through;
  text-decoration-color: rgba(0, 0, 0, 0.25);
}

.plp-end-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 4rem auto 0;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted, #5a5045);
  font-family: "Jost", sans-serif;
  font-weight: 500;
}
.plp-end-divider .plp-end-line {
  flex: 1;
  max-width: 80px;
  height: 0.5px;
  background: var(--border, #e8e1d3);
}

.bridal-cta {
  background: var(--cream-mid, #F5EEE2);
  padding: 3rem clamp(1.5rem, 4vw, 3.5rem);
  border-top: 0.5px solid var(--border, #e8e1d3);
  border-bottom: 0.5px solid var(--border, #e8e1d3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 5rem;
}

.bridal-cta-text {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  max-width: 520px;
}

.bridal-cta-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold, #B8956A);
  font-weight: 500;
  font-family: "Jost", sans-serif;
}

.bridal-cta-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: var(--black, #1B1714);
  font-weight: 400;
  line-height: 1.15;
}

.bridal-cta-sub {
  font-size: 0.78rem;
  color: var(--muted, #5a5045);
  line-height: 1.7;
  letter-spacing: 0.02em;
  margin-top: 0.3rem;
}

.bridal-cta-btn {
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  background: var(--black, #1B1714);
  color: #fff;
  border: none;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.3s;
}

.bridal-cta-btn:hover {
  background: var(--gold, #B8956A);
}

@media (max-width: 800px) {
  .bridal-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
  }
}
.pdp-main {
  max-width: 1440px;
  margin: 0 auto;
  border-bottom: 0.5px solid var(--border);
}

.product-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.product-images-col {
  background: var(--cream);
  border-right: 0.5px solid var(--border);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.product-images {
  display: grid;
  grid-template-columns: 80px 1fr;
  width: 100%;
  background: var(--cream-mid);
  border: 0.5px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.product-images--single {
  grid-template-columns: 1fr;
}

.thumb-strip {
  border-right: 0.5px solid var(--border);
  padding: 1.5rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  background: var(--cream);
  overflow-y: auto;
  max-height: 580px;
}

.thumb {
  width: 52px;
  height: 64px;
  background: var(--cream-dark);
  border: 1.5px solid transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.thumb.active {
  border-color: var(--black);
}

.thumb:hover:not(.active) {
  border-color: rgba(10, 10, 10, 0.25);
}

.thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.thumb-num {
  position: absolute;
  bottom: 3px;
  right: 4px;
  font-size: 0.45rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.main-image-wrap {
  position: relative;
  background: var(--cream-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 1/1;
}

.main-image-wrap:hover .zoom-badge {
  opacity: 1;
}

.product-img-display {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}

.main-image-wrap:hover .product-img-display {
  transform: scale(1.04);
}

.main-image-wrap--placeholder {
  cursor: default;
}

.main-image-wrap--placeholder .zoom-badge {
  display: none;
}

.main-image-wrap--placeholder > svg,
.main-image-wrap--placeholder > div,
.main-image-wrap--placeholder > picture {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-image-wrap--placeholder svg {
  max-width: 70%;
  max-height: 70%;
  width: auto;
  height: auto;
  color: var(--gold);
  opacity: 0.55;
}

.zoom-badge {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.92);
  border: 0.5px solid rgba(10, 10, 10, 0.15);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
}

.zoom-badge svg {
  width: 11px;
  height: 11px;
  stroke: var(--black);
  fill: none;
  stroke-width: 1.6;
}

.img-label {
  position: absolute;
  bottom: 1.2rem;
  left: 1.5rem;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 10, 10, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  animation: lbFade 0.25s ease;
}

.lightbox.open {
  display: flex;
}

@keyframes lbFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.lightbox-img-area {
  max-width: min(720px, 80vw);
  max-height: 80vh;
  aspect-ratio: 3/4;
  background: #1a1a1a;
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.lb-close, .lb-prev, .lb-next {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.85);
  transition: background 0.2s, border-color 0.2s;
}

.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}

.lb-close {
  top: 1.5rem;
  right: 1.5rem;
}

.lb-close svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

.lb-prev, .lb-next {
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
}

.lb-prev {
  left: 1.5rem;
}

.lb-next {
  right: 1.5rem;
}

.lb-prev svg, .lb-next svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

.lb-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.product-info {
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
}

.pi-row {
  padding: 1.2rem 0;
  border-bottom: 0.5px solid var(--border);
}

.pi-row:first-child {
  padding-top: 0;
}

.pi-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pi-category {
  font-size: 0.58rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.pi-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 0.4rem;
}

.pi-material {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.pi-sku {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.32);
  margin-top: 0.15rem;
}

.pi-price-main {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--black);
}

.pi-price-main .old {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

.pi-price-note {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-top: 0.3rem;
}

.pi-label {
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pi-label span {
  color: var(--black);
  font-weight: 400;
}

.pi-rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.55rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.pi-rating-summary:hover {
  color: var(--black);
}

.pi-rating-meta {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pi-rating-summary .bb-product-rating {
  --bb-rating-size: 16px;
}

.pi-description {
  font-size: 0.82rem;
  line-height: 1.8;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.pi-description p {
  margin: 0 0 0.6rem;
}

.pi-description p:last-child {
  margin-bottom: 0;
}

.pi-tax {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0.45rem 0 0;
}

.pi-availability {
  padding-top: 1rem;
  padding-bottom: 0.4rem;
}

.pi-availability .number-items-available {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pi-availability .text-success {
  color: #5b8a4a !important;
}

.pi-availability .text-danger {
  color: #c0392b !important;
}

.pi-availability .text-warning {
  color: var(--gold) !important;
}

.pi-qty-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-top: 1.2rem;
}

.pi-qty-label {
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.pi-qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 0.5px solid var(--border);
}

.pi-qty-btn {
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition: background 0.2s;
}

.pi-qty-btn:hover {
  background: var(--cream-mid);
}

.pi-qty-input {
  width: 46px;
  height: 38px;
  padding: 0;
  border: none;
  border-left: 0.5px solid var(--border);
  border-right: 0.5px solid var(--border);
  text-align: center;
  font-family: "Jost", sans-serif;
  font-size: 0.85rem;
  background: transparent;
  color: var(--black);
  -moz-appearance: textfield;
}

.pi-qty-input::-webkit-outer-spin-button,
.pi-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.pi-qty-input:focus {
  outline: none;
}

.pi-meta {
  border-top: 0.5px solid var(--border);
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.pi-meta-row {
  display: flex;
  gap: 0.7rem;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--black);
  align-items: baseline;
}

.pi-meta-label {
  font-size: 0.58rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 80px;
  flex-shrink: 0;
}

.pi-meta-value a {
  color: var(--black);
  text-decoration: none;
  border-bottom: 0.5px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.pi-meta-value a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.cta-col {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.btn-add {
  width: 100%;
  padding: 1rem;
  background: var(--black);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 0.65rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-family: "Jost", sans-serif;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.3s;
}

.btn-add:hover {
  background: var(--gold);
}

.btn-add:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.btn-buy-now {
  width: 100%;
  padding: 1rem;
  background: var(--gold) !important;
  color: #fff !important;
  border: none;
  cursor: pointer;
  font-size: 0.65rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  transition: background 0.3s, color 0.3s;
}

.btn-buy-now:hover {
  background: var(--gold-light) !important;
}

.btn-buy-now:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.cta-secondary {
  display: flex;
  gap: 0.65rem;
}

.btn-wishlist,
.btn-compare {
  flex: 1;
  padding: 1rem 0.6rem;
  background: transparent;
  color: var(--black);
  border: 0.5px solid var(--border);
  cursor: pointer;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: "Jost", sans-serif;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: border-color 0.25s, color 0.25s;
  text-decoration: none;
}

.btn-wishlist:hover,
.btn-compare:hover {
  border-color: var(--black);
}

.btn-wishlist.saved,
.btn-compare.saved,
.btn-compare.active {
  border-color: var(--gold);
  color: var(--gold);
}

.bespoke-link {
  text-align: center;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  border-bottom: 0.5px solid var(--border);
  display: inline-block;
  padding-bottom: 1px;
  cursor: pointer;
  margin: 0 auto;
  transition: color 0.2s, border-color 0.2s;
  width: -moz-fit-content;
  width: fit-content;
  align-self: center;
  text-decoration: none;
}

.bespoke-link:hover {
  color: var(--black);
  border-color: var(--black);
}

.pdp-accordion {
  margin-top: 1rem;
  border-top: 0.5px solid var(--border);
}

.pdp-accordion .acc-item {
  border-bottom: 0.5px solid var(--border);
}

.pdp-accordion .acc-item:last-child {
  border-bottom: none;
}

.pdp-accordion .acc-trigger {
  width: 100%;
  padding: 1.1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: "Jost", sans-serif;
  font-weight: 300;
}

.pdp-accordion .acc-trigger:hover .acc-trigger-label,
.pdp-accordion .acc-trigger:hover .acc-tab-icon {
  color: var(--gold);
}

.pdp-accordion .acc-trigger-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.pdp-accordion .acc-tab-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--black);
  transition: color 0.2s;
}

.pdp-accordion .acc-tab-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}

.pdp-accordion .acc-trigger-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 400;
  transition: color 0.2s;
}

.pdp-accordion .acc-body {
  display: none;
  padding: 0 0 1.4rem 2.6rem;
}

.pdp-accordion .acc-item.open .acc-body {
  display: block;
}

.pdp-accordion .acc-body p {
  font-size: 0.78rem;
  line-height: 1.85;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.pdp-accordion .acc-body table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.3rem;
}

.pdp-accordion .acc-body td {
  padding: 0.5rem 0;
  font-size: 0.72rem;
  color: var(--black);
  letter-spacing: 0.03em;
  border-bottom: 0.5px solid var(--border);
}

.pdp-accordion .acc-body td:first-child {
  width: 42%;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pdp-accordion .acc-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.pdp-accordion .acc-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.pdp-accordion .acc-item.open .acc-icon {
  transform: rotate(180deg);
}

.pdp-accordion .acc-trigger-count {
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-left: 0.4rem;
}

.trust {
  display: flex;
  border: 0.5px solid var(--border);
  margin-top: 0.5rem;
}

.trust-item {
  flex: 1;
  padding: 0.7rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  border-right: 0.5px solid var(--border);
  text-align: center;
}

.trust-item:last-child {
  border-right: none;
}

.trust-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}

.trust-label {
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  line-height: 1.3;
}

.ymal-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 4rem 2.5rem;
}

.ymal-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.ymal-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--black);
}

.ymal-link {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 0.5px solid var(--border);
  padding-bottom: 1px;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s;
}

.ymal-link:hover {
  color: var(--black);
}

.ymal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.product-filters {
  width: 100%;
}

.product-filters .product-filter-item,
.product-filters .swatch-wrapper,
.product-filters .product-attribute-set {
  margin-bottom: 1.2rem;
}

.product-filters label,
.product-filters .filter-name,
.product-filters .attribute-set-title {
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}

.product-filters .attribute-swatch-item,
.product-filters .swatch,
.product-filters .swatch-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 0.8rem;
  margin: 0 0.4rem 0.4rem 0;
  border: 0.5px solid var(--border);
  background: transparent;
  cursor: pointer;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--black);
  font-family: "Jost", sans-serif;
  font-weight: 300;
  transition: all 0.2s;
  border-radius: 0;
}

.product-filters .attribute-swatch-item:hover,
.product-filters .swatch:hover,
.product-filters .swatch-item:hover {
  border-color: var(--black);
}

.product-filters .attribute-swatch-item.active,
.product-filters .swatch.active,
.product-filters .swatch-item.active,
.product-filters input:checked + .swatch {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}

.pr_switch_wrap {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.pr_switch_wrap .product-option {
  border-top: 0.5px solid var(--border);
  padding-top: 1.2rem;
}

.pr_switch_wrap .product-option:first-child {
  border-top: none;
  padding-top: 0;
}

.pr_switch_wrap .product-option-item-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.pr_switch_wrap .product-option-item-label label {
  font-size: 0.62rem !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: var(--muted) !important;
  font-weight: 500 !important;
  font-family: "Jost", sans-serif !important;
  margin: 0 !important;
}

.pr_switch_wrap .product-option-item-label .required::after {
  content: " *";
  color: var(--gold);
  margin-left: 2px;
}

.pr_switch_wrap .product-option .product-option-item-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pr_switch_wrap .product-option .form-radio {
  position: relative;
  margin: 0;
}

.pr_switch_wrap .product-option .form-radio input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pr_switch_wrap .product-option .form-radio label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 0.9rem;
  border: 0.5px solid var(--border);
  background: transparent;
  cursor: pointer;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--black);
  font-family: "Jost", sans-serif;
  font-weight: 300;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border-radius: 0;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.pr_switch_wrap .product-option .form-radio label:hover {
  border-color: var(--black);
}

.pr_switch_wrap .product-option .form-radio input[type=radio]:checked + label {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}

.pr_switch_wrap .product-option .form-radio label .extra-price {
  margin-left: 0.5rem;
  font-size: 0.58rem;
  font-weight: 400;
  color: var(--gold);
}

.pr_switch_wrap .product-option .form-radio input[type=radio]:checked + label .extra-price {
  color: var(--gold-pale);
}

.pr_switch_wrap .product-option-presentation .product-option-item-values {
  flex-direction: column;
  gap: 0.5rem;
}

.pr_switch_wrap .product-option-presentation .form-radio {
  width: 100%;
}

.pr_switch_wrap .product-option-presentation .form-radio label {
  width: 100%;
  height: auto;
  min-height: 48px;
  padding: 0.85rem 1rem;
  justify-content: space-between;
  white-space: normal;
  text-align: left;
  letter-spacing: 0.04em;
  font-size: 0.72rem;
}

.pr_switch_wrap .product-option-chain-length .form-radio label {
  min-width: 92px;
  padding: 0 1rem;
}

.pr_switch_wrap .product-option.option-field .product-option-item-values {
  display: block;
}

.pr_switch_wrap .product-option.option-field .form-radio {
  display: block;
}

.pr_switch_wrap .product-option.option-field .form-radio label {
  display: block;
  border: none;
  padding: 0;
  margin-bottom: 0.5rem;
  height: auto;
  min-width: 0;
  background: transparent !important;
  color: var(--muted) !important;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: left;
  cursor: default;
}

.pr_switch_wrap .product-option.option-field .form-radio label:hover {
  border-color: transparent;
}

.pr_switch_wrap .product-option.option-field input[type=text].form-control {
  width: 100%;
  padding: 0.85rem 0.95rem;
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: 0;
  font-family: "Jost", sans-serif;
  font-size: 0.85rem;
  color: var(--black);
  letter-spacing: 0.04em;
  transition: border-color 0.2s;
}

.pr_switch_wrap .product-option.option-field input[type=text].form-control:focus {
  outline: none;
  border-color: var(--gold);
}

.pr_switch_wrap .product-option .form-select {
  display: block;
  width: 100%;
  padding: 0.85rem 2.2rem 0.85rem 0.95rem;
  background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 10'><path d='M2 2l6 6 6-6' fill='none' stroke='%23B8956A' stroke-width='1.4'/></svg>") no-repeat right 0.85rem center/12px 8px;
  border: 0.5px solid var(--border);
  border-radius: 0;
  font-family: "Jost", sans-serif;
  font-size: 0.85rem;
  color: var(--black);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.pr_switch_wrap .product-option .form-select:focus {
  outline: none;
  border-color: var(--gold);
}

.pdp-reviews-section,
.pdp-bundle-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  border-top: 0.5px solid var(--border);
}

.pdp-bundle-section {
  padding: 2rem 2.5rem;
}

.pdp-section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pdp-section-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.65rem;
}

.pdp-section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--black);
  margin: 0;
}

.pdp-section-count {
  color: var(--muted);
  font-size: 1.2rem;
  margin-left: 0.4rem;
}

.ec-upsell-bundle {
  margin-bottom: 0 !important;
}

.ec-upsell-bundle .container {
  max-width: none;
  padding: 0;
}

.ec-upsell-bundle-wrapper {
  background: var(--cream-mid) !important;
  border: 0.5px solid var(--border) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 2rem !important;
}

.ec-upsell-bundle-header {
  border-bottom: 0.5px solid var(--border) !important;
  padding-bottom: 1.2rem !important;
  margin-bottom: 1.4rem !important;
}

.ec-upsell-bundle-icon {
  background: var(--gold) !important;
  border-radius: 0 !important;
  width: 44px !important;
  height: 44px !important;
}

.ec-upsell-bundle-icon svg {
  color: #fff !important;
}

.ec-upsell-bundle-title h4 {
  font-family: "Cormorant Garamond", serif !important;
  font-size: 1.4rem !important;
  font-weight: 300 !important;
  color: var(--black) !important;
  margin: 0 0 0.3rem !important;
}

.ec-upsell-bundle-title p {
  font-size: 0.6rem !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: var(--muted) !important;
}

.ec-upsell-bundle-item {
  background: #fff !important;
  border: 0.5px solid var(--border) !important;
  border-radius: 0 !important;
}

.ec-upsell-bundle-item:hover {
  border-color: var(--gold) !important;
  box-shadow: none !important;
}

.ec-upsell-bundle-thumb {
  background: var(--cream-mid) !important;
  border-radius: 0 !important;
  width: 90px !important;
  height: 90px !important;
}

.ec-upsell-bundle-thumb img {
  -o-object-fit: cover !important;
     object-fit: cover !important;
  transition: transform 0.4s ease;
}

.ec-upsell-bundle-item:hover .ec-upsell-bundle-thumb img {
  transform: scale(1.04);
}

.ec-upsell-bundle-item-inner {
  padding: 1rem 1.2rem !important;
  gap: 1rem !important;
}

.ec-upsell-bundle-name a {
  color: var(--black) !important;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400 !important;
  font-size: 1rem !important;
}

.ec-upsell-bundle-name a:hover {
  color: var(--gold) !important;
}

.ec-upsell-price-sale {
  color: var(--gold) !important;
  font-weight: 400 !important;
}

.ec-upsell-price-original {
  color: var(--muted) !important;
}

.ec-upsell-checkbox input:checked ~ .ec-upsell-checkmark,
.ec-upsell-checkmark {
  border-radius: 0 !important;
}

.ec-upsell-bundle-checkbox input[type=checkbox]:checked ~ .ec-upsell-checkmark {
  background-color: var(--gold) !important;
  border-color: var(--gold) !important;
}

.ec-upsell-discount-badge {
  background: var(--black) !important;
  border-radius: 0 !important;
  font-size: 0.55rem !important;
  letter-spacing: 0.1em !important;
}

.ec-upsell-add-btn {
  border-radius: 0 !important;
  border: 0.5px solid var(--border) !important;
}

.ec-upsell-add-btn:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
}

.ec-upsell-bundle-footer {
  border-top: 0.5px solid var(--border) !important;
  padding-top: 1.2rem !important;
  margin-top: 1.4rem !important;
}

.ec-upsell-total-price {
  color: var(--gold) !important;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400 !important;
}

.ec-upsell-bundle-add-all {
  background: var(--black) !important;
  border-radius: 0 !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  font-family: "Jost", sans-serif !important;
  padding: 0.95rem 1.6rem !important;
}

.ec-upsell-bundle-add-all:hover:not(:disabled) {
  background: var(--gold) !important;
  box-shadow: none !important;
  transform: none !important;
}

.ec-upsell-bundle-notice {
  background: var(--cream) !important;
  border-color: var(--border) !important;
  border-radius: 0 !important;
}

.ec-upsell-bundle-notice svg {
  color: var(--gold) !important;
}

.ec-upsell-bundle-notice span {
  color: var(--black) !important;
  font-size: 0.7rem !important;
}

.ec-cross-sale-section {
  margin-bottom: 0 !important;
}

.ec-cross-sale-section .container {
  max-width: none;
  padding: 0;
}

.ec-cross-sale-wrapper {
  background: var(--cream-mid) !important;
  border: 0.5px solid var(--border) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 2rem !important;
}

.ec-cross-sale-header {
  border-bottom: 0.5px solid var(--border) !important;
  padding-bottom: 1.2rem !important;
  margin-bottom: 1.4rem !important;
}

.ec-cross-sale-icon {
  background: var(--gold) !important;
  border-radius: 0 !important;
  width: 44px !important;
  height: 44px !important;
  box-shadow: none !important;
}

.ec-cross-sale-icon svg {
  color: #fff !important;
}

.ec-cross-sale-title h4 {
  font-family: "Cormorant Garamond", serif !important;
  font-size: 1.4rem !important;
  font-weight: 300 !important;
  color: var(--black) !important;
  margin: 0 0 0.3rem !important;
}

.ec-cross-sale-title p {
  font-size: 0.6rem !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: var(--muted) !important;
}

.ec-cross-sale-card-inner {
  background: #fff !important;
  border: 0.5px solid var(--border) !important;
  border-radius: 0 !important;
}

.ec-cross-sale-card-inner:hover {
  border-color: var(--gold) !important;
  box-shadow: none !important;
}

.ec-cross-sale-thumb {
  background: var(--cream-mid) !important;
  border-radius: 0 !important;
  aspect-ratio: 4/5 !important;
}

.ec-cross-sale-thumb img {
  -o-object-fit: cover !important;
     object-fit: cover !important;
  transition: transform 0.5s ease;
}

.ec-cross-sale-card-inner:hover .ec-cross-sale-thumb img {
  transform: scale(1.05);
}

.ec-cross-sale-card-inner {
  padding: 0 !important;
}

.ec-cross-sale-content {
  padding: 1rem 1rem 1.2rem !important;
}

.ec-cross-sale-name a {
  color: var(--black) !important;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400 !important;
}

.ec-cross-sale-name a:hover {
  color: var(--gold) !important;
}

.ec-cross-sale-price-current {
  color: var(--gold) !important;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400 !important;
  font-size: 1.1rem !important;
}

.ec-cross-sale-price-old {
  color: var(--muted) !important;
}

.ec-cross-sale-plus {
  background: var(--cream) !important;
  border: 0.5px solid var(--border) !important;
}

.ec-cross-sale-plus svg {
  color: var(--gold) !important;
}

.ec-cross-sale-add-btn {
  background: var(--black) !important;
  border-radius: 0 !important;
  font-size: 0.6rem !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  font-family: "Jost", sans-serif !important;
  padding: 0.85rem 1rem !important;
}

.ec-cross-sale-add-btn:hover {
  background: var(--gold) !important;
}

.ec-cross-sale-arrows .slick-arrow {
  border-radius: 0 !important;
  border: 0.5px solid var(--border) !important;
  color: var(--black) !important;
}

.ec-cross-sale-arrows .slick-arrow:hover:not(.slick-disabled) {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #fff !important;
}

.ec-upsell-skeleton-wrapper,
.ec-cross-sale-skeleton-wrapper {
  background: var(--cream-mid) !important;
  border: 0.5px solid var(--border) !important;
  border-radius: 0 !important;
}

.ec-upsell-skeleton,
.ec-cross-sale-skeleton {
  margin-bottom: 0 !important;
}

.ec-upsell-skeleton-item,
.ec-cross-sale-skeleton-card {
  background: #fff !important;
  border-radius: 0 !important;
}

.ec-upsell-skeleton-header {
  border-bottom: 0.5px solid var(--border) !important;
}

.pdp-section-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.pdp-section-rating-empty {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
}

.bb-product-rating::before {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke='none' d='M0 0h24v24H0z'/%3E%3Cpath fill='%23EBEBEB' stroke='none' d='m8.243 7.34-6.38.925-.113.023a1 1 0 0 0-.44 1.684l4.622 4.499-1.09 6.355-.013.11a1 1 0 0 0 1.464.944l5.706-3 5.693 3 .1.046a1 1 0 0 0 1.352-1.1l-1.091-6.355 4.624-4.5.078-.085a1 1 0 0 0-.633-1.62l-6.38-.926-2.852-5.78a1 1 0 0 0-1.794 0z'/%3E%3C/svg%3E") !important;
}

.bb-product-rating > span::before {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke='none' d='M0 0h24v24H0z'/%3E%3Cpath fill='%23B8956A' stroke='none' d='m8.243 7.34-6.38.925-.113.023a1 1 0 0 0-.44 1.684l4.622 4.499-1.09 6.355-.013.11a1 1 0 0 0 1.464.944l5.706-3 5.693 3 .1.046a1 1 0 0 0 1.352-1.1l-1.091-6.355 4.624-4.5.078-.085a1 1 0 0 0-.633-1.62l-6.38-.926-2.852-5.78a1 1 0 0 0-1.794 0z'/%3E%3C/svg%3E") !important;
}

.pdp-reviews-body .product-review-container {
  gap: 1.8rem;
}

.pdp-reviews-body .bb-product-rating {
  --bb-rating-size: 80px;
}

.pdp-reviews-body .product-review-number {
  border: 0.5px solid var(--border) !important;
  border-radius: 0 !important;
  padding: 2rem !important;
  background: var(--cream-mid);
}

.pdp-reviews-body .product-review-number-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--black);
  margin-bottom: 1.2rem !important;
}

.pdp-reviews-body .product-review-summary-value span {
  font-family: "Cormorant Garamond", serif !important;
  font-size: 2.4rem !important;
  color: var(--gold) !important;
  font-weight: 400 !important;
  margin-right: 0.6rem !important;
}

.pdp-reviews-body .product-review-summary-rating p {
  font-size: 0.7rem !important;
  letter-spacing: 0.06em;
  color: var(--muted) !important;
  margin-left: 0.5rem !important;
}

.pdp-reviews-body .product-review-progress-bar-title,
.pdp-reviews-body .product-review-progress-bar-percent {
  font-size: 0.62rem !important;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-family: "Jost", sans-serif;
}

.pdp-reviews-body .progress {
  background: var(--cream-dark) !important;
  height: 4px !important;
  border-radius: 0 !important;
}

.pdp-reviews-body .progress-bar {
  background: var(--gold) !important;
}

.pdp-reviews-body h4 {
  font-family: "Cormorant Garamond", serif !important;
  font-size: 1.4rem !important;
  font-weight: 300 !important;
  color: var(--black);
  margin-bottom: 0.6rem !important;
}

.pdp-reviews-body .form-rating-stars label svg {
  color: var(--cream-dark);
  transition: color 0.15s;
}

.pdp-reviews-body .form-rating-stars > input:checked ~ label svg,
.pdp-reviews-body .form-rating-stars:not(:checked) > label:hover svg,
.pdp-reviews-body .form-rating-stars:not(:checked) > label:hover ~ label svg {
  color: var(--gold) !important;
}

.pdp-reviews-body .review-list-container > h4 {
  border-bottom: 0.5px solid var(--border) !important;
  padding-bottom: 1rem !important;
  margin-bottom: 1.4rem !important;
  color: var(--black) !important;
  font-size: 1.1rem !important;
}

.pdp-reviews-body .product-review-controls .review-control-btn.btn {
  background: #fff !important;
  border: 0.5px solid var(--border) !important;
  border-radius: 0 !important;
  color: var(--muted) !important;
  font-size: 0.62rem !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.6rem 1rem !important;
  font-family: "Jost", sans-serif !important;
}

.pdp-reviews-body .product-review-controls .review-control-btn.btn:hover {
  border-color: var(--black) !important;
  color: var(--black) !important;
}

.pdp-reviews-body .product-review-item {
  border-bottom: 0.5px solid var(--border) !important;
  padding: 1.2rem 0 !important;
}

.pdp-reviews-body .product-review-item__name {
  font-family: "Cormorant Garamond", serif !important;
  color: var(--black) !important;
  font-weight: 400 !important;
}

.pdp-reviews-body .product-review-item__date {
  color: var(--muted) !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.06em;
}

.pdp-reviews-body .product-review-item__content {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--black);
}

@media (max-width: 900px) {
  .product-wrap {
    grid-template-columns: 1fr;
  }
  .product-images-col {
    border-right: none;
    border-bottom: 0.5px solid var(--border);
    padding: 1rem;
  }
  .product-info {
    padding: 2rem 1.5rem;
  }
  .pi-name {
    font-size: 1.8rem;
  }
  .ymal-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-secondary {
    flex-direction: column;
  }
}
@media (max-width: 540px) {
  .ymal-grid {
    grid-template-columns: 1fr;
  }
}
body.checkout-page {
  background: #fff;
}

.checkout-content-wrap {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100%;
}

.checkout-nav {
  height: 60px;
  border-bottom: 0.5px solid rgba(10, 10, 10, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  position: relative;
  padding: 0 2rem;
}

.checkout-nav-back {
  position: absolute;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6B6B6B;
  text-decoration: none;
  transition: color 0.2s;
}

.checkout-nav-back:hover {
  color: #0A0A0A;
}

.checkout-nav-back svg {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.checkout-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  padding-left: 0.32em;
  color: #0A0A0A;
  text-decoration: none;
}

.checkout-secure {
  position: absolute;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6B6B6B;
}

.checkout-secure svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.nur-checkout-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 60px);
  background: #FFFFFF;
}

.checkout-form-col {
  padding: 3.5rem 4rem 4rem;
  max-width: 640px;
  margin-left: auto;
  width: 100%;
}

.checkout-summary-col {
  background: #F8F4EE;
  padding: 3.5rem 4rem 4rem;
  border-left: 0.5px solid rgba(10, 10, 10, 0.08);
}

.checkout-summary {
  position: sticky;
  top: 80px;
  max-width: 460px;
}

.checkout-summary-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #0A0A0A;
  margin-bottom: 1.2rem;
}

.checkout-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 0.5px solid rgba(10, 10, 10, 0.08);
  align-items: center;
}

.checkout-line-img {
  width: 64px;
  height: 78px;
  background: linear-gradient(135deg, #f6f2ea 0%, #e8ddc8 100%);
  border: 0.5px solid rgba(10, 10, 10, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.checkout-line-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.checkout-line-qty {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #6B6B6B;
  color: #fff;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.checkout-line-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: #0A0A0A;
  font-weight: 400;
  line-height: 1.2;
}

.checkout-line-meta {
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  color: #6B6B6B;
  margin-top: 0.3rem;
}

.checkout-line-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: #0A0A0A;
  font-weight: 500;
}

.checkout-totals {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 0.5px solid rgba(10, 10, 10, 0.08);
}

.checkout-totals-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.85rem;
  color: #6B6B6B;
}

.checkout-totals-row.grand {
  border-top: 0.5px solid rgba(10, 10, 10, 0.12);
  margin-top: 0.4rem;
  padding-top: 0.9rem;
  font-size: 1rem;
  color: #0A0A0A;
  font-weight: 500;
}

.checkout-totals-row.grand .checkout-totals-amount {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
}

.checkout-form-col .form-group {
  margin-bottom: 1rem;
}

.checkout-form-col label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6B6B6B;
}

.checkout-form-col h2,
.checkout-form-col h3,
.checkout-form-col .form-section-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  color: #0A0A0A;
}

.checkout-form-col h2 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
}

.checkout-form-col .btn-primary {
  background: #0A0A0A;
  border-color: #0A0A0A;
  color: #fff;
  border-radius: 0;
  padding: 0.95rem 1.6rem;
  font-size: 0.65rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: "Jost", sans-serif;
}

.checkout-form-col .btn-primary:hover {
  background: #B8956A;
  border-color: #B8956A;
}

.checkout-empty {
  max-width: 480px;
  margin: 6rem auto;
  text-align: center;
}

.checkout-empty-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: #0A0A0A;
  margin-bottom: 0.6rem;
}

.checkout-empty-sub {
  font-size: 0.85rem;
  color: #6B6B6B;
  margin-bottom: 1.5rem;
}

.confirm-page {
  max-width: 1440px;
  margin: 0 auto;
  padding: 7rem 2.5rem 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.2rem;
}

.success-mark {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fbf8f1 0%, #f4ecdb 100%);
  border: 0.5px solid rgba(184, 149, 106, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  position: relative;
  animation: nur-confirm-pop 0.5s ease-out;
}

.success-mark::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 0.5px solid rgba(184, 149, 106, 0.18);
  border-radius: 50%;
}

.success-mark svg {
  width: 34px;
  height: 34px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: nur-confirm-draw 0.6s ease-out 0.3s forwards;
}

@keyframes nur-confirm-pop {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes nur-confirm-draw {
  to {
    stroke-dashoffset: 0;
  }
}
.confirm-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.confirm-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--black);
  line-height: 1;
  letter-spacing: 0.005em;
  margin: 0;
}

.confirm-sub {
  max-width: 480px;
  font-size: 0.85rem;
  line-height: 1.85;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin: 0;
}

.confirm-sub strong {
  color: var(--black);
  font-weight: 400;
}

.order-num-block {
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1.3rem 2.6rem;
  background: var(--cream-mid);
  border: 0.5px solid var(--border);
}

.order-num-label {
  font-size: 0.55rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.order-num-val {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--black);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.confirm-btn {
  margin-top: 2.2rem;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 1.1rem 2.4rem;
  background: var(--black);
  color: #fff;
  border: none;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.3s;
}

.confirm-btn:hover {
  background: var(--gold);
}

.confirm-btn svg {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

.confirm-hint {
  margin-top: 0.6rem;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
}

.confirm-secondary-link {
  margin-top: 0.4rem;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 0.5px solid var(--border);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.confirm-secondary-link:hover {
  color: var(--black);
  border-color: var(--black);
}

@media (max-width: 720px) {
  .confirm-page {
    padding: 4rem 1.2rem 5rem;
  }
  .order-num-block {
    padding: 1.1rem 1.6rem;
  }
  .order-num-val {
    font-size: 1.25rem;
  }
}
@media (max-width: 900px) {
  .nur-checkout-layout {
    grid-template-columns: 1fr;
  }
  .checkout-form-col,
  .checkout-summary-col {
    padding: 2rem 1.5rem;
    max-width: none;
    margin: 0;
  }
  .checkout-summary-col {
    border-left: none;
    border-top: 0.5px solid rgba(10, 10, 10, 0.08);
  }
  .checkout-summary {
    position: static;
    max-width: none;
  }
  .checkout-nav {
    padding: 0 1.2rem;
  }
  .checkout-nav-back {
    left: 1.2rem;
  }
  .checkout-secure {
    right: 1.2rem;
  }
}
.checkout-form-col h2, .checkout-form-col h3, .checkout-form-col h4, .checkout-form-col h5, .checkout-form-col h6,
.checkout-form-col .checkout-section-title,
.checkout-form-col .card-header,
.checkout-form-col .fs-4, .checkout-form-col .fs-5 {
  font-family: "Jost", sans-serif;
  font-size: 1.05rem !important;
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 500 !important;
  color: var(--black, #1B1714);
  margin: 0 0 1.2rem !important;
  padding-bottom: 0;
  border: none;
}
.checkout-form-col section, .checkout-form-col .card, .checkout-form-col .row > .col-12 {
  margin-bottom: 2rem;
}
.checkout-form-col .mb-3, .checkout-form-col .form-group {
  margin-bottom: 0.7rem !important;
}
.checkout-form-col .form-label, .checkout-form-col label {
  font-size: 0.65rem !important;
  letter-spacing: 0.02em;
  color: var(--muted, #5a5045);
  text-transform: none;
  font-family: "Jost", sans-serif;
  font-weight: 400 !important;
  margin-bottom: 0.25rem !important;
}
.checkout-form-col .form-control,
.checkout-form-col input[type=text],
.checkout-form-col input[type=email],
.checkout-form-col input[type=tel],
.checkout-form-col input[type=password],
.checkout-form-col input[type=number],
.checkout-form-col select,
.checkout-form-col textarea {
  border: 1px solid var(--border, #e8e1d3) !important;
  background: #fff !important;
  border-radius: 6px !important;
  min-height: 54px;
  padding: 0.9rem 1rem !important;
  font-family: "Jost", sans-serif !important;
  font-size: 0.92rem !important;
  font-weight: 300 !important;
  color: var(--black, #1B1714) !important;
  letter-spacing: 0.01em;
  box-shadow: none !important;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.checkout-form-col .form-control:focus,
.checkout-form-col input[type=text]:focus,
.checkout-form-col input[type=email]:focus,
.checkout-form-col input[type=tel]:focus,
.checkout-form-col input[type=password]:focus,
.checkout-form-col input[type=number]:focus,
.checkout-form-col select:focus,
.checkout-form-col textarea:focus {
  outline: none !important;
  border-color: var(--black, #1B1714) !important;
  box-shadow: 0 0 0 1px var(--black, #1B1714) inset !important;
}
.checkout-form-col .form-control.is-invalid,
.checkout-form-col input[type=text].is-invalid,
.checkout-form-col input[type=email].is-invalid,
.checkout-form-col input[type=tel].is-invalid,
.checkout-form-col input[type=password].is-invalid,
.checkout-form-col input[type=number].is-invalid,
.checkout-form-col select.is-invalid,
.checkout-form-col textarea.is-invalid {
  border-color: #B84A3A !important;
  background-image: none !important;
  box-shadow: 0 0 0 1px #B84A3A inset !important;
}
.checkout-form-col .form-control::-moz-placeholder, .checkout-form-col input[type=text]::-moz-placeholder, .checkout-form-col input[type=email]::-moz-placeholder, .checkout-form-col input[type=tel]::-moz-placeholder, .checkout-form-col input[type=password]::-moz-placeholder, .checkout-form-col input[type=number]::-moz-placeholder, .checkout-form-col select::-moz-placeholder, .checkout-form-col textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.32);
}
.checkout-form-col .form-control::placeholder,
.checkout-form-col input[type=text]::placeholder,
.checkout-form-col input[type=email]::placeholder,
.checkout-form-col input[type=tel]::placeholder,
.checkout-form-col input[type=password]::placeholder,
.checkout-form-col input[type=number]::placeholder,
.checkout-form-col select::placeholder,
.checkout-form-col textarea::placeholder {
  color: rgba(0, 0, 0, 0.32);
}
.checkout-form-col select.form-control,
.checkout-form-col select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none' stroke='%231B1714' stroke-width='1.5'><path d='M1 1l4 4 4-4'/></svg>") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
  padding-right: 2.4rem !important;
  cursor: pointer;
}
.checkout-form-col textarea, .checkout-form-col textarea.form-control {
  min-height: 110px;
  resize: vertical;
}
.checkout-form-col .invalid-feedback {
  font-size: 0.7rem;
  color: #B84A3A;
  letter-spacing: 0.02em;
  margin-top: 0.4rem;
}
.checkout-form-col .row {
  row-gap: 0.7rem;
}
.checkout-form-col .row > [class^=col-] {
  padding-inline: 0.35rem;
}
.checkout-form-col .row {
  margin-inline: -0.35rem;
}
.checkout-form-col .form-check {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.4rem 0;
  padding-left: 0;
}
.checkout-form-col .form-check .form-check-input {
  float: none;
  margin: 0 !important;
  width: 18px;
  height: 18px;
  border: 1px solid var(--border, #e8e1d3);
  border-radius: 3px;
  background: #fff;
  box-shadow: none !important;
  cursor: pointer;
  transition: all 0.2s;
}
.checkout-form-col .form-check .form-check-input:checked {
  background-color: var(--black, #1B1714);
  border-color: var(--black, #1B1714);
}
.checkout-form-col .form-check .form-check-input[type=radio] {
  border-radius: 50%;
}
.checkout-form-col .form-check .form-check-input[type=radio]:checked {
  background-image: radial-gradient(circle, #fff 4px, transparent 4.5px);
  background-color: var(--black, #1B1714);
}
.checkout-form-col .form-check .form-check-input:focus {
  box-shadow: 0 0 0 2px rgba(184, 149, 106, 0.2) !important;
}
.checkout-form-col .form-check .form-check-label {
  font-family: "Jost", sans-serif;
  font-size: 0.85rem !important;
  color: var(--black, #1B1714);
  line-height: 1.4;
  letter-spacing: 0.01em;
  cursor: pointer;
}
.checkout-form-col .ec-shipping-methods,
.checkout-form-col .payment-options,
.checkout-form-col .ec-payment-methods,
.checkout-form-col .list-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  border: none !important;
  background: transparent !important;
}
.checkout-form-col .ec-shipping-method,
.checkout-form-col .payment-method,
.checkout-form-col .list-group-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem !important;
  border: 1px solid var(--border, #e8e1d3) !important;
  background: #fff !important;
  border-radius: 6px !important;
  cursor: pointer;
  transition: all 0.2s;
}
.checkout-form-col .ec-shipping-method:hover,
.checkout-form-col .payment-method:hover,
.checkout-form-col .list-group-item:hover {
  border-color: var(--black, #1B1714) !important;
}
.checkout-form-col .ec-shipping-method.active, .checkout-form-col .ec-shipping-method.selected, .checkout-form-col .ec-shipping-method.bg-light,
.checkout-form-col .payment-method.active,
.checkout-form-col .payment-method.selected,
.checkout-form-col .payment-method.bg-light,
.checkout-form-col .list-group-item.active,
.checkout-form-col .list-group-item.selected,
.checkout-form-col .list-group-item.bg-light {
  border-color: var(--black, #1B1714) !important;
  background: var(--cream-mid, #F5EEE2) !important;
  box-shadow: 0 0 0 1px var(--black, #1B1714) inset;
}
.checkout-form-col .payment-method-item {
  position: relative;
  padding-left: 3.4rem !important;
}
.checkout-form-col .payment-method-item input.magic-radio {
  position: absolute;
  right: 1.2rem;
  top: 1.05rem;
  width: 16px;
  height: 16px;
  accent-color: var(--gold, #B8956A);
  cursor: pointer;
}
.checkout-form-col .payment-method-item label.form-label {
  font-family: "Cormorant Garamond", serif !important;
  font-size: 1.05rem !important;
  font-weight: 400 !important;
  color: var(--black, #1B1714) !important;
  letter-spacing: 0.02em;
  margin: 0 !important;
  cursor: pointer;
}
.checkout-form-col .payment-method-item::before {
  content: "";
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.checkout-form-col .payment-method-item:has(input#payment-cod)::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B8956A' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='9' r='5.5'/><path d='M9.5 9h5M12 6.5v5'/><path d='M3 19c2-1.5 5-2 7-2 1.4 0 2.4.3 3.5 0.8M14 18l2.5-1.4a1.4 1.4 0 0 1 1.7 0.2c0.4 0.4 0.4 1-0 1.4L15 21H6'/></svg>");
}
.checkout-form-col .payment-method-item:has(input#payment-bank_transfer)::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B8956A' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 9.5l9-5.5 9 5.5'/><path d='M4 10v8M9 10v8M15 10v8M20 10v8'/><path d='M3 20h18'/></svg>");
}
.checkout-form-col .payment-method-item:has(input#payment-stripe)::before,
.checkout-form-col .payment-method-item:has(input#payment-card)::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B8956A' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'><rect x='2.5' y='5.5' width='19' height='13' rx='1.5'/><path d='M2.5 10h19'/><path d='M5.5 15h3M11 15h2'/></svg>");
}
.checkout-form-col .payment-method-item:has(input#payment-paypal)::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B8956A' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'><path d='M7 21l1.5-9h4a4 4 0 0 0 4-4 4 4 0 0 0-4-4H8.5L6 21'/><path d='M9 16h3.5a4 4 0 0 0 4-4'/></svg>");
}
.checkout-form-col .payment-method-item:has(input#payment-apple_pay)::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B8956A' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'><path d='M16 13c-0.2-2.4 1.9-3.5 2-3.6-1.1-1.6-2.8-1.8-3.4-1.8-1.5-0.1-2.8 0.9-3.5 0.9-0.7 0-1.8-0.8-3-0.8-1.5 0-3 0.9-3.7 2.3-1.6 2.8-0.4 6.9 1.1 9.1 0.8 1.1 1.7 2.3 2.9 2.3 1.2 0 1.6-0.7 3-0.7 1.4 0 1.8 0.7 3 0.7 1.2 0 2-1.1 2.7-2.2 0.7-1.1 1-2.1 1.1-2.3-0.1-0.1-2.1-0.9-2.2-3.4z'/><path d='M14 5c0.7-0.8 1.2-1.9 1-3-1 0.1-2.2 0.6-2.9 1.4-0.6 0.7-1.1 1.8-1 2.8 1.1 0.1 2.2-0.5 2.9-1.2z'/></svg>");
}
.checkout-form-col .payment-method-item:has(input#payment-razorpay)::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B8956A' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'><path d='M8 4L5 13l4-1-3 8 9-12-4 1 4-5z'/></svg>");
}
.checkout-form-col .payment-method-item:has(input#payment-mollie)::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B8956A' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='9'/><path d='M8 12c0-2 1.8-3.5 4-3.5s4 1.5 4 3.5-1.8 3.5-4 3.5'/></svg>");
}
.checkout-form-col .payment-method-item::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B8956A' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='6' width='18' height='12' rx='2'/><path d='M3 10h18'/></svg>");
}
.checkout-form-col .payment-method-item:has(input.magic-radio:checked) {
  border-color: var(--gold, #B8956A) !important;
  background: rgba(184, 149, 106, 0.05) !important;
  box-shadow: 0 0 0 1px var(--gold, #B8956A) inset !important;
}
.checkout-form-col .payment_collapse_wrap {
  margin-top: 0.8rem;
  padding-left: 0;
  font-size: 0.78rem;
  color: var(--muted, #6B6B6B);
  line-height: 1.6;
}
.checkout-form-col .payment_collapse_wrap p {
  margin: 0 0 0.3rem;
}
.checkout-form-col .payment-method-logo {
  margin-top: 0.6rem;
}
.checkout-form-col .payment-method-logo img {
  max-height: 26px;
  width: auto;
  opacity: 0.85;
}
.checkout-form-col .checkout__coupon-section,
.checkout-form-col .checkout__apply-coupon,
.checkout-form-col .mobile-checkout-footer__coupon-btn,
.checkout-form-col #mobile-coupon-sheet,
.checkout-form-col .coupon-information,
.checkout-form-col .coupon-code-text,
.checkout-form-col [class*=apply-coupon],
.checkout-form-col [class*=coupon-form] {
  display: none !important;
}
.checkout-form-col button[type=submit],
.checkout-form-col .btn-primary,
.checkout-form-col .btn-checkout {
  width: 100% !important;
  height: 56px !important;
  background: var(--black, #1B1714) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 6px !important;
  font-family: "Jost", sans-serif !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.04em !important;
  font-weight: 400 !important;
  text-transform: none !important;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: background 0.3s ease !important;
  cursor: pointer;
}
.checkout-form-col button[type=submit]:hover, .checkout-form-col button[type=submit]:focus,
.checkout-form-col .btn-primary:hover,
.checkout-form-col .btn-primary:focus,
.checkout-form-col .btn-checkout:hover,
.checkout-form-col .btn-checkout:focus {
  background: var(--gold, #B8956A) !important;
}
.checkout-form-col button[type=submit]:disabled,
.checkout-form-col .btn-primary:disabled,
.checkout-form-col .btn-checkout:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.checkout-form-col .alert {
  border-radius: 6px;
  border: none;
  border-left: 2px solid currentColor;
  padding: 0.85rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  font-family: "Jost", sans-serif;
  margin-bottom: 1.5rem;
}
.checkout-form-col .alert.alert-success {
  background: rgba(42, 122, 74, 0.06);
  color: #2a7a4a;
}
.checkout-form-col .alert.alert-danger {
  background: rgba(184, 74, 58, 0.06);
  color: #B84A3A;
}
.checkout-form-col .alert.alert-warning {
  background: rgba(184, 149, 106, 0.08);
  color: var(--gold, #B8956A);
}

.checkout-form-col a {
  color: var(--black, #1B1714);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.checkout-form-col a:hover {
  color: var(--gold, #B8956A);
}

.nur-cart {
  padding: 2rem 0 6rem;
}
.nur-cart .container {
  max-width: 1280px;
  padding-inline: clamp(1rem, 3vw, 2.5rem);
}

.nur-cart-head {
  text-align: center;
  padding: 2rem 0 3rem;
  border-bottom: 0.5px solid var(--border, #e8e1d3);
  margin-bottom: 3rem;
}

.nur-cart-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--black, #1B1714);
  line-height: 1;
  margin: 0 0 0.6rem;
  letter-spacing: 0.005em;
}

.nur-cart-meta {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted, #5a5045);
  font-family: "Jost", sans-serif;
}

.nur-cart-empty {
  max-width: 460px;
  margin: 4rem auto;
  text-align: center;
}

.nur-cart-empty-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 0.5px solid var(--border, #e8e1d3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted, #5a5045);
  margin-bottom: 1.5rem;
}
.nur-cart-empty-icon svg {
  width: 32px;
  height: 32px;
}

.nur-cart-empty-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--black, #1B1714);
  margin: 0 0 0.8rem;
}

.nur-cart-empty-sub {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--muted, #5a5045);
  margin: 0 auto 2rem;
}

.nur-cart-empty-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--black, #1B1714);
  color: #fff;
  text-decoration: none;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  transition: background 0.3s;
}
.nur-cart-empty-btn:hover {
  background: var(--gold, #B8956A);
}

.nur-cart-layout {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 360px);
  gap: 3rem;
  align-items: start;
}

@media (max-width: 900px) {
  .nur-cart-layout {
    grid-template-columns: 1fr;
  }
}
.nur-cart-row {
  display: grid;
  grid-template-columns: 96px 1fr auto auto auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 0.5px solid var(--border, #e8e1d3);
}

.nur-cart-row:last-child {
  border-bottom: none;
}

.nur-cart-row-img {
  width: 96px;
  height: 112px;
  background: var(--cream-mid, #F5EEE2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nur-cart-row-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.nur-cart-row-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.nur-cart-row-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  color: var(--black, #1B1714);
  text-decoration: none;
  font-weight: 400;
  line-height: 1.2;
}

.nur-cart-row-name:hover {
  color: var(--gold, #B8956A);
}

.nur-cart-row-meta {
  font-size: 0.7rem;
  color: var(--muted, #5a5045);
  letter-spacing: 0.04em;
}

.nur-cart-row-stock.out {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #B84A3A;
  margin-top: 0.3rem;
}

.nur-cart-row-remove {
  align-self: flex-start;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted, #5a5045);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 0.5rem;
  font-family: "Jost", sans-serif;
  transition: color 0.2s;
}

.nur-cart-row-remove:hover {
  color: #B84A3A;
}

.nur-cart-row-price,
.nur-cart-row-total {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: var(--black, #1B1714);
  font-weight: 500;
  text-align: right;
  min-width: 70px;
}

.nur-cart-row-total {
  font-size: 1.2rem;
}

@media (max-width: 700px) {
  .nur-cart-row {
    grid-template-columns: 80px 1fr;
    gap: 1rem;
  }
  .nur-cart-row-price,
  .nur-cart-row-qty,
  .nur-cart-row-total {
    grid-column: 2;
    text-align: left;
  }
}
.nur-cart-coupon {
  margin-top: 2rem;
}

.nur-coupon-row {
  display: flex;
  gap: 0;
  max-width: 360px;
  border-bottom: 0.5px solid var(--border, #e8e1d3);
}

.nur-coupon-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.8rem 0.4rem;
  font-family: "Jost", sans-serif;
  font-size: 0.8rem;
  color: var(--black, #1B1714);
}
.nur-coupon-input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.nur-coupon-input::placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.nur-coupon-input:focus {
  outline: none;
}

.nur-coupon-btn {
  background: transparent;
  border: none;
  padding: 0.8rem 0.4rem;
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold, #B8956A);
  cursor: pointer;
  font-family: "Jost", sans-serif;
  font-weight: 500;
}
.nur-coupon-btn:hover {
  color: var(--black, #1B1714);
}
.nur-coupon-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.nur-cart-summary {
  background: var(--cream-light, #FBF8F1);
  padding: 2rem 1.8rem;
  border: 0.5px solid var(--border, #e8e1d3);
  position: sticky;
  top: 100px;
}

.nur-cart-summary-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0 0 1.5rem;
  color: var(--black, #1B1714);
  padding-bottom: 1rem;
  border-bottom: 0.5px solid var(--border, #e8e1d3);
}

.nur-cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.5rem 0;
  font-size: 0.85rem;
  color: var(--black, #1B1714);
  font-family: "Jost", sans-serif;
}
.nur-cart-summary-row .muted {
  color: var(--muted, #5a5045);
  font-size: 0.85em;
}

.nur-cart-summary-row.total {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 0.5px solid var(--border, #e8e1d3);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.nur-cart-summary-remove {
  margin-left: 0.4rem;
  font-size: 0.7rem;
  color: #B84A3A;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.nur-cart-summary-note {
  font-size: 0.7rem;
  color: var(--muted, #5a5045);
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
  margin: 1rem 0 1.5rem;
}

.nur-cart-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  height: 52px;
  background: var(--black, #1B1714);
  color: #fff;
  text-decoration: none;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
}
.nur-cart-checkout-btn svg {
  width: 12px;
  height: 12px;
}
.nur-cart-checkout-btn:hover {
  background: var(--gold, #B8956A);
}

.nur-cart-continue {
  display: block;
  margin-top: 1rem;
  text-align: center;
  font-size: 0.7rem;
  color: var(--muted, #5a5045);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-family: "Jost", sans-serif;
}
.nur-cart-continue:hover {
  color: var(--black, #1B1714);
}

.nur-compare {
  background: var(--cream);
  padding: 2.5rem 0 4rem;
  min-height: 60vh;
}

.nur-section-rail {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.nur-compare-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.nur-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.6rem;
}

.nur-compare-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--black);
  margin: 0;
}

.nur-compare-table-wrap {
  border: 0.5px solid var(--border);
  background: #fff;
  overflow-x: auto;
}

.nur-compare-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  min-width: 600px;
}

.nur-compare-table th,
.nur-compare-table td {
  padding: 1.4rem 1.2rem;
  border-bottom: 0.5px solid var(--border);
  border-right: 0.5px solid var(--border);
  vertical-align: top;
  text-align: center;
}

.nur-compare-table th:last-child,
.nur-compare-table td:last-child {
  border-right: none;
}

.nur-compare-table tr:last-child th,
.nur-compare-table tr:last-child td {
  border-bottom: none;
}

.nur-compare-table th {
  width: 180px;
  background: var(--cream-mid);
  font-family: "Jost", sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  text-align: left;
  padding-left: 1.6rem;
}

.nur-compare-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

.nur-compare-thumb img {
  width: 100%;
  max-width: 200px;
  height: auto;
  aspect-ratio: 4/5;
  -o-object-fit: cover;
     object-fit: cover;
  background: var(--cream-mid);
}

.nur-compare-thumb-placeholder {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 4/5;
  background: var(--cream-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.nur-compare-thumb-placeholder svg {
  width: 60%;
  height: auto;
  opacity: 0.6;
}

.nur-compare-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--black);
  margin: 0;
  line-height: 1.3;
}

.nur-compare-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.nur-compare-name a:hover {
  color: var(--gold);
}

.nur-compare-stock {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nur-compare-stock.is-in {
  color: #5b8a4a;
}

.nur-compare-stock.is-out {
  color: #c0392b;
}

.nur-compare-desc {
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--muted);
  text-align: left;
}

.nur-compare-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.nur-compare-price-current {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: var(--black);
  font-weight: 400;
}

.nur-compare-price-old {
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: line-through;
}

.nur-compare-sku {
  font-family: "Jost", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.nur-compare-attr {
  font-size: 0.75rem;
  color: var(--black);
  letter-spacing: 0.02em;
}

.nur-compare-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.nur-compare-rating .bb-product-rating {
  --bb-rating-size: 16px;
}

.nur-compare-rating-count,
.nur-compare-rating-none {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.nur-compare-actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.nur-compare-cart-btn {
  background: var(--black);
  color: #fff;
  border: none;
  padding: 0.85rem 1rem;
  font-family: "Jost", sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s;
}

.nur-compare-cart-btn:hover:not(:disabled) {
  background: var(--gold);
}

.nur-compare-cart-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.nur-compare-remove {
  background: transparent;
  color: var(--muted);
  border: 0.5px solid var(--border);
  padding: 0.65rem 0.8rem;
  font-family: "Jost", sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: color 0.2s, border-color 0.2s;
}

.nur-compare-remove:hover {
  color: var(--black);
  border-color: var(--black);
}

.nur-compare-remove svg {
  width: 12px;
  height: 12px;
}

.nur-compare-empty {
  text-align: center;
  padding: 5rem 1.5rem;
  background: #fff;
  border: 0.5px solid var(--border);
}

.nur-compare-empty-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.6rem;
  color: var(--gold);
  opacity: 0.6;
}

.nur-compare-empty-icon svg {
  width: 100%;
  height: 100%;
}

.nur-compare-empty-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--black);
  margin: 0 0 0.7rem;
}

.nur-compare-empty-text {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin: 0 0 2rem;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.nur-compare-empty-cta {
  display: inline-block;
  padding: 1rem 2.2rem;
  background: var(--black);
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s;
}

.nur-compare-empty-cta:hover {
  background: var(--gold);
  color: #fff;
}

@media (max-width: 720px) {
  .nur-section-rail {
    padding: 0 1rem;
  }
  .nur-compare-title {
    font-size: 1.8rem;
  }
  .nur-compare-table th {
    width: 110px;
    padding: 1rem 0.8rem;
    font-size: 0.52rem;
  }
  .nur-compare-table td {
    padding: 1rem 0.8rem;
  }
  .nur-compare-thumb img,
  .nur-compare-thumb-placeholder {
    max-width: 130px;
  }
}
.nur-tracking {
  background: var(--cream);
  padding: 3rem 0 5rem;
  min-height: 60vh;
}

.nur-tracking-header {
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.nur-tracking-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--black);
  margin: 0 0 0.8rem;
  line-height: 1.05;
}

.nur-tracking-sub {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  letter-spacing: 0.02em;
  margin: 0;
}

.nur-tracking-card {
  max-width: 480px;
  margin: 0 auto 3rem;
  padding: 2rem;
  background: #fff;
  border: 0.5px solid var(--border);
}

.nur-tracking-card form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.nur-tracking-card .form-group {
  margin: 0 !important;
}

.nur-tracking-card label,
.nur-tracking-card .form-label {
  font-family: "Jost", sans-serif;
  font-size: 0.6rem !important;
  letter-spacing: 0.24em !important;
  text-transform: uppercase !important;
  color: var(--muted) !important;
  font-weight: 500 !important;
  margin-bottom: 0.45rem !important;
  display: block;
}

.nur-tracking-card input.form-control,
.nur-tracking-card input[type=text],
.nur-tracking-card input[type=email],
.nur-tracking-card input[type=tel] {
  width: 100% !important;
  padding: 0.85rem 1rem !important;
  background: var(--cream-mid) !important;
  border: 0.5px solid var(--border) !important;
  border-radius: 0 !important;
  font-family: "Jost", sans-serif !important;
  font-size: 0.85rem !important;
  color: var(--black) !important;
  transition: border-color 0.2s !important;
}

.nur-tracking-card input:focus {
  outline: none !important;
  border-color: var(--gold) !important;
}

.nur-tracking-card .btn,
.nur-tracking-card button[type=submit] {
  width: 100%;
  height: 52px;
  padding: 0 2rem;
  background: var(--black) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 0 !important;
  font-family: "Jost", sans-serif !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.26em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  cursor: pointer;
  transition: background 0.3s !important;
}

.nur-tracking-card button[type=submit]:hover {
  background: var(--gold) !important;
}

.nur-tracking-card .invalid-feedback,
.nur-tracking-card .text-danger {
  color: #c0392b !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.04em;
  margin-top: 0.4rem;
}

.nur-tracking-card .is-invalid {
  border-color: #c0392b !important;
}

.nur-tracking-result {
  max-width: 1100px;
  margin: 0 auto;
}

.nur-tracking-result-head {
  margin-bottom: 2rem;
  padding-bottom: 1.4rem;
  border-bottom: 0.5px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

.nur-tracking-result-code {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--black);
  margin: 0 0 0.4rem;
}

.nur-tracking-result-meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
}

.nur-shipment-rows {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.nur-shipment-row {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  font-size: 0.78rem;
  color: var(--black);
  flex-wrap: wrap;
}

.nur-shipment-label {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 140px;
  flex-shrink: 0;
}

.nur-shipment-mono {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--black);
}

.nur-shipment-row--note .muted-italic {
  font-style: italic;
  color: var(--muted);
  line-height: 1.65;
}

.nur-tracking-extlink {
  color: var(--black);
  text-decoration: none;
  border-bottom: 0.5px solid var(--border);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.nur-tracking-extlink:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.nur-tracking-address {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--black);
  margin: 0;
}

.nur-tracking-address .muted {
  color: var(--muted);
}

.nur-tracking-payment {
  font-size: 0.85rem;
  color: var(--black);
  line-height: 1.7;
  margin: 0;
}

.nur-tracking-error {
  max-width: 480px;
  margin: 2rem auto 0;
  padding: 1.4rem 1.6rem;
  border: 0.5px solid var(--gold);
  background: rgba(184, 149, 106, 0.06);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.nur-tracking-error svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

.nur-tracking-error-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  color: var(--black);
  margin: 0 0 0.3rem;
}

.nur-tracking-error-body {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

@media (max-width: 720px) {
  .nur-tracking-title {
    font-size: 1.8rem;
  }
  .nur-tracking-card {
    padding: 1.6rem 1.2rem;
  }
  .nur-tracking-result-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .nur-shipment-label {
    min-width: 100%;
  }
}
.section-head {
  text-align: center;
  margin: 0 auto 48px;
  max-width: 680px;
}
.section-head .eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--nur-gold, #B8956A);
  margin-bottom: 12px;
}
.section-head .display {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px);
  color: var(--nur-ink, #1B1714);
  margin: 0;
  line-height: 1.15;
}

.nur-hero {
  position: relative;
  min-height: 88vh;
  color: #fff;
  overflow: hidden;
  background: #111;
  display: flex;
  align-items: flex-end;
}
.nur-hero .nur-hero-bg {
  position: absolute;
  inset: 0;
}
.nur-hero .nur-hero-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.nur-hero .nur-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.55) 100%);
}
.nur-hero .nur-hero-inner {
  position: relative;
  z-index: 1;
  padding: 0 6vw 12vh;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.nur-hero .nur-hero-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 24px;
}
.nur-hero .nur-hero-meta::before, .nur-hero .nur-hero-meta::after {
  content: "";
  display: inline-block;
  flex: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  margin: 0.65em 16px 0;
}
.nur-hero .nur-hero-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1.05;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.nur-hero .nur-hero-title span {
  display: block;
}
.nur-hero .nur-hero-title em {
  display: block;
  font-style: italic;
  font-weight: 300;
}
.nur-hero .nur-hero-lede {
  font-size: 16px;
  max-width: 480px;
  opacity: 0.92;
  margin: 0 0 32px;
}
.nur-hero .nur-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
  background: transparent;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  transition: opacity 0.2s ease;
}
.nur-hero .nur-hero-cta .cta-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}
.nur-hero .nur-hero-cta:hover {
  opacity: 0.85;
}
.nur-hero .nur-hero-cta:hover .cta-line {
  width: 48px;
}

.nur-category-mosaic {
  padding: 96px 0 80px;
}
.nur-category-mosaic .container {
  max-width: 1280px;
  padding: 0 32px;
  margin: 0 auto;
}
.nur-category-mosaic .collection-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 0.5px solid var(--border, #e8e1d3);
}
.nur-category-mosaic .collection-intro {
  max-width: 540px;
}
.nur-category-mosaic .collection-intro .sec-eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold, #B8956A);
  margin: 0 0 12px;
}
.nur-category-mosaic .collection-intro .sec-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  font-weight: 300;
  color: var(--nur-ink, #1B1714);
  line-height: 1.05;
  margin: 0 0 14px;
}
.nur-category-mosaic .collection-intro .sec-body {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted, #5a5045);
  margin: 0;
}
.nur-category-mosaic .btn-line, .nur-category-mosaic .btn-line-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 0.5px solid var(--nur-ink, #1B1714);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--nur-ink, #1B1714);
  text-decoration: none;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  white-space: nowrap;
  transition: gap 0.2s, color 0.2s;
}
.nur-category-mosaic .btn-line svg, .nur-category-mosaic .btn-line-light svg {
  stroke: currentColor;
}
.nur-category-mosaic .btn-line:hover, .nur-category-mosaic .btn-line-light:hover {
  gap: 14px;
  color: var(--gold, #B8956A);
}
.nur-category-mosaic .mosaic-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-auto-rows: 1fr;
}
.nur-category-mosaic .mosaic-grid--1 {
  grid-template-columns: 1fr;
}
.nur-category-mosaic .mosaic-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.nur-category-mosaic .mosaic-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.nur-category-mosaic .mosaic-grid--4 {
  grid-template-rows: 1fr 1fr;
}
.nur-category-mosaic .mosaic-grid--4 .mosaic-1 {
  grid-row: 1/3;
}
.nur-category-mosaic .mosaic-grid--4 .mosaic-4 {
  grid-column: 2/4;
}
.nur-category-mosaic .mosaic-tile {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  background: var(--cream-mid, #F5EEE2);
  min-height: 280px;
}
.nur-category-mosaic .mosaic-tile-bg {
  position: absolute;
  inset: 0;
}
.nur-category-mosaic .mosaic-tile-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.nur-category-mosaic .mosaic-tile-bg svg {
  width: 65%;
  height: 65%;
  margin: auto;
  display: block;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.nur-category-mosaic .mosaic-tile:hover .mosaic-tile-bg img {
  transform: scale(1.04);
}
.nur-category-mosaic .mosaic-overlay {
  position: absolute;
  inset: 0;
  padding: 20px 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.35) 100%);
  color: #fff;
}
.nur-category-mosaic .mosaic-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nur-category-mosaic .mosaic-eyebrow {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.85;
}
.nur-category-mosaic .mosaic-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
}
.nur-category-mosaic .mosaic-arrow {
  font-size: 18px;
  opacity: 0.85;
  transition: transform 0.2s ease;
}
.nur-category-mosaic .mosaic-tile:hover .mosaic-arrow {
  transform: translateX(6px);
  opacity: 1;
}
@media (max-width: 900px) {
  .nur-category-mosaic .collection-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .nur-category-mosaic .mosaic-grid--4 {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: auto;
  }
  .nur-category-mosaic .mosaic-grid--4 .mosaic-1 {
    grid-row: auto;
    grid-column: 1/3;
  }
  .nur-category-mosaic .mosaic-grid--4 .mosaic-4 {
    grid-column: 1/3;
  }
}

.nur-feature {
  padding: 80px 0;
}
.nur-feature .container {
  max-width: 1280px;
  padding: 0 32px;
  margin: 0 auto;
}
.nur-feature .nur-feature-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.nur-feature--text-left .nur-feature-layout {
  grid-template-columns: 1fr 1.1fr;
}
.nur-feature--text-left .nur-feature-layout .nur-feature-copy {
  order: 1;
}
.nur-feature--text-left .nur-feature-layout .nur-feature-media {
  order: 2;
}
.nur-feature--cream {
  background: var(--cream-mid, #F5EEE2);
}
.nur-feature--dark {
  background: #1B1714;
  color: #fff;
}
.nur-feature--dark .sec-body {
  color: rgba(255, 255, 255, 0.7);
}
.nur-feature .nur-feature-media {
  aspect-ratio: 4/5;
  background: var(--cream-mid, #F5EEE2);
  overflow: hidden;
  position: relative;
}
.nur-feature .nur-feature-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.nur-feature .nur-feature-copy {
  max-width: 460px;
}
.nur-feature .nur-feature-copy .sec-eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold, #B8956A);
  margin: 0 0 14px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
}
.nur-feature .nur-feature-copy .sec-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin: 0 0 24px;
}
.nur-feature .nur-feature-copy .sec-body {
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted, #5a5045);
  margin: 0 0 28px;
}
.nur-feature .btn-dark {
  display: inline-block;
  padding: 14px 26px;
  background: #1B1714;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  font-family: "Jost", sans-serif;
  transition: background 0.3s ease;
}
.nur-feature .btn-dark:hover {
  background: var(--gold, #B8956A);
}
@media (max-width: 900px) {
  .nur-feature .nur-feature-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .nur-feature--text-left .nur-feature-layout {
    grid-template-columns: 1fr;
  }
  .nur-feature--text-left .nur-feature-layout .nur-feature-copy {
    order: 2;
  }
  .nur-feature--text-left .nur-feature-layout .nur-feature-media {
    order: 1;
  }
}

.nur-products-shortcode {
  padding: 80px 0;
}
.nur-products-shortcode .container {
  max-width: 1280px;
  padding: 0 32px;
  margin: 0 auto;
}
.nur-products-shortcode .product-grid {
  display: grid;
  gap: 32px 24px;
  grid-template-columns: repeat(4, 1fr);
}
.nur-products-shortcode .product-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.nur-products-shortcode .product-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.nur-products-shortcode .product-grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
.nur-products-shortcode .product-grid.cols-5 {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1100px) {
  .nur-products-shortcode .product-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 760px) {
  .nur-products-shortcode .product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.nur-atelier {
  padding: 96px 0;
  background: var(--nur-cream, #F5EEE2);
}
.nur-atelier .container {
  max-width: 1280px;
  padding: 0 32px;
  margin: 0 auto;
}
.nur-atelier .atelier-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.nur-atelier .atelier-copy .eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--nur-gold, #B8956A);
  margin-bottom: 16px;
}
.nur-atelier .atelier-copy .display {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  margin: 0 0 24px;
}
.nur-atelier .atelier-copy .lede {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(27, 23, 20, 0.78);
  margin: 0;
}
.nur-atelier .atelier-media {
  position: relative;
  aspect-ratio: 16/11;
  background: #1B1714;
  overflow: hidden;
}
.nur-atelier .atelier-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.92;
}
.nur-atelier .atelier-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  color: #fff;
}
.nur-atelier .atelier-play svg {
  width: 100%;
  height: 100%;
}
.nur-atelier .atelier-play svg circle {
  fill: rgba(0, 0, 0, 0.5);
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 1;
}
.nur-atelier .atelier-play svg polygon {
  fill: #fff;
}
.nur-atelier .atelier-play:hover svg circle {
  fill: rgba(0, 0, 0, 0.7);
}
@media (max-width: 900px) {
  .nur-atelier .atelier-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

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

.nf-page {
  max-width: 1440px;
  margin: 0 auto;
  padding: 6rem 2.5rem;
  min-height: calc(100vh - var(--nav-h) - 50px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.2rem;
}

.nf-number {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(7rem, 16vw, 12rem);
  font-weight: 300;
  color: var(--black);
  line-height: 0.85;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

.nf-divider {
  width: 64px;
  height: 0.5px;
  background: var(--gold);
  opacity: 0.6;
  margin: 0.6rem 0;
}

.nf-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.nf-sub {
  max-width: 420px;
  font-size: 0.85rem;
  line-height: 1.85;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.nf-actions {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nf-btn {
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
}

.nf-btn.fill {
  background: var(--black);
  color: #fff;
  border: 0.5px solid var(--black);
}

.nf-btn.fill:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.nf-btn.line {
  background: transparent;
  color: var(--black);
  border: 0.5px solid var(--black);
}

.nf-btn.line:hover {
  background: var(--black);
  color: #fff;
}

.nf-btn svg {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

.contact-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.contact-hero {
  text-align: center;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.hero-eyebrow, .cta-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--black);
  letter-spacing: 0.01em;
  line-height: 1;
}

.hero-sub {
  max-width: 540px;
  font-size: 0.85rem;
  line-height: 1.85;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-top: 0.5rem;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  max-width: 520px;
  margin: 0 auto;
}

.field-input.textarea {
  height: auto;
  min-height: 140px;
  padding: 1rem;
  line-height: 1.6;
  resize: vertical;
}

.guide-hero {
  background: var(--cream-mid);
  padding: 5rem 2rem 4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  border-bottom: 0.5px solid var(--border);
}

.sec-nav {
  position: sticky;
  top: var(--nav-h);
  background: #fff;
  z-index: 100;
  padding: 1rem 1rem;
  border-bottom: 0.5px solid var(--border);
}

.sec-nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.sec-link {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 0.55rem 1.2rem;
  border: 0.5px solid transparent;
  transition: all 0.2s;
}

.sec-link:hover {
  color: var(--black);
  border-color: var(--border);
}

.sec-link.active {
  color: #fff;
  background: var(--black);
  border-color: var(--black);
}

.sec-link-divider {
  width: 0.5px;
  height: 14px;
  background: var(--border);
}

.guide-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
}

.sec-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.sec-intro {
  max-width: 560px;
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-top: 0.4rem;
}

.section-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
}

.chart-card,
.conv-card {
  border: 0.5px solid var(--border);
  border-radius: 6px;
  padding: 1.8rem 1.6rem;
  background: #fff;
}

.chart-head {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  color: var(--black);
  margin-bottom: 1rem;
}

.chart-table {
  border-top: 0.5px solid var(--border);
  display: flex;
  flex-direction: column;
}

.chart-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 0.6rem 0.4rem;
  border-bottom: 0.5px solid var(--border);
  font-size: 0.78rem;
  color: var(--black);
}

.chart-row.head {
  font-size: 0.55rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.necklace-chart .chart-row,
.necklace-chart .chart-row.head {
  grid-template-columns: 1.2fr 0.6fr 0.7fr 1fr;
}

.conv-eyebrow {
  font-size: 0.55rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.conv-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: var(--black);
  margin: 0.5rem 0 1rem;
}

.conv-toggle {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.conv-toggle-btn {
  flex: 1;
  padding: 0.55rem 0.8rem;
  background: transparent;
  border: 0.5px solid var(--border);
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: "Jost", sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}

.conv-toggle-btn:hover {
  color: var(--black);
  border-color: var(--black);
}

.conv-toggle-btn.active {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}

.conv-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
}

.conv-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}

.conv-input-wrap,
.conv-result {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: var(--black);
}

.conv-input-wrap select,
.conv-input-wrap input {
  border: 0.5px solid var(--border);
  padding: 0.4rem 0.6rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  background: #fff;
  color: var(--black);
  width: 80px;
  border-radius: 4px;
}

.conv-arrow {
  text-align: center;
  color: var(--gold);
  font-size: 1.2rem;
  padding: 0.3rem 0;
}

.conv-result {
  font-weight: 500;
  color: var(--gold);
}

.unit {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}

.how-to {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.2rem;
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--cream-mid);
  border-radius: 6px;
}

.how-to-img {
  width: 80px;
  height: 80px;
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.how-to-img svg {
  width: 38px;
  height: 38px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.how-to-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.how-to-label {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.how-to-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  color: var(--black);
}

.how-to-body {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.necklace-visual {
  background: var(--cream-mid);
  border: 0.5px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quality {
  background: #0A0A0A;
  color: var(--cream);
  padding: 5rem 2rem;
  text-align: center;
  margin-top: 3rem;
}

.q-eyebrow {
  font-size: 0.55rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.q-statement {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin: 1.5rem auto;
  max-width: 720px;
}

.q-statement em {
  font-style: italic;
  color: var(--gold-pale);
  font-weight: 300;
}

.q-divider {
  width: 60px;
  height: 0.5px;
  background: var(--gold);
  margin: 2rem auto;
}

.q-credentials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.q-cred {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: center;
}

.q-cred-val {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: var(--cream);
}

.q-cred-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232, 217, 192, 0.55);
}

.q-cred-divider {
  width: 0.5px;
  height: 28px;
  background: rgba(232, 217, 192, 0.18);
}

.bottom-cta {
  padding: 5rem 2rem;
  text-align: center;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.cta-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--black);
  font-weight: 300;
}

.cta-sub {
  max-width: 480px;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  line-height: 1.7;
}

.cta-btn-row {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-btn-fill,
.cta-btn-line {
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  cursor: pointer;
  border: 0.5px solid var(--black);
  transition: all 0.3s;
}

.cta-btn-fill {
  background: var(--black);
  color: #fff;
}

.cta-btn-fill:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.cta-btn-line {
  background: transparent;
  color: var(--black);
}

.cta-btn-line:hover {
  background: var(--black);
  color: #fff;
}

@media (max-width: 768px) {
  .nf-page {
    padding: 3rem 1.5rem;
  }
  .nf-actions {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }
  .nf-btn {
    justify-content: center;
  }
  .contact-page {
    padding: 3rem 1.2rem;
  }
  .section-grid {
    grid-template-columns: 1fr;
  }
  .q-credentials {
    flex-direction: column;
    gap: 1.2rem;
  }
  .q-cred-divider {
    width: 28px;
    height: 0.5px;
  }
}
.nur-contact-page {
  padding: 4rem 0 6rem;
}
.nur-contact-page .container {
  max-width: 1280px;
  padding-inline: clamp(1.25rem, 3vw, 2.5rem);
  margin: 0 auto;
}

.nur-contact-hero {
  text-align: center;
  margin-bottom: 4rem;
}
.nur-contact-hero .sec-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold, #B8956A);
  margin-bottom: 12px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
}
.nur-contact-hero .sec-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 300;
  color: var(--black, #1B1714);
  line-height: 1.05;
  margin: 0 0 1rem;
}
.nur-contact-hero .sec-body {
  max-width: 540px;
  margin: 0 auto;
  font-size: 13px;
  line-height: 1.85;
  color: var(--muted, #5a5045);
}

.nur-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.nur-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.nur-contact-info .nur-contact-info-row {
  padding-bottom: 1.5rem;
  border-bottom: 0.5px solid var(--border, #e8e1d3);
}
.nur-contact-info .nur-contact-info-row .eyebrow {
  display: block;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold, #B8956A);
  margin-bottom: 0.5rem;
  font-family: "Jost", sans-serif;
  font-weight: 500;
}
.nur-contact-info .nur-contact-info-row a, .nur-contact-info .nur-contact-info-row p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  color: var(--black, #1B1714);
  text-decoration: none;
  margin: 0;
  line-height: 1.5;
  transition: color 0.2s;
}
.nur-contact-info .nur-contact-info-row a:hover {
  color: var(--gold, #B8956A);
}

.nur-contact-form .contact-form {
  display: block;
}
.nur-contact-form .contact-form-group,
.nur-contact-form .form-group,
.nur-contact-form .mb-3 {
  margin-bottom: 1.2rem !important;
}
.nur-contact-form .form-label,
.nur-contact-form label {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--black, #1B1714);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.nur-contact-form .form-control,
.nur-contact-form .contact-form-input,
.nur-contact-form input[type=text],
.nur-contact-form input[type=email],
.nur-contact-form input[type=tel],
.nur-contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 0.5px solid var(--border, #e8e1d3);
  border-radius: 0;
  padding: 0.7rem 0.4rem;
  background: transparent;
  font-family: "Jost", sans-serif;
  font-size: 0.85rem;
  color: var(--black, #1B1714);
  transition: border-color 0.2s;
}
.nur-contact-form .form-control:focus,
.nur-contact-form .contact-form-input:focus,
.nur-contact-form input[type=text]:focus,
.nur-contact-form input[type=email]:focus,
.nur-contact-form input[type=tel]:focus,
.nur-contact-form textarea:focus {
  outline: none;
  box-shadow: none;
  border-bottom-color: var(--gold, #B8956A);
}
.nur-contact-form .form-control::-moz-placeholder, .nur-contact-form .contact-form-input::-moz-placeholder, .nur-contact-form input[type=text]::-moz-placeholder, .nur-contact-form input[type=email]::-moz-placeholder, .nur-contact-form input[type=tel]::-moz-placeholder, .nur-contact-form textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.nur-contact-form .form-control::placeholder,
.nur-contact-form .contact-form-input::placeholder,
.nur-contact-form input[type=text]::placeholder,
.nur-contact-form input[type=email]::placeholder,
.nur-contact-form input[type=tel]::placeholder,
.nur-contact-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.25);
}
.nur-contact-form textarea {
  min-height: 140px;
  resize: vertical;
}
.nur-contact-form .form-check,
.nur-contact-form .form-check-label {
  font-size: 0.75rem;
  color: var(--muted, #5a5045);
  line-height: 1.6;
}
.nur-contact-form .form-check a,
.nur-contact-form .form-check-label a {
  color: var(--gold, #B8956A);
  text-decoration: underline;
}
.nur-contact-form .form-check-input {
  margin-right: 0.6rem;
  border: 0.5px solid var(--border, #e8e1d3);
  border-radius: 2px;
}
.nur-contact-form .form-check-input:checked {
  background-color: var(--gold, #B8956A);
  border-color: var(--gold, #B8956A);
}
.nur-contact-form .invalid-feedback {
  font-size: 0.72rem;
  color: #B84A3A;
  margin-top: 0.4rem;
}
.nur-contact-form button[type=submit],
.nur-contact-form .btn-primary,
.nur-contact-form .btn {
  background: var(--black, #1B1714) !important;
  border: none !important;
  color: #fff !important;
  padding: 1rem 2rem !important;
  font-family: "Jost", sans-serif !important;
  font-size: 0.62rem !important;
  letter-spacing: 0.28em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  border-radius: 0 !important;
  margin-top: 0.5rem;
  transition: background 0.3s ease;
  cursor: pointer;
}
.nur-contact-form button[type=submit]:hover, .nur-contact-form button[type=submit]:focus,
.nur-contact-form .btn-primary:hover,
.nur-contact-form .btn-primary:focus,
.nur-contact-form .btn:hover,
.nur-contact-form .btn:focus {
  background: var(--gold, #B8956A) !important;
}
.nur-contact-form .alert {
  border-radius: 0;
  border: none;
  border-left: 2px solid currentColor;
  padding: 0.85rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
.nur-contact-form .alert.alert-success {
  background: rgba(42, 122, 74, 0.06);
  color: #2a7a4a;
}
.nur-contact-form .alert.alert-danger {
  background: rgba(184, 74, 58, 0.06);
  color: #B84A3A;
}

@media (max-width: 800px) {
  .nur-contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
/* ─── NUR FAQs (shortcode: [nur-faqs]) ─── */
.nur-faqs {
  max-width: 880px;
  margin: 0 auto;
  padding: 5rem 2.5rem 4rem;
}

.nur-faqs__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 3rem;
}

.nur-faqs__eyebrow {
  font-size: 0.55rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.nur-faqs__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--black);
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.nur-faqs__intro {
  max-width: 540px;
  font-size: 0.82rem;
  line-height: 1.8;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.nur-faqs__group + .nur-faqs__group {
  margin-top: 3.5rem;
}

.nur-faqs__group-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.02em;
  padding-bottom: 0.8rem;
  border-bottom: 0.5px solid var(--border);
  margin-bottom: 1rem;
}

.nur-faqs__group-desc {
  font-size: 0.78rem;
  color: var(--muted);
  margin: -0.3rem 0 1.2rem;
}

.nur-faqs__list {
  display: flex;
  flex-direction: column;
}

.nur-faq {
  border-bottom: 0.5px solid var(--border);
}

.nur-faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0.2rem;
  cursor: pointer;
  list-style: none;
  font-size: 0.92rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.01em;
}

.nur-faq__q::-webkit-details-marker {
  display: none;
}

.nur-faq__icon {
  width: 12px;
  height: 12px;
  color: var(--gold);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.nur-faq[open] .nur-faq__icon {
  transform: rotate(180deg);
}

.nur-faq__a {
  padding: 0 0.2rem 1.4rem;
  font-size: 0.82rem;
  line-height: 1.85;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.nur-faqs__empty {
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
  padding: 2rem;
}

/* ─── NUR Guide (shortcode: [nur-guide]) ─── */
/* All sizes ported from template/nur_guide.html. CSS variables (--cream-mid, --gold, --muted, --black, --border) come from _tokens.scss. */
html:has(.nur-guide) {
  scroll-behavior: smooth;
}

.nur-guide .guide-hero {
  max-width: 1440px;
  margin: 0 auto;
  padding: 5rem 2.5rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  border-bottom: 0.5px solid var(--border);
}
.nur-guide .hero-eyebrow, .nur-guide .cta-eyebrow {
  font-size: 0.55rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.nur-guide .hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  color: var(--black);
  line-height: 1;
  letter-spacing: 0.02em;
}
.nur-guide .hero-sub {
  max-width: 520px;
  font-size: 0.82rem;
  line-height: 1.85;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.nur-guide {
  /* ─── STICKY SECTION NAV ─── */
}
.nur-guide .sec-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: 50;
  background: #fff;
  border-bottom: 0.5px solid var(--border);
}
.nur-guide .sec-nav-row {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.nur-guide .sec-link {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.2s;
}
.nur-guide .sec-link:hover,
.nur-guide .sec-link.active {
  color: var(--gold);
}
.nur-guide .sec-link-divider {
  width: 0.5px;
  height: 12px;
  background: var(--border);
  margin: 0 0.2rem;
}
.nur-guide {
  /* ─── GUIDE SECTION ─── */
}
.nur-guide .guide-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 5rem 2.5rem 4rem;
  border-bottom: 0.5px solid var(--border);
}
.nur-guide .sec-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 3rem;
  align-items: center;
}
.nur-guide .sec-eyebrow {
  font-size: 0.55rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.nur-guide .sec-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--black);
  line-height: 1;
}
.nur-guide .sec-intro {
  max-width: 480px;
  font-size: 0.8rem;
  line-height: 1.8;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.nur-guide {
  /* Two-column grid: chart + converter */
}
.nur-guide .section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.nur-guide {
  /* Chart card */
}
.nur-guide .chart-card {
  border: 0.5px solid var(--border);
  background: #fff;
}
.nur-guide .chart-head {
  padding: 0.85rem 1.2rem;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  background: var(--cream-mid);
  border-bottom: 0.5px solid var(--border);
}
.nur-guide .chart-table {
  padding: 0.4rem 0;
}
.nur-guide .chart-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 0.85rem 1.2rem;
  align-items: center;
}
.nur-guide .chart-row.head {
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  border-bottom: 0.5px solid var(--border);
  padding-bottom: 0.85rem;
}
.nur-guide .chart-row + .chart-row:not(.head) {
  border-top: 0.5px solid var(--border);
}
.nur-guide .chart-row span {
  color: var(--black);
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.nur-guide .chart-row.head span {
  font-family: "Jost", sans-serif;
  font-size: 0.55rem;
  color: var(--muted);
}
.nur-guide {
  /* Necklace chart — 4 columns instead of 3 */
}
.nur-guide .necklace-chart .chart-row {
  grid-template-columns: 1fr 0.7fr 0.7fr 1.4fr;
}
.nur-guide {
  /* Converter card */
}
.nur-guide .conv-card {
  border: 0.5px solid var(--border);
  background: linear-gradient(135deg, #fbf8f1 0%, #f4ecdb 100%);
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.nur-guide .conv-eyebrow {
  font-size: 0.55rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.nur-guide .conv-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: var(--black);
  font-weight: 400;
  line-height: 1.1;
}
.nur-guide .conv-toggle {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.4rem;
}
.nur-guide .conv-toggle-btn {
  flex: 1;
  padding: 0.55rem 0;
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 0.5px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-weight: 500;
  font-family: "Jost", sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}
.nur-guide .conv-toggle-btn:hover {
  border-color: var(--black);
  color: var(--black);
}
.nur-guide .conv-toggle-btn.active {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}
.nur-guide .conv-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.4rem;
}
.nur-guide .conv-label {
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.nur-guide .conv-input-wrap {
  height: 42px;
  border: 0.5px solid var(--border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.85rem;
}
.nur-guide .conv-input-wrap input,
.nur-guide .conv-input-wrap select {
  background: transparent;
  border: none;
  outline: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: var(--black);
  flex: 1;
  font-weight: 500;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.nur-guide .conv-input-wrap .unit {
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  color: var(--muted);
  text-transform: uppercase;
}
.nur-guide .conv-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--gold);
  padding: 0.2rem 0;
}
.nur-guide .conv-result {
  height: 48px;
  background: var(--black);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.85rem;
}
.nur-guide .conv-result span:first-child {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 500;
}
.nur-guide .conv-result span:last-child {
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  opacity: 0.7;
  text-transform: uppercase;
}
.nur-guide {
  /* How to measure block */
}
.nur-guide .how-to {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border: 0.5px solid var(--border);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.4rem;
  align-items: center;
}
.nur-guide .how-to-img {
  height: 80px;
  background: linear-gradient(135deg, #f4ede0, #ddc9a8);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nur-guide .how-to-img svg {
  width: 42px;
  height: 42px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.4;
}
.nur-guide .how-to-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.nur-guide .how-to-label {
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.nur-guide .how-to-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  color: var(--black);
  font-weight: 400;
}
.nur-guide .how-to-body {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.7;
  letter-spacing: 0.02em;
}
.nur-guide {
  /* Necklace visual */
}
.nur-guide .necklace-visual {
  border: 0.5px solid var(--border);
  background: linear-gradient(135deg, #f5efe2, #e8d9bf);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  aspect-ratio: 1;
}
.nur-guide {
  /* ─── QUALITY SECTION ─── */
}
.nur-guide .quality {
  max-width: 1440px;
  margin: 0 auto;
  padding: 6rem 2.5rem 6rem;
  background: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  border-bottom: 0.5px solid var(--border);
}
.nur-guide .q-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.nur-guide .q-eyebrow::before,
.nur-guide .q-eyebrow::after {
  content: "";
  width: 36px;
  height: 0.5px;
  background: var(--black);
  opacity: 0.4;
}
.nur-guide .q-statement {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  line-height: 1.3;
  color: var(--black);
  max-width: 620px;
  letter-spacing: 0.005em;
}
.nur-guide .q-statement em {
  font-style: italic;
  font-weight: 400;
}
.nur-guide .q-divider {
  width: 48px;
  height: 0.5px;
  background: var(--black);
  opacity: 0.3;
  margin: 0.3rem 0;
}
.nur-guide .q-credentials {
  display: flex;
  gap: 2.4rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.nur-guide .q-cred {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.nur-guide .q-cred-val {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--black);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.nur-guide .q-cred-label {
  font-size: 0.55rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.6;
  font-weight: 500;
}
.nur-guide .q-cred-divider {
  width: 0.5px;
  height: 28px;
  background: var(--black);
  opacity: 0.15;
}
.nur-guide {
  /* ─── BOTTOM CTA ─── */
}
.nur-guide .bottom-cta {
  max-width: 1440px;
  margin: 0 auto;
  padding: 4rem 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.nur-guide .cta-eyebrow {
  font-size: 0.55rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.nur-guide .cta-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: var(--black);
  font-weight: 400;
  line-height: 1.15;
}
.nur-guide .cta-sub {
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 420px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  margin-top: 0.3rem;
}
.nur-guide .cta-btn-row {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.nur-guide .cta-btn-fill {
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  background: var(--black);
  color: #fff;
  padding: 1rem 2rem;
  border: none;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}
.nur-guide .cta-btn-fill:hover {
  background: var(--gold);
}
.nur-guide .cta-btn-line {
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  background: transparent;
  color: var(--black);
  padding: 1rem 2rem;
  border: 0.5px solid var(--black);
  font-weight: 500;
  font-family: "Jost", sans-serif;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s, color 0.3s;
}
.nur-guide .cta-btn-line:hover {
  background: var(--black);
  color: #fff;
}
@media (max-width: 768px) {
  .nur-guide .section-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .nur-guide .q-credentials {
    gap: 1.4rem;
  }
}