@charset "UTF-8";
:root {
  --bg: #FFFFFF;
  --bg-warm: #F4F3F3;
  --bg-dark: #111111;
  --ink: #111111;
  --ink-soft: #57595B;
  --ink-faint: #9AA0A3;
  --line: #E5E5E5;
  --accent: #D34B3B;
  --accent-hover: #B83C2E;
  --mooBlack: #111111;
  --mooWhite: #FFFFFF;
  --mooRed: var(--accent);
  --mooGrey: var(--ink-faint);
  --mooDarkGrey: var(--ink-soft);
  --radius: 14px;
  --radius-sm: 8px;
  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --maxw: 1320px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover, a:focus {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.ps-imgwrap img,
.pc-imgwrap img,
.ps-row-img img,
.pdp-main img,
.pdp-thumb img,
.thumbnail-box img,
.cart-item-img {
  mix-blend-mode: multiply;
}

.ps-imgwrap img,
.pc-imgwrap img {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%), linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%), linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-composite: intersect;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.moo-noscroll {
  overflow: hidden;
}

.btn {
  height: 52px;
  border-radius: 999px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.1s, background 0.15s, color 0.15s, border-color 0.15s;
}

.btn:active {
  transform: scale(0.97);
}

.btn {
  -webkit-tap-highlight-color: transparent;
}

.btn:focus, .btn.focus, .btn:active, .btn.active, .btn:active:focus {
  box-shadow: none !important;
}

.btn:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active {
  background-color: #B42318;
  border-color: #B42318;
  color: #fff;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-default:not(:disabled):not(.disabled):active {
  background-color: var(--bg-warm);
  border-color: var(--ink);
  color: var(--ink);
}

.btn-primary {
  background: #fff;
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--accent);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.breadcrumb {
  font-size: 13px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  background: none;
  padding: 0;
  border-radius: 0;
  margin-bottom: 0;
}

.breadcrumb a {
  color: var(--ink-soft);
  transition: color 0.15s;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb .sep {
  color: var(--ink-faint);
}

.breadcrumb .current {
  color: var(--ink);
  font-weight: 600;
}

.sheet-overlay, .sheet-overlay.is-open {
  display: none !important;
}

.sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -16px 50px rgba(0, 0, 0, 0.22);
  padding: 24px;
  transform: translateY(110%);
  transition: transform 0.32s cubic-bezier(0.65, 0, 0.2, 1);
  max-height: 85vh;
  display: flex;
  flex-direction: column;
}

.sheet.is-open {
  transform: translateY(0);
}

.sheet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.sheet-header h4 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin: 0;
}

.sheet-close {
  background: var(--bg-warm);
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  color: var(--ink);
  transition: background 0.15s;
}

.sheet-close:hover {
  background: var(--line);
}

.sheet-body {
  overflow-y: auto;
}

.sheet-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.sheet-field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
}

.sheet-field input {
  height: 48px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  font-family: var(--font-body);
  font-size: 15px;
  background: #fff;
  color: var(--ink);
}

.sheet-field input:focus {
  outline: none;
  border-color: var(--ink);
}

.sheet .checkbox {
  display: block;
  font-size: 13px;
  color: var(--ink-soft);
  margin: 4px 0 16px;
}

.sheet .checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  margin: 0;
}

.sheet .checkbox input {
  margin-top: 3px;
  accent-color: var(--ink);
}

.sheet .checkbox a {
  text-decoration: underline;
}

.sheet .help-block {
  color: var(--accent);
  font-size: 13px;
}

.sheet .help-block.hidden {
  display: none;
}

@media (min-width: 760px) {
  .sheet {
    left: 50%;
    right: auto;
    width: 460px;
    max-width: 92vw;
    bottom: 28px;
    border-radius: 20px;
    transform: translate(-50%, 130%);
  }
  .sheet.is-open {
    transform: translate(-50%, 0);
  }
}
.npopup:has(.successaddmessage) {
  display: none !important;
}

.npopup {
  position: fixed !important;
  top: auto !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  transform: none !important;
  width: 100% !important;
  max-width: 100% !important;
  z-index: 2147483647 !important;
  background: var(--bg);
  border: none;
  border-top: 1px solid var(--line);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -16px 50px rgba(0, 0, 0, 0.22);
  padding: 64px 24px 24px !important;
  max-height: 85vh;
  overflow: auto;
  animation: mooSheetFade 0.22s ease;
  pointer-events: auto !important;
}

[class*=popupBg i], [class*=popup-bg i], [class*=popup_bg i],
[id*=popupBg i], [id*=popup-bg i], [id*=popup_bg i],
[class*=popupOverlay i], [class*=popup-overlay i], [class*=popup_overlay i],
[id*=popupOverlay i], [id*=popup-overlay i], [id*=popup_overlay i],
.noverlay, #noverlay,
.modal-backdrop, .modal-overlay, .ui-widget-overlay, .lightbox-overlay,
.popupBg, .popupbg, .npopup-overlay, .npopupOverlay, .npopupbg,
#popupBg, #popupbg, #npopupBg, #npopupbg,
.npopup-bg, .npopup_bg, .nPopupBg, .nPopupOverlay {
  display: none !important;
  pointer-events: none !important;
  opacity: 0 !important;
}

.npopup .header, .npopup .modal-header {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  background: transparent;
  border: none;
  padding: 0 96px 14px 0;
  margin: 0 0 18px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.npopup .body, .npopup .modal-body, .npopup-body {
  padding: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
}

.npopup .body .image img, .npopup .modal-body .image img {
  border-radius: var(--radius-sm);
  background: var(--bg-warm);
}

.npopup .description {
  font-weight: 600;
}

.npopup .successaddmessageclear {
  display: none;
}

.npopup .footer {
  padding: 14px 0 0;
  margin: 14px 0 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.npopup .footer .left, .npopup .footer .right {
  display: flex;
  gap: 10px;
}

.npopup .footer .btn {
  height: 44px;
  border-radius: 999px;
  padding: 0 18px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.npopup .footer .btn:hover {
  border-color: var(--ink);
}

.npopup .footer .calltoaction, .npopup .footer .npopup-checkout {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.npopup .footer .calltoaction:hover, .npopup .footer .npopup-checkout:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.npopup-btn-close {
  position: absolute !important;
  top: 24px !important;
  right: 24px !important;
  width: auto !important;
  height: auto !important;
  background: var(--bg-warm) !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 8px 16px !important;
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  color: var(--ink) !important;
  cursor: pointer !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  z-index: 2 !important;
  transition: background 0.15s !important;
}

.npopup-btn-close::before {
  content: "Close" !important;
  font-size: 13px !important;
  line-height: 1 !important;
  color: var(--ink) !important;
}

.npopup-btn-close:hover {
  background: var(--line) !important;
}

.npopup .wishlistoverlay .body, .npopup .wishlistoverlay .modal-body {
  width: 100%;
}

.npopup .wishlistoverlay td {
  padding: 6px 8px;
  vertical-align: middle;
}

.npopup .wishlistoverlay .listname {
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}

.npopup .wishlistoverlay .addremovelink input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: var(--ink);
  cursor: pointer;
}

.npopup .createnewlist {
  padding: 0;
  margin-top: 8px;
}

.npopup .createnewlist a {
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--ink-soft);
}

.npopup .createnewlist a:hover {
  color: var(--accent);
}

.npopup #wishlisttoggle {
  padding: 4px 0 0;
}

.npopup #wishlisttoggle input[type=text] {
  height: 44px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  font-family: var(--font-body);
  font-size: 14px;
  margin-left: 8px;
}

.npopup #wishlisttoggle input[type=text]:focus {
  outline: none;
  border-color: var(--ink);
}

.npopup .wishlistoverlay hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 14px 0 0;
}

.npopup #closepopup {
  margin: 16px 0 0;
  width: 100%;
  height: 52px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.15s;
}

.npopup #closepopup:hover {
  background: var(--accent);
}

@keyframes mooSheetFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (min-width: 760px) {
  .npopup {
    left: 50% !important;
    right: auto !important;
    bottom: 28px !important;
    transform: translateX(-50%) !important;
    width: 460px !important;
    max-width: 92vw !important;
    border: 1px solid var(--line);
    border-radius: 20px;
  }
}
#recent_sales_content {
  position: fixed !important;
  left: 16px !important;
  bottom: 16px !important;
  top: auto !important;
  right: auto !important;
  z-index: 1050;
  max-width: 360px;
  width: calc(100% - 32px);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.18);
  padding: 12px 14px;
  font-family: var(--font-body);
  color: var(--ink);
  animation: mooSheetFade 0.22s ease;
}

#recent_sales_content table {
  width: 100%;
  border-collapse: collapse;
}

#recent_sales_content td {
  padding: 0;
  vertical-align: middle;
  border: none;
}

#recent_sales_content_img {
  width: 56px !important;
  padding-right: 12px !important;
}

#recent_sales_content_img a {
  display: block;
  line-height: 0;
}

#recent_sales_content_img img {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--bg-warm);
  object-fit: contain;
  padding: 4px;
  mix-blend-mode: multiply;
}

#recent_sales_content_description {
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-soft);
}

#recent_sales_content_description a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

#recent_sales_content_description a:hover {
  color: var(--accent);
}

#recent_sales_content_description .ago {
  display: block;
  margin-top: 4px;
  color: var(--ink-faint);
  font-size: 11px;
  font-weight: 500;
}

#mooToastContainer {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99999;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  max-width: 380px;
  pointer-events: none;
}

.moo-toast {
  pointer-events: auto;
  position: relative;
  padding: 14px 44px 14px 48px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--ink);
  border-radius: 10px;
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.22);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink);
  animation: mooToastIn 0.32s cubic-bezier(0.65, 0, 0.2, 1);
  transition: opacity 0.28s, transform 0.28s;
}

.moo-toast::before {
  position: absolute;
  left: 16px;
  top: 14px;
  font-family: "tabler-icons" !important;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 1;
  color: var(--ink-soft);
}

.moo-toast.alert-danger {
  border-left-color: #c0392b;
}

.moo-toast.alert-danger::before {
  content: "\eb15";
  color: #c0392b;
}

.moo-toast.alert-warning {
  border-left-color: #b5650a;
}

.moo-toast.alert-warning::before {
  content: "\ea06";
  color: #b5650a;
}

.moo-toast.alert-success {
  border-left-color: #1a7a3c;
}

.moo-toast.alert-success::before {
  content: "\ea5e";
  color: #1a7a3c;
}

.moo-toast.alert-info {
  border-left-color: var(--accent);
}

.moo-toast.alert-info::before {
  content: "\eac5";
  color: var(--accent);
}

.moo-toast.is-leaving {
  opacity: 0;
  transform: translateX(20px);
}

.moo-toast .close,
.moo-toast [data-dismiss=alert] {
  position: absolute;
  top: 6px;
  right: 10px;
  font-size: 22px;
  line-height: 1;
  color: var(--ink-faint);
  cursor: pointer;
  text-decoration: none;
  padding: 4px 8px;
  border: none;
  background: none;
  transition: color 0.15s;
}

.moo-toast .close:hover,
.moo-toast [data-dismiss=alert]:hover {
  color: var(--ink);
}

.moo-toast a:not(.close) {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@keyframes mooToastIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 560px) {
  #mooToastContainer {
    bottom: 12px;
    left: 12px;
    right: 12px;
    max-width: none;
  }
  .moo-toast {
    border-radius: 8px;
  }
}
[data-tip] {
  position: relative;
  cursor: help;
}

[data-tip]::after,
[data-tip]::before {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease, transform 0.18s cubic-bezier(0.65, 0, 0.2, 1);
  z-index: 1500;
}

[data-tip]::after {
  content: attr(data-tip);
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(15, 15, 15, 0.94);
  color: #fff;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.45;
  padding: 8px 12px;
  border-radius: 8px;
  width: max-content;
  max-width: 260px;
  text-align: center;
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.35);
  white-space: normal;
}

[data-tip]::before {
  content: "";
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  border: 6px solid transparent;
  border-top-color: rgba(15, 15, 15, 0.94);
}

[data-tip][data-tip-pos=bottom]::after {
  bottom: auto;
  top: calc(100% + 10px);
  transform: translateX(-50%) translateY(-4px);
}

[data-tip][data-tip-pos=bottom]::before {
  bottom: auto;
  top: calc(100% + 4px);
  transform: translateX(-50%) translateY(-4px);
  border-top-color: transparent;
  border-bottom-color: rgba(15, 15, 15, 0.94);
}

[data-tip]:hover::after,
[data-tip]:hover::before,
[data-tip]:focus-visible::after,
[data-tip]:focus-visible::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (hover: none) {
  [data-tip]::after, [data-tip]::before {
    display: none;
  }
}
.alert-bar {
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  padding: 9px 24px;
  line-height: 1.4;
}

.alert-bar span {
  display: inline-block;
  max-width: 1200px;
}

.alert-bar a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 800;
}

.alert-bar a:hover {
  color: var(--bg);
}

.alert-bar:empty {
  display: none;
}

@media (max-width: 560px) {
  .alert-bar {
    font-size: 11.5px;
    padding: 8px 14px;
    letter-spacing: 0.02em;
  }
}
.util-bar {
  background: var(--bg-dark);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.util-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
}

.util-bar a:hover {
  color: var(--accent);
}

.util-marquee {
  display: flex;
  gap: 24px;
}

.util-marquee span {
  opacity: 0.8;
}

.util-right {
  display: flex;
  gap: 18px;
}

.header {
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
}

.header .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.logo {
  display: flex;
  align-items: center;
  line-height: 0;
}

.logo svg {
  height: 64px;
  width: auto;
  display: block;
}

.search-wrap {
  position: relative;
}

.search {
  width: 100%;
  height: 50px;
  border-radius: 999px;
  background: var(--bg-warm);
  border: 1.5px solid transparent;
  padding: 0 24px 0 52px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.15s, background 0.15s;
}

.search:focus {
  outline: none;
  border-color: var(--ink);
  background: #fff;
}

.search::placeholder {
  color: var(--ink-faint);
}

.search-icon {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--ink-soft);
  pointer-events: none;
}

.search-kbd {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 4px;
}

.search-kbd kbd {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2px 6px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 22px;
  color: var(--ink);
  position: relative;
  transition: background 0.15s;
}

.icon-btn:hover {
  background: var(--bg-warm);
}

.icon-btn .badge {
  position: absolute;
  top: 6px;
  right: 6px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  padding: 0 4px;
  display: grid;
  place-items: center;
}

.locator-btn {
  margin-left: 8px;
  height: 44px;
  border-radius: 999px;
  background: var(--bg-warm);
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.15s;
}

.locator-btn:hover {
  background: var(--line);
}

.locator-btn i {
  font-size: 18px;
}

.nav {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 100px;
  z-index: 49;
}

.nav .container {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
  flex-wrap: wrap;
  position: relative;
}

.nav-secondary {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 2px;
  flex-wrap: wrap;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.nav-link:hover {
  background: var(--bg-warm);
}

.nav-link.is-sale {
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-link.is-sale:hover {
  background: rgba(211, 75, 59, 0.1);
}

.shop-btn {
  background: var(--accent);
  color: #fff;
  height: 44px;
  padding: 0 22px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.15s;
  cursor: pointer;
}

.shop-btn:hover {
  background: var(--accent-hover);
}

.shop-btn i {
  font-size: 16px;
  transition: transform 0.2s;
}

.shop-trigger.is-open .shop-btn i {
  transform: rotate(180deg);
}

.shop-mega {
  position: absolute;
  top: 100%;
  left: 24px;
  right: 24px;
  margin-top: 4px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: none;
  grid-template-columns: 280px 1fr;
  overflow: hidden;
  box-shadow: 0 24px 60px -12px rgba(0, 0, 0, 0.18);
  z-index: 100;
}

.shop-trigger.is-open .shop-mega {
  display: grid;
}

.shop-cats {
  padding: 12px 0;
  border-right: 1px solid var(--line);
}

.shop-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.1s;
  border-left: 3px solid transparent;
  text-decoration: none;
}

.shop-cat:hover, .shop-cat.is-active {
  background: var(--bg-warm);
  border-left-color: var(--ink);
}

.shop-cat i {
  font-size: 16px;
  color: var(--ink-faint);
}

.shop-subs {
  padding: 32px 40px;
  position: relative;
}

.shop-sub {
  display: none;
}

.shop-sub.is-active {
  display: block;
}

.shop-sub-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.shop-sub-title:hover {
  color: var(--accent);
}

.shop-sub-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px 32px;
  margin: 0;
  padding: 0;
}

.shop-sub-list a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.15s;
  display: block;
  padding: 4px 0;
}

.shop-sub-list a:hover {
  color: var(--accent);
}

.shop-sub-empty {
  font-size: 14px;
  color: var(--ink-soft);
}

.header-actions .nav-burger {
  display: none;
}

.moo-navsheet {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.moo-navsheet-cats {
  display: flex;
  flex-direction: column;
}

.moo-navsheet-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 2px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: color 0.15s;
}

.moo-navsheet-cat:first-child {
  border-top: 1px solid var(--line);
}

.moo-navsheet-cat i {
  font-size: 20px;
  color: var(--ink-faint);
  transition: color 0.15s, transform 0.15s;
}

.moo-navsheet-cat:hover {
  color: var(--accent);
}

.moo-navsheet-cat:hover i {
  color: var(--accent);
  transform: translateX(2px);
}

.moo-navsheet-links {
  display: flex;
  flex-direction: column;
}

.moo-navsheet-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 2px;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.moo-navsheet-links a i {
  font-size: 18px;
  color: var(--ink-soft);
}

.moo-navsheet-links a.is-sale, .moo-navsheet-links a.is-sale i {
  color: var(--accent);
}

.moo-navsheet-utility {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 4px;
}

.moo-navsheet-utility a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 2px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
}

.moo-navsheet-utility a:hover {
  color: var(--accent);
}

.moo-navsheet-utility a i {
  font-size: 18px;
}

@media (max-width: 760px) {
  nav.nav {
    display: none;
  }
  .header-actions {
    gap: 6px;
  }
  .header-actions .nav-burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    order: 99;
    margin-left: 6px;
    width: auto;
    height: 44px;
    padding: 0 18px;
    border-radius: 12px;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background 0.15s, transform 0.1s;
  }
  .header-actions .nav-burger i {
    font-size: 22px;
  }
  .header-actions .nav-burger::after {
    content: "Menu";
  }
  .header-actions .nav-burger:hover {
    background: var(--accent-hover);
  }
  .header-actions .nav-burger:active {
    transform: scale(0.96);
  }
}
footer {
  background: var(--bg);
  margin-top: 80px;
  border-top: 1px solid var(--line);
}

footer > .container {
  padding-top: 64px;
  padding-bottom: 48px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 56px;
  align-items: start;
}

.foot-col h5 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ink);
  display: inline-block;
}

.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.foot-col a {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.15s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.foot-col a::before {
  content: "";
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.2s;
}

.foot-col a:hover {
  color: var(--ink);
}

.foot-col a:hover::before {
  width: 14px;
}

.foot-badge {
  justify-self: end;
}

.foot-badge img {
  width: 150px;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.08));
}

.foot-bottom {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.72);
  padding: 36px 0 32px;
  position: relative;
}

.foot-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 3px;
  background: var(--accent);
  border-radius: 0 0 3px 3px;
}

.foot-bottom .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.foot-bottom-row {
  font-size: 14px;
  line-height: 1.55;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 10px;
  align-items: baseline;
  color: rgba(255, 255, 255, 0.72);
}

.foot-bottom-row strong {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.005em;
}

.foot-bottom a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  padding-bottom: 1px;
  transition: color 0.15s, border-color 0.15s;
}

.foot-bottom a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.foot-bottom .foot-sep {
  color: rgba(255, 255, 255, 0.32);
  font-weight: 400;
}

.foot-bottom .foot-copy {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  max-width: 720px;
  justify-content: center;
}

.foot-bottom .foot-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.foot-bottom .foot-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  font-size: 17px;
  color: #fff;
  padding: 0;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}

.foot-bottom .foot-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 36px;
  }
  .foot-badge {
    grid-column: 1/-1;
    justify-self: start;
    margin-top: 8px;
  }
}
@media (max-width: 760px) {
  footer > .container {
    padding-top: 48px;
    padding-bottom: 32px;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
  .foot-badge {
    grid-column: 1/-1;
    justify-self: center;
  }
  .foot-bottom {
    padding: 28px 0 24px;
  }
}
.ps-frame {
  position: relative;
  padding: 0 0 8px;
}

.ps-track-wrap {
  overflow: hidden;
}

.ps-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 16px;
  scrollbar-width: none;
  -webkit-user-select: none;
  user-select: none;
}

.ps-track.is-dragging {
  scroll-behavior: auto;
  scroll-snap-type: none;
  cursor: grabbing;
}

.ps-track.is-dragging * {
  pointer-events: none;
  cursor: grabbing !important;
}

.ps-track::-webkit-scrollbar {
  display: none;
}

.ps-card {
  flex: 0 0 clamp(220px, 22%, 280px);
  scroll-snap-align: start;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.15s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
}

.ps-card:hover {
  border-color: var(--ink-faint);
  transform: translateY(-3px);
}

.ps-card .ps-name::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.ps-card .ps-actions {
  position: relative;
  z-index: 2;
}

.ps-imgwrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--bg-warm);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.ps-imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
}

.ps-imgwrap .ps-product-art {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-align: center;
  padding: 24px;
  line-height: 1;
}

.ps-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

.ps-badge.ps-badge-sale {
  background: var(--accent);
}

.ps-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ps-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.ps-name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  min-height: 38px;
}

.ps-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 4px;
}

.ps-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.ps-price-old {
  font-size: 13px;
  color: var(--ink-faint);
  text-decoration: line-through;
  margin-left: 8px;
}

.ps-stock {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  width: fit-content;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

.ps-stock i {
  font-size: 13px;
  line-height: 1;
}

.ps-stock-in {
  background: #E0F2E7;
  color: #1a7a3c;
}

.ps-stock-online {
  background: #FFF0CC;
  color: #8a6100;
}

.ps-stock-pre {
  background: #D8EEF5;
  color: #1c6b85;
}

.ps-stock-out {
  background: var(--bg-warm);
  color: var(--ink-soft);
}

.ps-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.ps-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  transition: transform 0.1s, background 0.15s;
}

.ps-btn:active {
  transform: scale(0.94);
}

.ps-cart {
  background: var(--ink);
  color: #fff;
  flex: 1;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}

.ps-cart:hover {
  background: var(--accent);
}

.ps-fav {
  background: var(--bg-warm);
  color: var(--ink);
}

.ps-fav:hover {
  background: var(--line);
}

.ps-fav.is-on {
  color: var(--accent);
}

.ps-viewall {
  flex: 0 0 clamp(220px, 22%, 280px);
  scroll-snap-align: start;
  background: var(--ink);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  transition: background 0.15s;
  min-height: 100%;
  padding: 32px;
}

.ps-viewall:hover {
  background: var(--accent);
}

.ps-viewall-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 24px;
}

.ps-viewall-label {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.01em;
  text-align: center;
}

.ps-viewall-sub {
  font-size: 13px;
  opacity: 0.7;
}

.ps-scrollbar {
  height: 3px;
  background: var(--line);
  border-radius: 999px;
  margin: 4px 8px 0;
  position: relative;
  overflow: hidden;
}

.ps-scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 0.1s, width 0.1s;
}

.hero {
  margin-top: 24px;
}

.hero-carousel {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-slides {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.2, 1);
  will-change: transform;
  align-items: stretch;
}

.hero-slide {
  flex: 0 0 100%;
  position: relative;
  overflow: hidden;
}

.hero-slide-banner {
  line-height: 0;
  width: 100%;
  aspect-ratio: 16/7;
}

.hero-slide-banner > a {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slide-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
}

.hero-slide-text {
  min-height: 480px;
  padding: 48px;
  display: flex;
  align-items: flex-end;
  color: #fff;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.18 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease 0.15s, transform 0.7s ease 0.15s;
}

.hero-slide.is-active .hero-content {
  opacity: 1;
  transform: translateY(0);
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  opacity: 0.9;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: currentColor;
  opacity: 0.7;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero p {
  font-size: 17px;
  line-height: 1.5;
  max-width: 480px;
  opacity: 0.88;
  margin-bottom: 28px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 22px;
  z-index: 5;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
}

.hero-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.hero-arrow-prev {
  left: 20px;
}

.hero-arrow-next {
  right: 20px;
}

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}

.hero-dot {
  width: 22px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.15s, width 0.3s;
  padding: 0;
  border: none;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.hero-dot.is-active {
  background: #fff;
  width: 36px;
}

.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  width: 0%;
  z-index: 5;
  transition: width linear;
}

.section {
  margin-top: 80px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 24px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.025em;
}

.section-head h2 small {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-link {
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 4px;
  border-bottom: 1.5px solid var(--ink);
  transition: gap 0.15s;
}

.section-link:hover {
  gap: 12px;
}

.cats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.cat {
  aspect-ratio: 2/1;
  border-radius: var(--radius);
  background: var(--bg-warm);
  padding: 14px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, background 0.15s;
  text-decoration: none;
  color: inherit;
}

.cat:hover {
  background: var(--line);
  transform: translateY(-2px);
}

.cat-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: var(--ink);
  flex-shrink: 0;
}

.cat:hover .cat-icon {
  background: var(--ink);
  color: var(--bg);
}

.cat-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.cat-arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 16px;
  color: var(--ink-faint);
  opacity: 0;
  transition: opacity 0.15s, transform 0.15s;
}

.cat:hover .cat-arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}

.cat.cat-feature {
  grid-column: span 2;
  grid-row: span 2;
  background: var(--ink);
  color: var(--bg);
  aspect-ratio: auto;
  padding: 22px 28px;
  gap: 20px;
  background-image: radial-gradient(circle at 80% 20%, rgba(211, 75, 59, 0.4), transparent 50%);
}

.cat.cat-feature .cat-icon {
  background: var(--accent);
  color: #fff;
  width: 56px;
  height: 56px;
  font-size: 26px;
}

.cat.cat-feature .cat-name {
  font-size: 26px;
}

.cat.cat-feature .cat-arrow {
  color: var(--bg);
}

.editorial {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12px;
}

.ed-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 480px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  transition: transform 0.3s;
  isolation: isolate;
}

.ed-card:hover {
  transform: translateY(-4px);
}

.ed-card-large {
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.55) 0%, rgba(15, 15, 15, 0.85) 100%), url("https://www.mooloolabamusic.com.au/assets/webshop/cms/28/7528-1.png?1768366836") center/cover no-repeat;
}

.ed-card-large::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at 70% 30%, rgba(211, 75, 59, 0.35), transparent 60%);
  pointer-events: none;
}

.ed-card-small {
  background: linear-gradient(135deg, var(--accent), #A8392B);
}

.ed-tag {
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
}

.ed-card h3 {
  position: relative;
  z-index: 2;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.ed-card p {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.85;
  max-width: 380px;
  margin-bottom: 24px;
}

.ed-card .btn {
  align-self: flex-start;
  position: relative;
  z-index: 2;
}

.brand-strip {
  background: var(--bg-warm);
  margin: 80px 0 0;
  padding: 48px 0;
}

.brand-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px 40px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  max-width: 140px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink-soft);
  opacity: 0.6;
  filter: grayscale(100%);
  transition: opacity 0.2s, filter 0.2s, transform 0.2s, color 0.15s;
}

.brand-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-2px);
  color: var(--ink);
}

.brand-logo img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand-logo-italic {
  font-style: italic;
}

.brand-logo-thin {
  font-weight: 500;
  letter-spacing: 0.2em;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.15s, transform 0.2s;
}

.service-card:hover {
  border-color: var(--ink-faint);
  transform: translateY(-2px);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-warm);
  display: grid;
  place-items: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 16px;
}

.service-card a {
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card a:hover {
  color: var(--accent);
}

.newsletter {
  background: var(--ink);
  color: #fff;
  border-radius: 24px;
  padding: 64px 48px;
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: "MOOFAM";
  position: absolute;
  top: -20px;
  right: -20px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 200px;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
}

.newsletter h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  position: relative;
}

.newsletter h2 em {
  font-style: italic;
  color: var(--accent);
}

.newsletter p {
  font-size: 15px;
  opacity: 0.7;
  margin-top: 12px;
  max-width: 380px;
  position: relative;
}

.nl-form {
  display: flex;
  gap: 8px;
  position: relative;
}

.nl-form input {
  flex: 1;
  height: 56px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  padding: 0 24px;
  font-family: var(--font-body);
  font-size: 15px;
  color: #fff;
}

.nl-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.nl-form input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.12);
}

.nl-form button {
  height: 56px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  padding: 0 28px;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.15s;
}

.nl-form button:hover {
  background: #fff;
  color: var(--ink);
}

@media (max-width: 1100px) {
  .cats {
    grid-template-columns: repeat(4, 1fr);
  }
  .cat.cat-feature {
    grid-column: span 2;
    grid-row: span 1;
  }
}
@media (max-width: 760px) {
  .header .container {
    grid-template-columns: auto 1fr;
  }
  .header .search-wrap {
    grid-column: 1/-1;
    order: 3;
  }
  .header-actions {
    gap: 0;
    justify-content: flex-end;
  }
  .locator-btn {
    display: none;
  }
  .util-bar .util-marquee span:nth-child(n+2) {
    display: none;
  }
  .hero-slide-text {
    min-height: 380px;
    padding: 32px 24px;
  }
  .hero-arrow {
    display: none;
  }
  .editorial {
    grid-template-columns: 1fr;
  }
  .ed-card {
    min-height: 360px;
    padding: 28px;
  }
  .ed-tag {
    top: 28px;
    left: 28px;
  }
  .newsletter {
    grid-template-columns: 1fr;
    padding: 40px 28px;
  }
  .services {
    grid-template-columns: 1fr;
  }
  .cats {
    grid-template-columns: repeat(2, 1fr);
  }
  .cat.cat-feature {
    grid-column: span 2;
  }
  .section {
    margin-top: 56px;
  }
  .nav {
    top: 0;
    position: relative;
  }
}
.cat-page-header {
  padding: 32px 0 24px;
}

.cat-page-header .breadcrumb {
  margin-bottom: 20px;
}

.cat-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.cat-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.cat-title em {
  font-style: italic;
  color: var(--accent);
}

.cat-intro {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 480px;
  margin-top: 16px;
}

.cat-shortcuts {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.cat-shortcut {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  text-decoration: none;
}

.cat-shortcut:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.filter-bar {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 169px;
  z-index: 40;
}

.filter-bar-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0;
  flex-wrap: wrap;
  min-height: 55px;
}

.filter-bar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  flex-wrap: wrap;
  min-width: 0;
}

.filter-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cat-current {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.015em;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  transform: translateX(-8px);
  transition: max-width 0.4s cubic-bezier(0.65, 0, 0.2, 1), opacity 0.3s ease 0.05s, transform 0.35s cubic-bezier(0.65, 0, 0.2, 1);
}

.filter-bar.is-scrolled .cat-current {
  max-width: 320px;
  opacity: 1;
  transform: translateX(0);
  margin-right: 4px;
}

.filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: border-color 0.15s, background 0.15s;
  background: var(--bg);
}

.filter-toggle:hover {
  border-color: var(--ink);
}

.filter-toggle i {
  font-size: 16px;
}

.filter-count {
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 999px;
  min-width: 18px;
  text-align: center;
}

.filter-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 32px;
  padding: 0 10px 0 14px;
  background: var(--bg-warm);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
  border: none;
  color: var(--ink);
}

.chip:hover {
  background: var(--line);
}

.chip i {
  font-size: 14px;
}

.clear-all {
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--ink-soft);
  cursor: pointer;
}

.clear-all:hover {
  color: var(--accent);
}

.product-count {
  font-size: 13px;
  color: var(--ink-soft);
}

.sort-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sort-wrap label {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
}

.sort-select {
  height: 40px;
  padding: 0 36px 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230F0F0F' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>") no-repeat right 12px center;
  background-size: 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  appearance: none;
  transition: border-color 0.15s;
}

.sort-select:hover {
  border-color: var(--ink);
}

.sort-select:focus {
  outline: none;
  border-color: var(--ink);
}

.cat-body {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  padding: 28px 0 64px;
  transition: grid-template-columns 0.4s cubic-bezier(0.65, 0, 0.2, 1), gap 0.4s cubic-bezier(0.65, 0, 0.2, 1);
}

.cat-body.filters-hidden {
  grid-template-columns: 0px 1fr;
  gap: 0px;
}

.cat-body.filters-hidden .filters {
  opacity: 0;
  transform: translateX(-24px);
  pointer-events: none;
}

.filters {
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-x: hidden;
  overflow-y: auto;
  min-width: 0;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.65, 0, 0.2, 1);
  position: sticky;
  top: 252px;
  align-self: start;
  max-height: calc(100vh - 268px);
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}

.filters::-webkit-scrollbar {
  width: 6px;
}

.filters::-webkit-scrollbar-track {
  background: transparent;
}

.filters::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 3px;
}

.filters::-webkit-scrollbar-thumb:hover {
  background: var(--ink-faint);
}

.filter-group {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}

.filter-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 4px;
  cursor: pointer;
  user-select: none;
}

.filter-head h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.01em;
}

.filter-head i {
  font-size: 18px;
  color: var(--ink-soft);
  transition: transform 0.2s;
}

.filter-group.is-open .filter-head i {
  transform: rotate(180deg);
}

.filter-body {
  display: none;
  padding: 0 4px 16px;
}

.filter-group.is-open .filter-body {
  display: block;
}

.filter-opts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  cursor: pointer;
  padding: 4px 0;
}

.filter-opt input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: var(--ink);
  cursor: pointer;
}

.filter-opt-count {
  color: var(--ink-faint);
  font-size: 12px;
  margin-left: auto;
}

.filter-opt:hover .filter-opt-count {
  color: var(--ink-soft);
}

.filter-opts.is-long:not(.is-expanded) .filter-opt:nth-child(n+9) {
  display: none;
}

.filter-showmore {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 10px;
  display: inline-block;
  cursor: pointer;
}

.filter-showmore:hover {
  color: var(--accent);
}

.filter-range {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.filter-range input {
  flex: 1;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 10px;
  font-family: var(--font-body);
  font-size: 13px;
}

.filter-range input:focus {
  outline: none;
  border-color: var(--ink);
}

.filter-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 8px;
  display: inline-block;
}

.filter-link:hover {
  color: var(--accent);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.cat-body.filters-hidden .cat-grid {
  grid-template-columns: repeat(4, 1fr);
}

.pc-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.15s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.pc-card:hover {
  border-color: var(--ink-faint);
  transform: translateY(-3px);
}

.pc-imgwrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--bg-warm);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.pc-imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
}

.pc-product-art {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-align: center;
  padding: 24px;
  line-height: 1;
}

.pc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

.pc-badge.is-sale {
  background: var(--accent);
}

.pc-badge.is-pro {
  background: #B8860B;
  color: #fff;
}

.pc-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pc-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.pc-name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  min-height: 38px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pc-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 4px;
}

.pc-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.pc-price-old {
  font-size: 13px;
  color: var(--ink-faint);
  text-decoration: line-through;
}

.pc-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.pc-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  transition: transform 0.1s, background 0.15s;
  border: none;
  cursor: pointer;
}

.pc-btn:active {
  transform: scale(0.94);
}

.pc-cart {
  background: var(--ink);
  color: #fff;
  flex: 1;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}

.pc-cart:hover {
  background: var(--accent);
}

.pc-fav {
  background: var(--bg-warm);
  color: var(--ink);
}

.pc-fav:hover {
  background: var(--line);
}

.pc-fav.is-on {
  color: var(--accent);
}

.pc-editorial {
  grid-column: span 2;
  min-height: 320px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.pc-editorial::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(211, 75, 59, 0.4), transparent 60%);
  pointer-events: none;
}

.pc-editorial-tag {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  position: relative;
}

.pc-editorial h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  position: relative;
}

.pc-editorial p {
  font-size: 14px;
  opacity: 0.8;
  max-width: 320px;
  margin-bottom: 18px;
  position: relative;
  line-height: 1.5;
}

.pc-editorial-cta {
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  transition: gap 0.15s;
}

.pc-editorial:hover .pc-editorial-cta {
  gap: 12px;
}

.load-more-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 0;
}

.load-more-progress {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
}

.load-more-bar {
  width: 240px;
  height: 3px;
  background: var(--line);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}

.load-more-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--ink);
  border-radius: 999px;
  transition: width 0.3s;
}

.load-more-btn {
  height: 52px;
  padding: 0 32px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
}

.load-more-btn:hover {
  background: var(--ink);
  color: #fff;
}

@media (max-width: 1100px) {
  .cat-body {
    grid-template-columns: 240px 1fr;
    gap: 24px;
  }
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cat-body.filters-hidden .cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 760px) {
  .filter-bar {
    top: 0;
    position: relative;
  }
  .cat-page-header {
    padding: 24px 0 16px;
  }
  .cat-body {
    grid-template-columns: 1fr;
    transition: none;
  }
  .filters {
    display: none;
    transition: none;
    transform: none;
    position: static;
    max-height: none;
    overflow-y: visible;
    padding-right: 0;
  }
  .cat-grid, .cat-body.filters-hidden .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pc-editorial {
    grid-column: span 2;
  }
  .filter-bar-row {
    flex-wrap: wrap;
  }
  .filter-bar-left {
    width: 100%;
  }
  .filter-bar-right {
    width: 100%;
    justify-content: space-between;
  }
}
.moo-filter-sheet .sheet-body {
  padding: 0;
}

.sheet-body .filters {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: static;
  max-height: none;
  overflow: visible;
  padding: 0;
  opacity: 1;
  transform: none;
}

.sheet-body .filters .filter-group:first-child {
  padding-top: 0;
}

.moo-filter-sheet .moo-filter-apply {
  flex-shrink: 0;
  width: 100%;
  height: 56px;
  margin-top: 16px;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.15s;
}

.moo-filter-sheet .moo-filter-apply:hover {
  background: var(--accent-hover);
}

.ps-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.ps-row:last-child {
  border-bottom: none;
}

.ps-row-img {
  position: relative;
  display: block;
  width: 120px;
  height: 120px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-warm);
  line-height: 0;
}

.ps-row-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.ps-row-img .ps-badge {
  position: absolute;
  top: 8px;
  left: 8px;
}

.ps-row-info {
  min-width: 0;
}

.ps-row-brand {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.ps-row-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.35;
  margin: 0 0 6px;
}

.ps-row-name a {
  color: var(--ink);
}

.ps-row-name a:hover {
  color: var(--accent);
}

.ps-row-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ps-row-buy {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  text-align: right;
  flex-shrink: 0;
}

.ps-row-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  color: var(--ink);
}

.ps-row-from {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  color: var(--ink-faint);
}

.ps-row-price .ps-price-now {
  color: var(--accent);
}

.ps-row-price .ps-price-was {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  color: var(--ink-faint);
  text-decoration: line-through;
}

.ps-row-save {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  color: var(--accent);
}

.ps-row-form {
  margin: 0;
}

.ps-rbtn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.ps-rbtn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.ps-rbtn-ghost {
  background: #fff;
  color: var(--ink);
}

.ps-rbtn-ghost:hover {
  background: var(--bg-warm);
  border-color: var(--ink);
  color: var(--ink);
}

@media (max-width: 560px) {
  .ps-row {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 14px;
    padding: 16px 0;
  }
  .ps-row-img {
    width: 88px;
    height: 88px;
  }
  .ps-row-buy {
    grid-column: 1/-1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    width: 100%;
  }
  .ps-row-price {
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
  }
}
.thumbnail-box {
  list-style: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.thumbnail-box > .row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0;
}

.thumbnail-box > .row > [class*=col-] {
  padding: 0;
  flex: 1 1 auto;
  max-width: none;
  min-width: 0;
}

.thumbnail-box > .row > [class*=col-]:first-child {
  flex: 0 0 64px;
  position: relative;
}

.thumbnail-box img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: var(--bg-warm);
  border-radius: var(--radius-sm);
  padding: 4px;
}

.thumbnail-box .title {
  margin: 0 0 2px;
  font-size: 13px;
  line-height: 1.3;
}

.thumbnail-box .title a {
  font-weight: 700;
  color: var(--ink);
}

.thumbnail-box .title a:hover {
  color: var(--accent);
}

.thumbnail-box .price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--ink);
  margin: 0;
}

.thumbnail-box .price .text-danger {
  color: var(--accent);
}

.thumbnail-box .savings-container {
  position: absolute;
  top: 4px;
  left: 4px;
}

.thumbnail-box .badge {
  font-size: 10px;
  padding: 3px 7px;
}

.page-product .breadcrumb {
  padding: 24px 0 8px;
}

.pdp {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  padding: 16px 0 72px;
  align-items: start;
}

.pdp-left {
  min-width: 0;
}

.pdp-gallery {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
}

.pdp-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pdp-thumb {
  width: 76px;
  height: 76px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--bg-warm);
  cursor: pointer;
  transition: border-color 0.15s;
  overflow: hidden;
}

.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.pdp-thumb:hover {
  border-color: var(--ink-faint);
}

.pdp-thumb.is-active {
  border-color: var(--ink);
}

.pdp-main {
  position: relative;
  background: var(--bg-warm);
  border-radius: var(--radius);
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.pdp-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  cursor: zoom-in;
  transition: opacity 0.2s, transform 0.15s ease-out;
}

.pdp-main img.is-zoomed {
  transform: scale(2.4);
  cursor: zoom-out;
}

.pdp-main.is-zoomed .pdp-arrow, .pdp-main.is-zoomed .pdp-zoom {
  opacity: 0;
  pointer-events: none;
}

.pdp-main-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

.pdp-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 22px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: background 0.15s, transform 0.15s;
}

.pdp-arrow:hover {
  background: #fff;
}

.pdp-arrow:active {
  transform: translateY(-50%) scale(0.94);
}

.pdp-arrow-prev {
  left: 14px;
}

.pdp-arrow-next {
  right: 14px;
}

.pdp-zoom {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 19px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: background 0.15s;
}

.pdp-zoom:hover {
  background: #fff;
}

.pdp-info {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 174px;
  align-self: start;
}

.pdp-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.pdp-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.pdp-brand-actions {
  display: flex;
  gap: 6px;
}

.pdp-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 19px;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.pdp-icon-btn:hover {
  border-color: var(--ink);
}

.pdp-icon-btn.is-on {
  color: var(--accent);
  border-color: var(--accent);
}

.pdp-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.pdp-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 22px;
}

.pdp-stars {
  color: var(--accent);
  letter-spacing: 1px;
  font-size: 14px;
}

.pdp-rating a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pdp-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.pdp-price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 38px;
  letter-spacing: -0.02em;
}

.pdp-price-old {
  font-size: 18px;
  color: var(--ink-faint);
  text-decoration: line-through;
}

.pdp-save {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 999px;
}

.pdp-tax {
  font-size: 12px;
  color: var(--ink-faint);
  margin-bottom: 8px;
}

.pdp-sale-timer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.pdp-sale-timer i {
  font-size: 16px;
}

.pdp-included {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-warm);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.pdp-included i {
  font-size: 20px;
  color: var(--accent);
}

.pdp-buy {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  align-items: stretch;
}

.pdp-qty {
  width: 76px;
  height: 58px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  background: #fff;
  flex-shrink: 0;
}

.pdp-qty:focus {
  outline: none;
  border-color: var(--ink);
}

.pdp-options {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pdp-option-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pdp-option-row label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
}

.pdp-option-row .form-control {
  height: 44px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0 14px;
  font-family: var(--font-body);
  font-size: 14px;
  background: #fff;
}

.pdp-option-row textarea.form-control {
  height: auto;
  padding: 10px 14px;
}

.pdp-option-row .form-control:focus {
  outline: none;
  border-color: var(--ink);
}

.pdp-add {
  flex: 1;
  height: 58px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.15s, transform 0.1s;
}

.pdp-add:hover {
  background: var(--accent);
}

.pdp-add:active {
  transform: scale(0.99);
}

.pdp-add i {
  font-size: 20px;
}

.pdp-wishlist {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 22px;
  transition: border-color 0.15s, color 0.15s;
}

.pdp-wishlist:hover {
  border-color: var(--ink);
}

.pdp-wishlist.is-on {
  color: var(--accent);
  border-color: var(--accent);
}

.pdp-fulfil {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}

.pdp-fulfil-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}

.pdp-fulfil-row:last-child {
  border-bottom: none;
}

.pdp-fulfil-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--bg-warm);
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}

.pdp-fulfil-text {
  flex: 1;
  font-size: 14px;
}

.pdp-fulfil-text strong {
  display: block;
  font-weight: 700;
  margin-bottom: 1px;
}

.pdp-fulfil-text span {
  color: var(--ink-soft);
  font-size: 13px;
}

.pdp-fulfil-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: #1a7a3c;
}

.pdp-fulfil-status i {
  font-size: 15px;
}

.pdp-fulfil-link {
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--ink);
  white-space: nowrap;
}

.pdp-fulfil-link:hover {
  color: var(--accent);
}

.pdp-help {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pdp-help-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.pdp-help-card strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.pdp-help-card a {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
}

.pdp-help-card a:hover {
  text-decoration: underline;
}

#shipbox {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 4px 0 20px;
  background: #fff;
  overflow: hidden;
}

#shipbox .card-header {
  background: var(--bg-warm);
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}

#shipbox .card-header h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  margin: 0;
  letter-spacing: -0.01em;
}

#shipbox .card-body {
  padding: 18px;
}

#shipbox .btn-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-end;
}

#shipbox .btn-stack > div {
  flex: 1 1 120px;
  min-width: 0;
}

#shipbox label {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
  display: block;
  margin-bottom: 4px;
}

#shipbox .form-control {
  height: 44px;
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  font-family: var(--font-body);
  font-size: 14px;
  background: #fff;
  color: var(--ink);
}

#shipbox .form-control:focus {
  outline: none;
  border-color: var(--ink);
}

#shipbox .btn {
  height: 44px;
  width: 100%;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.15s;
  cursor: pointer;
}

#shipbox .btn:hover {
  background: var(--accent);
}

#shipbox hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 14px 0;
}

#shipbox .alert-shipping-error {
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
}

.pdp-review {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.pdp-review-head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.pdp-review-head .pdp-stars {
  color: var(--accent);
  letter-spacing: 1px;
  font-size: 14px;
}

.pdp-review-date {
  color: var(--ink-faint);
}

.pdp-review h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 6px;
}

.pdp-review p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.pdp-review-response {
  background: var(--bg-warm);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-top: 12px;
  font-size: 13px;
  color: var(--ink-soft);
}

.pdp-detail {
  margin-top: 48px;
}

.pdp-section {
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid var(--line);
}

.pdp-section:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.pdp-section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(24px, 2.6vw, 32px);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.pdp-prose {
  max-width: 720px;
}

.pdp-prose p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.pdp-prose p:first-child {
  font-size: 18px;
  color: var(--ink);
  font-weight: 500;
}

.spec-grid {
  max-width: 640px;
}

.spec-group {
  margin-bottom: 28px;
}

.spec-group:last-child {
  margin-bottom: 0;
}

.spec-group h4 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ink);
}

.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.spec-row dt {
  color: var(--ink-soft);
  flex-shrink: 0;
}

.spec-row dd {
  font-weight: 600;
  text-align: right;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15.5px;
  line-height: 1.5;
}

.feature-list i {
  color: var(--accent);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.pdp-disclaimer {
  background: var(--bg-warm);
  border-radius: var(--radius);
  padding: 24px 28px;
  max-width: 760px;
}

.pdp-disclaimer p {
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--ink-faint);
  margin-bottom: 12px;
}

.pdp-disclaimer p:last-child {
  margin-bottom: 0;
}

.pdp-disclaimer strong {
  color: var(--ink-soft);
  font-weight: 700;
}

.pdp-disclaimer a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pdp-section-terms:has(.pdp-disclaimer:empty),
.pdp-section-terms:has(.n-responsive-content:empty) {
  display: none;
}

.related {
  margin-bottom: 72px;
}

.related-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}

.related-head h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.02em;
}

.related-head h2 small {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.related .ps-product-art {
  font-size: 24px;
  line-height: 1.05;
}

@media (max-width: 1000px) {
  .pdp {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .pdp-info {
    position: static;
  }
}
@media (max-width: 760px) {
  .pdp-gallery {
    grid-template-columns: 1fr;
  }
  .pdp-thumbs {
    flex-direction: row;
    order: 2;
    overflow-x: auto;
  }
  .pdp-thumb {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
  }
  .pdp-main {
    order: 1;
  }
  .pdp-help {
    grid-template-columns: 1fr;
  }
}
.studio19-wrapper {
  margin: 12px 0 18px;
}

.studio19-wrapper:empty {
  display: none;
}

.studio19-wrapper .s19-component {
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  font-family: var(--font-body);
  color: var(--ink);
}

.studio19-wrapper .s19-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.studio19-wrapper .s19-rentfor {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.studio19-wrapper .s19-s19logo {
  height: 22px;
  width: auto;
  display: block;
}

.studio19-wrapper .s19-rental-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 14px;
}

.studio19-wrapper .s19-price-per-period {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.studio19-wrapper .s19-price-amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.studio19-wrapper .s19-per-period {
  font-size: 14px;
  color: var(--ink-soft);
}

.studio19-wrapper .s19-min-period {
  font-size: 12px;
  color: var(--ink-faint);
}

.studio19-wrapper .s19-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.studio19-wrapper .s19-apply-btn,
.studio19-wrapper .s19-learn-btn,
.studio19-wrapper .s19-purchase-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.studio19-wrapper .s19-apply-btn {
  background: var(--ink);
  color: #fff;
  border: 1.5px solid var(--ink);
}

.studio19-wrapper .s19-apply-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.studio19-wrapper .s19-learn-btn,
.studio19-wrapper .s19-purchase-btn {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--line);
}

.studio19-wrapper .s19-learn-btn:hover,
.studio19-wrapper .s19-purchase-btn:hover {
  border-color: var(--ink);
}

.checkout-header {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.checkout-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.checkout-header .logo {
  display: flex;
  align-items: center;
  line-height: 0;
}

.checkout-header .logo img, .checkout-header .logo svg {
  height: 40px;
  width: auto;
  display: block;
}

.checkout-secure {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.checkout-secure i {
  font-size: 18px;
  color: #1a7a3c;
}

.checkout-continue {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}

.checkout-continue:hover {
  color: var(--accent);
}

.checkout-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  margin-top: 64px;
  padding: 28px 0;
  font-size: 13px;
  color: var(--ink-faint);
}

.checkout-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 600px) {
  .checkout-continue {
    display: none;
  }
}
.cart-empty {
  max-width: 520px;
  margin: 64px auto;
  text-align: center;
  padding: 0 24px;
}

.cart-empty-icon {
  width: 88px;
  height: 88px;
  border-radius: 999px;
  background: var(--bg-warm);
  display: grid;
  place-items: center;
  font-size: 40px;
  color: var(--ink-faint);
  margin: 0 auto 24px;
}

.cart-empty h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.cart-empty p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.cart-page-bg {
  background: var(--bg-warm);
}

.cart-page {
  padding: 32px 0 72px;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 24px;
  align-items: start;
}

.cart-bag {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 32px 24px;
}

.cart-bag-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.cart-bag-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1;
}

.cart-bag-count {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-faint);
  white-space: nowrap;
}

.cart-fulfil {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 8px;
}

.cart-fulfil-opt {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 40px 14px 16px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.cart-fulfil-opt:hover {
  border-color: var(--ink-faint);
}

.cart-fulfil-input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.cart-fulfil-icon {
  font-size: 24px;
  color: var(--ink);
  flex-shrink: 0;
}

.cart-fulfil-text {
  min-width: 0;
}

.cart-fulfil-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.cart-fulfil-text span {
  display: block;
  font-size: 12px;
  color: var(--ink-faint);
}

.cart-fulfil-check {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 20px;
  color: var(--accent);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.15s, transform 0.15s;
}

.cart-fulfil-opt:has(.cart-fulfil-input:checked) {
  border-color: var(--ink);
  background: var(--bg-warm);
  box-shadow: inset 0 0 0 1px var(--ink);
}

.cart-fulfil-opt:has(.cart-fulfil-input:checked) .cart-fulfil-check {
  opacity: 1;
  transform: scale(1);
}

.cart-fulfil-opt:has(.cart-fulfil-input:focus-visible) {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.cart-items {
  display: flex;
  flex-direction: column;
}

.cart-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item:last-child {
  border-bottom: none;
  padding-bottom: 8px;
}

.cart-item-media {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  line-height: 0;
}

.cart-item-img {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-sm);
  background: var(--bg-warm);
  object-fit: contain;
  padding: 8px;
}

.cart-item-sku {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  background: var(--bg-warm);
  padding: 3px 8px;
  border-radius: 5px;
  line-height: 1.4;
}

.cart-item-body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
}

.cart-item-info {
  min-width: 0;
}

.cart-item-name {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.35;
  color: var(--ink);
  display: inline-block;
}

.cart-item-name:hover {
  color: var(--accent);
}

.cart-item-meta {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 4px;
}

.cart-tag {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--bg-warm);
  color: var(--ink-soft);
}

.cart-tag-free {
  background: var(--accent);
  color: #fff;
}

.cart-components {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-soft);
}

.cart-components input {
  width: 60px;
  height: 32px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 0 8px;
  margin-left: 6px;
}

.cart-item-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  flex-shrink: 0;
}

.cart-item-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  text-align: right;
}

.cart-item-each {
  font-size: 12px;
  color: var(--ink-faint);
}

.cart-item-disc {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
}

.cart-item-sub {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--ink);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-item-remove {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--ink-faint);
  font-size: 18px;
  transition: color 0.15s, background 0.15s;
}

.cart-item-remove:hover {
  color: var(--accent);
  background: var(--bg-warm);
}

.cart-stepper {
  display: inline-flex;
  align-items: center;
  height: 44px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}

.cart-step {
  width: 40px;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
  background: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}

.cart-step:hover {
  background: var(--bg-warm);
}

.cart-stepper .cart-qty {
  width: 42px;
  height: 100%;
  border: none;
  text-align: center;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  background: #fff;
  color: var(--ink);
  -moz-appearance: textfield;
}

.cart-stepper .cart-qty::-webkit-outer-spin-button, .cart-stepper .cart-qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-stepper .cart-qty:focus {
  outline: none;
}

.cart-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.cart-continue, .cart-update {
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.cart-continue {
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.cart-continue:hover {
  border-color: var(--ink);
}

.cart-update {
  border: 1.5px solid var(--ink);
  background: var(--ink);
  color: #fff;
}

.cart-update:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.cart-summary {
  position: sticky;
  top: 120px;
}

.cart-summary-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
}

.cart-summary-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}

.cart-sum-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cart-sum-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-soft);
}

.cart-sum-row > span:last-child {
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

.cart-sum-disc > span:last-child {
  color: var(--accent);
}

.cart-sum-disc a {
  color: var(--ink-faint);
  margin-left: 4px;
}

.cart-sum-note {
  font-size: 13px;
  color: var(--ink-faint);
  line-height: 1.5;
}

.cart-sum-divider {
  border-top: 1.5px solid var(--ink);
  margin: 16px 0;
}

.cart-grand-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.cart-grand-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
}

.cart-grand-sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.cart-grand-amt {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
}

.cart-coupon-wrap {
  margin-top: 16px;
  border-top: 1px solid var(--line);
}

.cart-coupon-wrap summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 0 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.cart-coupon-wrap summary::-webkit-details-marker {
  display: none;
}

.cart-coupon-wrap summary > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cart-coupon-wrap summary > span i {
  transition: transform 0.2s;
}

.cart-coupon-chev {
  color: var(--ink-faint);
  transition: transform 0.2s;
}

.cart-coupon-wrap[open] summary > span i {
  transform: rotate(45deg);
}

.cart-coupon-wrap[open] .cart-coupon-chev {
  transform: rotate(180deg);
}

.cart-coupon-body {
  padding-bottom: 16px;
}

.cart-coupon {
  display: flex;
  gap: 8px;
}

.cart-coupon-input {
  flex: 1;
  min-width: 0;
  height: 46px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 0 16px;
  font-family: var(--font-body);
  font-size: 14px;
}

.cart-coupon-input:focus {
  outline: none;
  border-color: var(--ink);
}

.cart-coupon-btn {
  height: 46px;
  padding: 0 22px;
  border-radius: 12px;
  border: none;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.15s;
}

.cart-coupon-btn:hover {
  background: var(--accent);
}

.cart-coupon-hint {
  font-size: 12px;
  color: var(--ink-faint);
  line-height: 1.5;
  margin-top: 10px;
}

.cart-cta {
  width: 100%;
  height: 64px;
  margin-top: 20px;
  border: none;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px 0 24px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 16px;
  transition: background 0.15s;
}

.cart-cta:hover {
  background: var(--accent-hover);
}

.cart-cta-arrow {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}

.cart-paypal {
  display: block;
  text-align: center;
  margin-top: 12px;
}

.cart-payicons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 18px;
}

.cart-payicon {
  width: 40px;
  height: 26px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
}

.cart-secure {
  text-align: center;
  font-size: 12px;
  color: var(--ink-faint);
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.cart-gifts {
  margin: 12px 0 4px;
  padding: 12px;
  background: var(--bg-warm);
  border-radius: var(--radius-sm);
}

.cart-gifts-title {
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 10px;
}

.cart-gifts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
}

.cart-gift {
  text-align: center;
  font-size: 12px;
}

.cart-gift img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 6px;
}

.cart-gift-name {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

@media (max-width: 980px) {
  .cart-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .cart-summary {
    position: static;
  }
  .cart-bag {
    padding: 24px;
  }
}
@media (max-width: 560px) {
  .cart-fulfil {
    grid-template-columns: 1fr;
  }
  .cart-item {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 16px;
    padding: 22px 0;
  }
  .cart-item-img {
    width: 88px;
    height: 88px;
  }
  .cart-item-body {
    flex-direction: column;
    gap: 14px;
  }
  .cart-item-side {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
  }
  .cart-item-price {
    align-items: flex-start;
    text-align: left;
  }
  .cart-summary-card {
    padding: 22px;
  }
}
.moo-main:has(.moo-co) {
  background: var(--bg-warm);
}

.moo-co {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 24px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 72px;
  font-family: var(--font-body);
  color: var(--ink);
}

.moo-co-top {
  grid-column: 1/-1;
}

.moo-co-main {
  grid-column: 1;
  min-width: 0;
}

.moo-co-aside {
  grid-column: 2;
}

.moo-co-top .page-header {
  border: none !important;
  padding: 0;
  margin: 0 0 14px;
}

.moo-co-top .page-header h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.01em;
  margin: 0;
}

.moo-co-top .card, .moo-co-top .card-body {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: none;
}

.moo-co-top a {
  color: var(--accent);
  font-weight: 700;
}

.moo-co-main > hr, .moo-co-main #_cpy_checkout_form > hr, .moo-co #_cpy_checkout_pl > hr {
  display: none;
}

.moo-co-main #_cpy_checkout_form > .row {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 28px 12px;
  margin-bottom: 20px;
}

.moo-co-main #_cpy_checkout_form > .row > [class*=col-] {
  flex: 0 0 100%;
  max-width: 100%;
}

.moo-co ._step {
  margin-bottom: 18px;
}

.moo-co ._step_no {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2px;
}

.moo-co ._step_desc {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.1;
}

.moo-co .form-group {
  margin-bottom: 16px;
}

.moo-co .form-group.row {
  display: block;
  margin-left: 0;
  margin-right: 0;
}

.moo-co .form-group.row > [class*=col-], .moo-co .form-group.row > .col-form-label {
  flex: 0 0 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.moo-co .form-group.row > .offset-sm-4, .moo-co .form-group.row > .offset-md-4 {
  margin-left: 0;
}

.moo-co label, .moo-co .col-form-label, .moo-co .control-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  display: block;
  padding: 0;
}

.moo-co label .text-danger, .moo-co .col-form-label .text-danger, .moo-co .control-label .text-danger {
  display: inline;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #c0392b;
  margin-left: 6px;
}

.moo-co .form-control {
  width: 100%;
  height: 48px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 0 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  box-shadow: none;
  transition: border-color 0.15s;
}

.moo-co select.form-control {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2356544D' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.moo-co textarea.form-control {
  height: auto;
  min-height: 88px;
  padding: 12px 14px;
  line-height: 1.5;
}

.moo-co .form-control:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: none;
}

.moo-co .help-block, .moo-co .help-inline, .moo-co .form-control-static {
  font-size: 12px;
  color: var(--ink-faint);
  margin-top: 6px;
}

.moo-co .help-inline a, .moo-co .help-block a {
  color: var(--accent);
}

.moo-co .n-wrapper-form-control {
  margin: 0;
}

.moo-co .radio, .moo-co .checkbox {
  margin: 0 0 8px;
}

.moo-co .radio label, .moo-co .checkbox label {
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  margin: 0;
}

.moo-co input[type=radio], .moo-co input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}

.moo-co #checkout_shipping .card, .moo-co #checkout_shipping .card-body {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}

.moo-co #checkout_shipping h4 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 17px;
  margin: 4px 0 12px;
}

.moo-co #checkout_shipping > .card > hr:first-of-type {
  display: none;
}

.moo-co #checkout_shipping table {
  width: 100%;
  display: block;
}

.moo-co #checkout_shipping tbody, .moo-co #checkout_shipping tr {
  display: block;
}

.moo-co #checkout_shipping td.radio {
  display: block;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 10px;
  transition: border-color 0.15s, background 0.15s;
}

.moo-co #checkout_shipping td.radio:has(input:checked) {
  border-color: var(--ink);
  background: var(--bg-warm);
  box-shadow: inset 0 0 0 1px var(--ink);
}

.moo-co #checkout_shipping td.radio label {
  font-weight: 600;
}

.moo-co #checkout_shipping td.radio h4 {
  display: inline;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

.moo-co #checkout_shipping td.radio .help-block {
  margin: 6px 0 0 26px;
}

.moo-co ._cpy_comment_pl hr {
  border-color: var(--line);
  margin: 18px 0;
}

.moo-co .alert {
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg-warm);
  color: var(--ink);
  font-size: 14px;
  padding: 14px 16px;
}

.moo-co .alert-warning {
  background: #FFF7E6;
  border-color: #F0D9A0;
}

.moo-co .alert-danger {
  background: #FDECEC;
  border-color: #F3C0C0;
  color: #B42318;
}

.moo-co .alert-success {
  background: #E9F7EF;
  border-color: #BFE6CE;
  color: #1a7a3c;
}

.moo-co ._cpy_paydesc.alert-info {
  background: #fff;
  border: 1.5px solid var(--line);
  padding: 20px;
}

.moo-co ._cpy_paydesc .form-group {
  margin-bottom: 14px;
}

.moo-co .list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0 0 18px;
  list-style: none;
}

.moo-co .list-inline > li {
  margin: 0;
}

.moo-co ._cpy_payicon {
  display: block;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 6px 8px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.moo-co ._cpy_payicon:hover {
  border-color: var(--ink-faint);
}

.moo-co ._cpy_payicon.active, .moo-co ._cpy_payicon[aria-pressed=true] {
  border-color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
}

.moo-co .panel, .moo-co .card.panel {
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
  margin-bottom: 18px;
}

.moo-co .panel-heading, .moo-co .card-header {
  background: transparent;
  border-bottom: 1px solid var(--line);
  padding: 14px 18px;
}

.moo-co .panel-title, .moo-co .panel-title a {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
}

.moo-co .panel-body, .moo-co .card.panel .card-body {
  padding: 18px;
}

.moo-co h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  margin: 18px 0;
}

.moo-co ._cpy_balancedue {
  color: var(--accent);
}

.moo-co .btn {
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  box-shadow: none;
}

.moo-co .btn-block {
  display: block;
  width: 100%;
}

.moo-co .btn-success {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.moo-co .btn-success:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.moo-co .btn-default {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.moo-co .btn-default:hover {
  border-color: var(--ink);
}

.moo-co .btn-primary {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.moo-co .btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.moo-co .btn-lg {
  height: 60px;
  font-size: 16px;
  font-weight: 800;
}

.moo-co .form-actions .btn-success {
  border-radius: var(--radius);
}

.moo-co .form-actions {
  margin: 8px 0 0;
}

.moo-co-aside {
  position: sticky;
  top: 100px;
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
}

.moo-co-aside-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.moo-co-aside .card, .moo-co-aside .card-body {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  margin: 0;
}

.moo-co-aside .card.card-body.mb-2 {
  margin-bottom: 18px !important;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.moo-co-aside h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 12px;
}

.moo-co-aside h4 + br {
  display: none;
}

.moo-co-aside .table {
  width: 100%;
  margin: 0;
}

.moo-co-aside .table th, .moo-co-aside .table td {
  border: none !important;
  padding: 6px 0;
  font-size: 14px;
  color: var(--ink-soft);
  vertical-align: top;
}

.moo-co-aside .table thead th {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: var(--ink-faint);
  text-transform: none;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line) !important;
}

.moo-co-aside .table thead small {
  display: block;
  font-weight: 600;
}

.moo-co-aside .table-striped tbody tr:nth-of-type(odd) {
  background: transparent;
}

.moo-co-aside .table td:last-child {
  color: var(--ink);
  font-weight: 600;
  white-space: nowrap;
  text-align: right;
}

.moo-co-aside ._order_total, .moo-co-aside ._order_total strong {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--ink);
}

.moo-co-aside ._order_total {
  border-top: 1.5px solid var(--ink);
  display: block;
  padding-top: 8px;
}

.moo-co-aside .btn-default.btn-block {
  margin-top: 14px;
}

.moo-co-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-faint);
  margin-top: 16px;
}

.moo-co-secure i {
  color: #1a7a3c;
}

.moo-co .modal-content {
  border-radius: var(--radius);
  border: none;
}

.moo-co .modal-title {
  font-family: var(--font-display);
  font-weight: 900;
}

.moo-co .modal-row label {
  font-weight: 700;
}

@media (max-width: 980px) {
  .moo-co {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .moo-co-aside {
    position: static;
    grid-column: 1;
  }
  .moo-co-main {
    grid-column: 1;
  }
}
@media (max-width: 560px) {
  .moo-co {
    padding: 20px 14px 56px;
  }
  .moo-co-main #_cpy_checkout_form > .row {
    padding: 20px 18px 8px;
  }
  .moo-co-aside {
    padding: 20px;
  }
}
.moo-acct {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 20px 80px;
  font-family: var(--font-body);
  color: var(--ink);
}

.moo-acct > .col-12, .moo-acct > section.col-12 {
  padding-left: 0;
  padding-right: 0;
}

.moo-acct .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0 0 16px;
  font-size: 13px;
}

.moo-acct .breadcrumb-item a {
  color: var(--ink-faint);
}

.moo-acct .breadcrumb-item a:hover {
  color: var(--accent);
}

.moo-acct .breadcrumb-item.active {
  color: var(--ink-soft);
}

.acct-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  border: none !important;
  padding: 0;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.acct-greeting h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(30px, 4.5vw, 44px);
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}

.acct-greeting p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.acct-logout {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 42px;
  padding: 0 18px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  white-space: nowrap;
}

.acct-logout:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.acct-header > p {
  flex-basis: 100%;
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--ink-soft);
}

.acct-header > p strong {
  color: var(--ink);
}

.moo-acct .page-header:not(.acct-header) {
  border: none;
  padding: 0;
  margin-bottom: 24px;
}

.moo-acct .page-header:not(.acct-header) h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.moo-acct .page-header:not(.acct-header) p {
  color: var(--ink-soft);
  font-size: 15px;
  margin: 0;
}

.moo-acct h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(26px, 3.5vw, 38px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 12px;
}

.moo-acct h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.01em;
  margin: 8px 0 18px;
}

.moo-acct h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  margin: 8px 0 12px;
}

.moo-acct hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 36px 0 24px;
}

.moo-acct .row > [class*=col-].mb-1 {
  display: flex;
  margin-bottom: 12px !important;
}

.moo-acct .btn-outline-secondary.btn-lg:has(h3) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  text-align: left;
  width: 100%;
  min-height: 118px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.moo-acct .btn-outline-secondary.btn-lg:has(h3):hover {
  border-color: var(--ink);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}

.moo-acct .btn-outline-secondary.btn-lg h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.01em;
}

.moo-acct .btn-outline-secondary.btn-lg h3 i {
  color: var(--accent);
  font-size: 18px;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
}

.moo-acct .btn-outline-secondary.btn-lg p {
  color: var(--ink-soft);
  font-size: 13px;
  margin: 0;
  white-space: normal !important;
  overflow: visible !important;
  line-height: 1.45;
}

.moo-acct .card, .moo-acct .card-body {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.moo-acct .card.card-body {
  padding: 18px;
}

.moo-acct .card .card-body {
  border: none;
  border-radius: 0;
  padding: 22px;
  background: transparent;
}

.moo-acct .card-header {
  background: #fff !important;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  padding: 16px 22px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.moo-acct .card a {
  color: var(--ink);
  font-weight: 700;
}

.moo-acct .card a:hover {
  color: var(--accent);
}

.moo-acct .card hr {
  margin: 12px 0;
}

.moo-acct .account-order-card p {
  margin: 0 0 4px;
  font-size: 13px;
  color: var(--ink-soft);
}

.moo-acct .account-order-card strong {
  color: var(--ink);
  font-weight: 700;
}

.moo-acct .badge {
  font-weight: 700;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
}

.moo-acct .badge-warning {
  background: #FFF0CC;
  color: #8a6100;
}

.moo-acct .badge-info {
  background: #D8EEF5;
  color: #1c6b85;
}

.moo-acct .badge-primary {
  background: var(--ink);
  color: #fff;
}

.moo-acct .badge-success, .moo-acct .label-success {
  background: #E0F2E7;
  color: #1a7a3c;
}

.moo-acct .badge-danger {
  background: #FBE3E3;
  color: #B42318;
}

.moo-acct .badge-secondary {
  background: var(--bg-warm);
  color: var(--ink-soft);
}

.moo-acct .label {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.moo-acct .btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  box-shadow: none;
  padding: 8px 16px;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.moo-acct .btn-block {
  display: block;
  width: 100%;
}

.moo-acct .btn-lg:not(:has(h3)) {
  padding: 14px 22px;
  font-size: 15px;
}

.moo-acct .btn-success {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.moo-acct .btn-success:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
}

.moo-acct .btn-info {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.moo-acct .btn-info:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.moo-acct .btn-primary {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.moo-acct .btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.moo-acct .btn-danger {
  background: #fff;
  border-color: #E3B5B5;
  color: #B42318;
}

.moo-acct .btn-danger:hover {
  background: #B42318;
  border-color: #B42318;
  color: #fff;
}

.moo-acct .btn-outline-secondary:not(:has(h3)) {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.moo-acct .btn-outline-secondary:not(:has(h3)):hover {
  border-color: var(--ink);
  color: var(--ink);
}

.moo-acct .btn-stack {
  margin: 14px -4px 0;
}

.moo-acct .btn-stack > [class*=col-] {
  padding: 0 4px;
  margin-bottom: 8px;
}

.moo-acct .table-responsive {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.moo-acct .table {
  width: 100%;
  margin: 0;
}

.moo-acct .table thead th {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: var(--ink-soft);
  background: var(--bg-warm);
  border: none;
  padding: 12px;
  vertical-align: middle;
}

.moo-acct .table td {
  border: none;
  border-top: 1px solid var(--line);
  padding: 12px;
  font-size: 14px;
  vertical-align: middle;
  color: var(--ink);
}

.moo-acct .table-bordered, .moo-acct .table-bordered td, .moo-acct .table-bordered th {
  border: none;
}

.moo-acct .table-bordered td {
  border-top: 1px solid var(--line);
}

.moo-acct .table-striped tbody tr:nth-of-type(odd) {
  background: #fff;
}

.moo-acct .table a {
  color: var(--ink);
  font-weight: 700;
}

.moo-acct .table a:hover {
  color: var(--accent);
}

.moo-acct .form-control, .moo-acct select.form-control {
  width: 100%;
  height: 48px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 0 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  box-shadow: none;
  transition: border-color 0.15s;
}

.moo-acct select.form-control {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2356544D' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.moo-acct textarea.form-control {
  height: auto;
  min-height: 90px;
  padding: 12px 14px;
  line-height: 1.5;
}

.moo-acct .form-control:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: none;
}

.moo-acct label, .moo-acct .control-label, .moo-acct .col-form-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  display: block;
}

.moo-acct input[type=checkbox], .moo-acct input[type=radio] {
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
  vertical-align: -2px;
}

.moo-acct input[type=checkbox].form-control, .moo-acct input[type=radio].form-control {
  height: 16px;
  width: 16px;
  display: inline-block;
  padding: 0;
}

.moo-acct .form-check-label, .moo-acct .checkbox label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.moo-acct .text-danger {
  color: #c0392b !important;
}

.moo-acct .form-group {
  margin-bottom: 16px;
}

.moo-acct .form-text, .moo-acct .help-block, .moo-acct .text-muted {
  font-size: 12px;
  color: var(--ink-faint);
}

.moo-acct .input-group {
  flex-wrap: nowrap;
}

.moo-acct .input-group .form-control {
  border-radius: 12px 0 0 12px;
}

.moo-acct .input-group-append .btn {
  border-radius: 0 12px 12px 0;
  height: 48px;
  white-space: nowrap;
}

.moo-acct .pagination {
  gap: 6px;
  flex-wrap: wrap;
}

.moo-acct .page-link {
  border: 1.5px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 12px;
}

.moo-acct .page-link:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--bg-warm);
}

.moo-acct .page-item.active .page-link {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.moo-acct .alert {
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg-warm);
  color: var(--ink);
  font-size: 14px;
  padding: 14px 16px;
}

.moo-acct .alert-danger {
  background: #FDECEC;
  border-color: #F3C0C0;
  color: #B42318;
}

.moo-acct .alert-warning {
  background: #FFF7E6;
  border-color: #F0D9A0;
}

.moo-acct .alert-success {
  background: #E9F7EF;
  border-color: #BFE6CE;
  color: #1a7a3c;
}

.acct-auth .page-header {
  margin-bottom: 6px;
}

.acct-auth-sub {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 18px;
  max-width: 640px;
}

.acct-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-bottom: 28px;
}

.acct-perks span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.acct-perks i {
  color: var(--accent);
  font-size: 16px;
}

.acct-auth .row > [class*=col-] {
  display: flex;
}

.acct-auth .row > [class*=col-] > form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.acct-auth .card {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  box-shadow: 0 2px 10px rgba(15, 15, 15, 0.03);
}

.acct-auth .card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.acct-auth .card-header i {
  color: var(--accent);
  margin-right: 8px;
}

.acct-auth .card .card-body a {
  color: var(--accent);
  font-weight: 600;
}

.acct-auth .card .card-body a:hover {
  color: var(--accent-hover);
}

.acct-auth .card .card-body .btn {
  margin-top: auto;
}

.acct-auth .terms_box ~ a, .acct-auth .checkbox a {
  font-weight: 600;
}

.moo-acct.moo-acct-form {
  max-width: 480px;
}

.moo-acct-form .acct-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}

.moo-acct-form .btn {
  width: 100%;
}

.moo-acct-form .acct-alt {
  text-align: center;
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 18px;
}

.moo-acct-form .acct-alt a {
  color: var(--accent);
  font-weight: 700;
}

.moo-acct-head {
  padding-top: 8px;
  padding-bottom: 0;
}

.moo-acct-head .acct-greeting h1 .wave {
  -webkit-text-fill-color: initial;
}

.acct-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
}

.acct-nav a {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 16px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.acct-nav a:hover {
  border-color: var(--ink);
  background: var(--bg-warm);
  color: var(--ink);
}

.acct-nav a.acct-nav-danger {
  color: #B42318;
  border-color: #E3B5B5;
}

.acct-nav a.acct-nav-danger:hover {
  background: #B42318;
  border-color: #B42318;
  color: #fff;
}

@media (max-width: 600px) {
  .moo-acct {
    padding: 20px 14px 56px;
  }
  .acct-header {
    align-items: flex-start;
  }
  .moo-acct .btn-stack > [class*=col-] {
    margin-bottom: 8px;
  }
}
.cms-hero {
  width: 100%;
  background: var(--bg-warm);
}

.cms-hero img {
  display: block;
  width: 100%;
  aspect-ratio: 16/5;
  object-fit: cover;
  object-position: center;
  max-height: 460px;
}

.cms-hero img:not([src]), .cms-hero img[src=""] {
  display: none;
}

.cms-hero:has(img:not([src])), .cms-hero:has(img[src=""]) {
  display: none;
}

@media (max-width: 720px) {
  .cms-hero img {
    aspect-ratio: 16/7;
    max-height: 320px;
  }
}
.moo-cms {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 20px 80px;
  font-family: var(--font-body);
  color: var(--ink);
}

.cms-hero + .moo-cms {
  padding-top: 20px;
}

.moo-cms .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0 0 16px;
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
}

.moo-cms .breadcrumb-item a {
  color: var(--ink-faint);
}

.moo-cms .breadcrumb-item a:hover {
  color: var(--accent);
}

.moo-cms h1, .moo-cms h1.display-4 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(30px, 5vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 14px;
}

.moo-cms > p.text-muted {
  color: var(--ink-faint);
  font-size: 13px;
  margin: 0 0 20px;
}

.moo-cms .n-responsive-content {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.moo-cms .n-responsive-content:empty {
  display: none;
}

.moo-cms .n-responsive-content h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 32px 0 12px;
}

.moo-cms .n-responsive-content h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
  margin: 24px 0 10px;
}

.moo-cms .n-responsive-content h4 {
  font-weight: 800;
  font-size: 17px;
  color: var(--ink);
  margin: 20px 0 8px;
}

.moo-cms .n-responsive-content p {
  margin: 0 0 16px;
}

.moo-cms .n-responsive-content a {
  color: var(--accent);
  font-weight: 600;
}

.moo-cms .n-responsive-content a:hover {
  color: var(--accent-hover);
}

.moo-cms .n-responsive-content ul, .moo-cms .n-responsive-content ol {
  margin: 0 0 16px;
  padding-left: 22px;
}

.moo-cms .n-responsive-content li {
  margin-bottom: 6px;
}

.moo-cms .n-responsive-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}

.moo-cms .n-responsive-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 18px;
  margin: 0 0 16px;
  color: var(--ink);
  font-style: italic;
}

.moo-cms .n-responsive-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 16px;
  font-size: 14px;
}

.moo-cms .n-responsive-content th, .moo-cms .n-responsive-content td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
}

.moo-cms .n-responsive-content th {
  background: var(--bg-warm);
  font-weight: 700;
}

.moo-cms .n-responsive-content iframe {
  width: 100% !important;
  max-width: 720px;
  aspect-ratio: 16/9;
  height: auto !important;
  border: 0;
  border-radius: var(--radius);
  display: block;
  margin: 0 auto;
  background: var(--bg-warm);
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.18);
}

.moo-cms .n-responsive-content p:has(> iframe) {
  margin: 0 0 28px;
  text-align: center;
}

.moo-cms .n-responsive-content p:has(> iframe) + p:empty,
.moo-cms .n-responsive-content p:has(> iframe) + p:-moz-only-whitespace,
.moo-cms .n-responsive-content p:has(iframe) ~ p:has(+ p > iframe):not(:has(*)) {
  display: none;
}

.moo-cms .n-responsive-content .moo-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
  margin: 0 0 24px;
}

.moo-cms .n-responsive-content .moo-video-grid p {
  margin: 0;
}

.moo-cms .n-responsive-content .moo-video-grid iframe {
  max-width: 100%;
  margin: 0;
}

.moo-cms hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 28px 0;
}

.moo-cms .carousel {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 8px;
}

.moo-cms .carousel img {
  width: 100%;
  height: auto;
  display: block;
}

.moo-cms .products-row:has(> .ps-card), .moo-cms .row:has(> .ps-card) {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
  margin: 0;
}

.moo-cms .products-row:has(> .ps-card) .ps-card, .moo-cms .row:has(> .ps-card) .ps-card {
  width: auto;
  max-width: none;
}

.moo-cms .thumb, .moo-cms .thumb_list {
  width: 100%;
}

.moo-cms .products-row:has(> .ps-row) {
  display: block;
  margin: 0;
}

.moo-cms .panel, .moo-cms .card.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
  margin-bottom: 16px;
}

.moo-cms .panel-body {
  padding: 18px;
}

.moo-cms .panel h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  margin: 0 0 12px;
}

.moo-cms .productoptions.table td {
  border: none;
  border-top: 1px solid var(--line);
  padding: 10px 8px;
  font-size: 14px;
  vertical-align: middle;
}

.moo-cms .productoptions.table tr:first-child td {
  border-top: none;
}

.moo-cms .thumbnail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  margin-bottom: 16px;
}

.moo-cms .thumbnail .image {
  flex: 0 0 96px;
  line-height: 0;
}

.moo-cms .thumbnail .image img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.moo-cms .thumbnail .caption {
  min-width: 0;
}

.moo-cms .thumbnail .headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  margin: 0 0 6px;
}

.moo-cms .thumbnail .headline a {
  color: var(--ink);
}

.moo-cms .thumbnail .caption p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}

.moo-cms .thumbnail .caption a {
  color: var(--accent);
  font-weight: 600;
}

.moo-cms .row:has(> .category-thumbnail) {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
  margin: 0;
}

.moo-cms .category-thumbnail {
  width: auto;
  max-width: none;
  flex: none;
  text-align: center;
}

.moo-cms .category-thumbnail .h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  margin: 0 0 10px;
  order: 2;
}

.moo-cms .category-thumbnail .h2 a {
  color: var(--ink);
}

.moo-cms .category-thumbnail .h2 a:hover {
  color: var(--accent);
}

.moo-cms .category-thumbnail img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--bg-warm);
  margin-bottom: 10px;
  transition: transform 0.2s;
}

.moo-cms .category-thumbnail:hover img {
  transform: translateY(-3px);
}

.moo-cms .search-results-search {
  margin-bottom: 22px;
  max-width: 640px;
}

.moo-cms .input-group {
  display: flex;
  flex-wrap: nowrap;
}

.moo-cms .input-group .form-control {
  border-radius: 999px 0 0 999px;
  border-right: none;
}

.moo-cms .input-group-append {
  display: flex;
}

.moo-cms .input-group-append .btn {
  border-radius: 0 999px 999px 0;
  height: 52px;
  padding: 0 22px;
}

.moo-cms .sort_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0 0 8px;
}

.moo-cms .sort_container > [class*=col-] {
  flex: 0 0 auto;
  max-width: none;
  width: auto;
  padding: 0;
}

.moo-cms .sort_container .btn-text {
  font-size: 14px;
  color: var(--ink-soft);
}

.moo-cms .sort_container .btn-text strong {
  color: var(--ink);
}

.moo-cms .viewby.btn-group {
  display: inline-flex;
  gap: 6px;
}

.moo-cms .viewby .btn {
  padding: 8px 12px;
  border-radius: 10px;
}

.moo-cms .form-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.moo-cms .col-form-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.moo-cms .form-control {
  width: 100%;
  height: 48px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 0 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  box-shadow: none;
  transition: border-color 0.15s;
}

.moo-cms select.form-control {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2356544D' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.moo-cms textarea.form-control {
  height: auto;
  min-height: 120px;
  padding: 12px 14px;
  line-height: 1.6;
}

.moo-cms .form-control:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: none;
}

.moo-cms label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  display: block;
}

.moo-cms .form-group {
  margin-bottom: 16px;
}

.moo-cms fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.moo-cms .btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  padding: 10px 20px;
  box-shadow: none;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.moo-cms .btn-success {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.moo-cms .btn-success:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
}

.moo-cms .btn-primary {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.moo-cms .btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.moo-cms .btn-outline-secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.moo-cms .btn-outline-secondary:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.moo-cms .btn-sm {
  padding: 6px 14px;
  font-size: 12px;
}

.moo-cms .btn-large {
  padding: 14px 26px;
  font-size: 16px;
}

.moo-cms .pagination {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}

.moo-cms .page-link {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 12px;
}

.moo-cms .page-link:hover {
  border-color: var(--ink);
  background: var(--bg-warm);
  color: var(--ink);
}

.moo-cms .page-item.active .page-link {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.moo-cms .card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
  margin-bottom: 16px;
}

.moo-cms .card-body {
  padding: 20px;
}

.moo-cms .card h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  margin: 0 0 8px;
}

.moo-cms .card h2 a {
  color: var(--ink);
}

.moo-cms .card h2 a:hover {
  color: var(--accent);
}

.moo-cms address {
  font-style: normal;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.moo-cms address a {
  color: var(--accent);
}

.moo-cms address i {
  color: var(--ink-faint);
  width: 16px;
}

.moo-cms .card img.img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}

.moo-cms blockquote h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  margin: 0 0 4px;
}

.moo-cms .review_response {
  display: block;
  margin-top: 8px;
}

.moo-cms .dropdown-menu {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.moo-cms .alert {
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg-warm);
  font-size: 14px;
  padding: 14px 16px;
}

.moo-cms .alert-danger {
  background: #FDECEC;
  border-color: #F3C0C0;
  color: #B42318;
}

.moo-cms article.border-bottom {
  border-bottom: 1px solid var(--line) !important;
  padding-bottom: 22px;
  margin-bottom: 22px !important;
}

.moo-cms article h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}

.moo-cms article h4 a {
  color: var(--ink);
}

.moo-cms article h4 a:hover {
  color: var(--accent);
}

.moo-cms article .text-muted {
  font-size: 13px;
  color: var(--ink-faint);
  margin-bottom: 8px;
}

.moo-cms article p[itemprop=description] {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

.moo-cms .badge-pill {
  background: var(--bg-warm);
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
}

.moo-404 {
  max-width: 640px;
  margin: 0 auto;
  padding: 64px 24px 96px;
  text-align: center;
}

.moo-404-code {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(96px, 22vw, 200px);
  line-height: 0.9;
  color: var(--accent);
  letter-spacing: -0.04em;
  position: relative;
  display: inline-block;
}

.moo-404-code::after {
  content: "🎸";
  position: absolute;
  top: -6px;
  right: -42px;
  font-size: clamp(28px, 6vw, 48px);
  transform: rotate(18deg);
  -webkit-text-fill-color: initial;
}

.moo-404-quip {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(24px, 4vw, 36px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 10px 0 12px;
  min-height: 1.15em;
}

.moo-404 p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 auto 26px;
  max-width: 460px;
}

.moo-404-search {
  display: flex;
  gap: 8px;
  max-width: 460px;
  margin: 0 auto 24px;
}

.moo-404-input {
  flex: 1;
  min-width: 0;
  height: 52px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 0 20px;
  font-family: var(--font-body);
  font-size: 15px;
  background: #fff;
  color: var(--ink);
}

.moo-404-input:focus {
  outline: none;
  border-color: var(--ink);
}

.moo-404-search .pdp-add {
  width: auto;
  flex-shrink: 0;
  padding: 0 22px;
}

.moo-404-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.moo-404-links .moo-404-links-label {
  color: var(--ink-faint);
  font-weight: 600;
  font-size: 13px;
  margin-right: 2px;
}

.moo-404-links a {
  display: inline-block;
  padding: 7px 15px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  transition: border-color 0.15s, background 0.15s;
}

.moo-404-links a:hover {
  border-color: var(--ink);
  background: var(--bg-warm);
}

.moo-content-hero {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  background-image: radial-gradient(circle at 75% 25%, rgba(211, 75, 59, 0.45), transparent 55%);
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  padding: 40px;
  margin-bottom: 32px;
}

.moo-content-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.moo-content-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.15) 0%, rgba(15, 15, 15, 0.78) 100%);
}

.moo-content-hero-inner {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 760px;
}

.moo-content-hero-inner h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
  color: #fff;
}

.moo-content-hero-inner p {
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.9;
  margin: 10px 0 0;
  max-width: 560px;
}

.moo-content-hero-meta {
  font-size: 13px;
  opacity: 0.8;
  letter-spacing: 0.01em;
}

.blog-list {
  max-width: 820px;
}

.teacher-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  margin-bottom: 8px;
}

.teacher-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.15s, transform 0.2s, box-shadow 0.15s;
}

.teacher-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.teacher-card-img {
  display: block;
  aspect-ratio: 16/10;
  background: var(--bg-warm);
  line-height: 0;
}

.teacher-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.teacher-card-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.teacher-card-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}

.teacher-card-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}

.teacher-card-contact {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.teacher-card-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
}

.teacher-card-contact i {
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0;
}

.teacher-card-contact a {
  color: var(--ink);
  font-weight: 600;
}

.teacher-card-contact a:hover {
  color: var(--accent);
}

.moo-contact-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.moo-contact-eyebrow {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.moo-contact-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(30px, 5vw, 48px);
  letter-spacing: -0.02em;
  margin: 0;
}

.moo-contact-hero .btn {
  height: 48px;
}

.moo-contact {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: start;
}

.moo-contact-main h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  margin: 22px 0 4px;
}

.moo-contact-main p {
  margin: 0 0 4px;
  color: var(--ink-soft);
}

.moo-contact-main > p:first-of-type {
  color: var(--ink);
}

.moo-contact-main a {
  color: var(--accent);
  font-weight: 600;
}

.moo-contact-main .honeypot {
  display: none;
}

.moo-contact-aside .card-body {
  padding: 22px;
}

.moo-contact-aside h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  margin: 0 0 10px;
}

.moo-contact-aside p {
  margin: 0 0 2px;
  font-size: 14px;
  color: var(--ink-soft);
}

.moo-thanks {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 0 64px;
}

.moo-thanks-icon {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  background: #E9F7EF;
  color: #1a7a3c;
  display: grid;
  place-items: center;
  font-size: 42px;
  margin: 0 auto 20px;
}

.moo-thanks h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

.moo-thanks p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 auto 24px;
}

.moo-thanks .btn {
  margin-top: 4px;
}

.moo-content-search {
  display: flex;
  gap: 8px;
  max-width: 560px;
  margin: 0 0 24px;
}

.moo-content-search-input {
  flex: 1;
  min-width: 0;
  height: 52px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 0 20px;
  font-family: var(--font-body);
  font-size: 15px;
  background: #fff;
  color: var(--ink);
}

.moo-content-search-input:focus {
  outline: none;
  border-color: var(--ink);
}

.moo-content-search .pdp-add {
  width: auto;
  flex-shrink: 0;
  padding: 0 24px;
}

@media (max-width: 760px) {
  .moo-contact {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 560px) {
  .moo-cms {
    padding: 20px 14px 56px;
  }
  .moo-cms .products-row, .moo-cms .row:has(> .ps-card), .moo-cms .row:has(> .category-thumbnail) {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
  }
  .moo-content-hero {
    padding: 24px;
    min-height: 200px;
  }
  .teacher-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}
.pd-search-title {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

#pd-stats {
  font-size: 13px;
  color: var(--ink-soft);
}

#pd-sort-by, .ais-SortBy {
  display: inline-block;
}

.ais-SortBy-select {
  height: 40px;
  padding: 0 36px 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230F0F0F' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>") no-repeat right 12px center;
  background-size: 16px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.ais-SortBy-select:hover, .ais-SortBy-select:focus {
  outline: none;
  border-color: var(--ink);
}

.ais-RefinementList-list, .ais-HierarchicalMenu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ais-HierarchicalMenu-list--child {
  margin: 8px 0 0 14px;
}

.filter-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
  padding: 3px 0;
  text-decoration: none;
  line-height: 1.35;
}

.filter-item:hover {
  color: var(--accent);
}

.filter-item input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--ink-faint);
  border-radius: 3px;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  background: #fff;
}

.filter-item.is-selected input[type=checkbox], .filter-item input[type=checkbox]:checked {
  background: var(--ink);
  border-color: var(--ink);
}

.filter-item input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.filter-item-label {
  flex: 1;
  min-width: 0;
}

.filter-item-count {
  color: var(--ink-faint);
  font-size: 12px;
  margin-left: auto;
}

.ais-ClearRefinements-button {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.ais-ClearRefinements-button:hover {
  color: var(--accent);
}

.ais-ClearRefinements-button--disabled {
  display: none;
}

.ais-RangeSlider {
  margin: 18px 8px 8px;
}

.ais-RangeSlider .rheostat-background {
  background: var(--line);
  height: 4px;
  border-radius: 999px;
}

.ais-RangeSlider .rheostat-progress {
  background: var(--accent);
  height: 4px;
}

.ais-RangeSlider .rheostat-handle {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid var(--accent);
  top: -7px;
  cursor: grab;
}

.ais-RangeSlider .rheostat-tooltip {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 14px;
}

.ais-RangeSlider .rheostat-marker {
  display: none;
}

.cat-results {
  min-width: 0;
}

.ais-Hits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.cat-body.filters-hidden .ais-Hits-list {
  grid-template-columns: repeat(4, 1fr);
}

.ais-Hits-list > li, .wrapper-thumbnail {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.ais-Hits-list .ps-card {
  flex: 1 1 auto;
  width: 100%;
}

.ais-Pagination-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  padding: 0;
  margin: 0;
}

.ais-Pagination-item .ais-Pagination-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
}

.ais-Pagination-item .ais-Pagination-link:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.ais-Pagination-item--selected .ais-Pagination-link {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.ais-Pagination-item--disabled {
  display: none;
}

mark.ais-Highlight-highlighted {
  background: none;
  padding: 0;
  color: var(--accent);
  font-weight: 800;
}

.pd-empty-results {
  grid-column: 1/-1;
  padding: 48px 0;
  font-size: 16px;
  color: var(--ink-soft);
}

@media (max-width: 1100px) {
  .ais-Hits-list, .cat-body.filters-hidden .ais-Hits-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  .ais-Hits-list, .cat-body.filters-hidden .ais-Hits-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .ais-Hits-list, .cat-body.filters-hidden .ais-Hits-list {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
.salesTools-Hnmt4vZE {
  display: none;
  visibility: hidden;
  position: absolute;
  top: 30px;
  left: 5px;
  z-index: 888;
  max-width: 260px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink);
  text-align: left;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.25);
}

.salesTools-Hnmt4vZE p {
  margin: 0 0 2px;
}

.salesTools-Hnmt4vZE strong {
  font-weight: 700;
  color: var(--ink);
}

.salesTools-Hnmt4vZE a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.salesTools-Hnmt4vZE a:hover {
  color: var(--accent-hover);
}

.salesTools-Hnmt4vZE .mooGreen {
  color: #1a7a3c;
}

.salesTools-Hnmt4vZE .mooRed {
  color: #c0392b;
}

.salesTools-Hnmt4vZE .mooOrange {
  color: #b5650a;
}
