.demo-banner {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 44px;
  padding: 0.55rem clamp(1rem, 3vw, 2.25rem);
  border-top: 2px solid #fff3b0;
  border-bottom: 2px solid #10100f;
  background: #f6c84f;
  color: #080807;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
  font-family: var(--font-display);
  font-size: 1.02rem;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.demo-banner-label {
  flex: 0 0 auto;
  padding: 0.18rem 0.58rem;
  border: 2px solid var(--deep-brick);
  border-radius: 3px;
  background: var(--deep-brick);
  color: var(--off-white);
}

.site-nav {
  position: sticky;
  top: 44px;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  min-height: 74px;
  padding: 0.7rem clamp(1rem, 3vw, 2.25rem);
  border-bottom: 1px solid var(--line);
  background: rgba(16, 16, 15, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.nav-logo,
.nav-links button,
.cart-btn,
.icon-btn {
  border: 0;
  background: transparent;
  cursor: pointer;
  text-transform: uppercase;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  padding: 0;
}

.logo-mark {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.22));
}

.logo-text {
  display: grid;
  color: var(--off-white);
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 2.3vw, 1.6rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-align: left;
}

.logo-text span {
  color: var(--dusty-beige);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(0.8rem, 2.4vw, 2.2rem);
}

.nav-links button {
  position: relative;
  padding: 0.45rem 0;
  color: var(--off-white);
  font-family: var(--font-display);
  font-size: 1.04rem;
  letter-spacing: 0;
}

.nav-links button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--muted-gold);
  transition: width 0.18s ease;
}

.nav-links button:hover,
.nav-links button:focus-visible {
  color: var(--muted-gold);
}

.nav-links button:hover::after,
.nav-links button:focus-visible::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid transparent;
  border-radius: 50%;
  color: var(--off-white);
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.icon-btn:hover {
  border-color: var(--line);
  color: var(--muted-gold);
}

.nav-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 42px;
  padding: 0.62rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--off-white);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0;
}

.cart-btn:hover {
  border-color: var(--muted-gold);
  background: var(--muted-gold);
  color: var(--black);
}

.cart-icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
}

.cart-icon .nav-icon {
  width: 24px;
  height: 24px;
}

.cart-badge {
  position: absolute;
  top: -7px;
  right: -7px;
  display: grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding-inline: 5px;
  border: 1px solid var(--black);
  border-radius: 50%;
  background: var(--muted-gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 800;
}

.hidden {
  display: none;
}

.strip {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-block: 1px solid rgba(176, 141, 87, 0.45);
  background: rgba(199, 191, 174, 0.7);
  color: var(--charcoal);
  font-family: var(--font-condensed);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.strip-inner {
  display: inline-block;
  padding: 0.36rem 0;
  animation: ticker 28s linear infinite;
}

.strip-inner b {
  color: var(--deep-brick);
  margin-inline: 1.2rem;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.section-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.4rem;
}

.section-title {
  margin: 0;
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 6vw, 4.2rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-title span {
  color: var(--deep-brick);
}

.section-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--line), transparent);
}

.section-subtitle {
  color: var(--muted-gold);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.vinyl {
  position: relative;
  overflow: hidden;
  border: 1px solid #2c2a27;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--muted-gold) 0 10%, #111 10% 12%, transparent 12%),
    repeating-radial-gradient(circle, #0b0b0a 0 7px, #1a1917 7px 8px, #0b0b0a 8px 13px);
  box-shadow: inset 0 0 28px rgba(0, 0, 0, 0.76), 0 16px 40px rgba(0, 0, 0, 0.32);
  animation: spin 8s linear infinite;
}

.vinyl-picture {
  background:
    radial-gradient(circle at center, var(--muted-gold) 0 9%, #111 9% 12%, transparent 12%),
    repeating-radial-gradient(circle, rgba(5, 5, 5, 0.28) 0 7px, rgba(243, 238, 230, 0.13) 7px 8px, rgba(5, 5, 5, 0.24) 8px 13px),
    linear-gradient(rgba(8, 8, 7, 0.12), rgba(8, 8, 7, 0.24)),
    var(--vinyl-photo) center / cover no-repeat;
}

.vinyl::after {
  content: "";
  position: absolute;
  inset: 19%;
  border: 1px solid rgba(243, 238, 230, 0.09);
  border-radius: 50%;
}

.vinyl-xs {
  width: 44px;
  height: 44px;
}

.vinyl-md {
  width: 96px;
  height: 96px;
}

.vinyl-lg {
  width: clamp(160px, 24vw, 220px);
  height: clamp(160px, 24vw, 220px);
}

.vinyl-xl {
  width: clamp(145px, 30vw, 190px);
  height: clamp(145px, 30vw, 190px);
  margin: 0 auto;
}

.player-wrap {
  position: relative;
  padding: 1.05rem;
  border: 1px solid var(--line-dark);
  border-left: 3px solid var(--muted-gold);
  border-radius: 4px;
  background: rgba(16, 16, 15, 0.82);
}

.player-wrap::before {
  content: "WAVEFORM";
  position: absolute;
  top: -0.58rem;
  left: 0.8rem;
  padding-inline: 0.45rem;
  background: var(--surface);
  color: var(--muted-gold);
  font-family: var(--font-display);
  font-size: 0.72rem;
}

.player-waveform {
  position: relative;
  height: 58px;
  overflow: hidden;
  border: 1px solid rgba(243, 238, 230, 0.1);
  border-radius: 3px;
  background: #0c0c0b;
  cursor: pointer;
}

.player-progress {
  position: absolute;
  inset: 0 auto 0 0;
  background: rgba(176, 141, 87, 0.12);
  pointer-events: none;
}

.waveform-bars {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 2px;
  padding: 7px 8px;
}

.wbar {
  z-index: 1;
  flex: 1;
  min-width: 2px;
  border-radius: 1px;
  background: rgba(243, 238, 230, 0.16);
}

.wbar.played {
  background: var(--muted-gold);
}

.player-controls,
.buy-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1rem;
}

.btn-play,
.license-btn,
.beat-buy,
.btn-checkout,
.btn-pay,
.btn-back,
.form-submit,
.btn-up,
.upsell-skip,
.service-add,
.btn-hero {
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font-display);
  letter-spacing: 0;
  text-transform: uppercase;
}

.btn-play {
  min-width: 70px;
  height: 46px;
  background: var(--deep-brick);
  color: var(--off-white);
}

.time-display,
.volume-wrap {
  color: var(--dusty-beige);
  font-size: 0.82rem;
}

.volume-wrap {
  margin-left: auto;
}

input[type="range"] {
  width: 84px;
  accent-color: var(--muted-gold);
}

.license-btn {
  flex: 1;
  min-width: 130px;
  padding: 0.92rem 1rem;
  border: 1px solid;
  background: transparent;
}

.license-btn.basic {
  border-color: rgba(243, 238, 230, 0.16);
  color: var(--dusty-beige);
}

.license-btn.wav {
  border-color: var(--muted-gold);
  background: rgba(176, 141, 87, 0.1);
  color: var(--muted-gold);
}

.license-btn.exclusive {
  border-color: var(--deep-brick);
  background: var(--deep-brick);
  color: var(--off-white);
}

.license-btn:hover {
  border-color: var(--muted-gold);
  background: var(--muted-gold);
  color: var(--black);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  justify-content: flex-end;
  background:
    linear-gradient(90deg, rgba(229, 220, 203, 0.18), rgba(229, 220, 203, 0.08) 58%, rgba(16, 16, 15, 0.2)),
    rgba(243, 238, 230, 0.18);
  backdrop-filter: blur(1.5px);
}

.cart-overlay.open {
  display: flex;
}

.cart-drawer {
  display: flex;
  flex-direction: column;
  width: min(430px, 100vw);
  height: 100vh;
  border-left: 1px solid var(--line);
  background: var(--surface);
  box-shadow: -24px 0 55px rgba(0, 0, 0, 0.34);
}

.cart-header,
.cart-footer {
  padding: 1.35rem;
  background: rgba(16, 16, 15, 0.88);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-dark);
}

.cart-header h2 {
  margin: 0;
  color: var(--off-white);
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  text-transform: uppercase;
}

.cart-close {
  border: 0;
  background: transparent;
  color: var(--dusty-beige);
  cursor: pointer;
  font-size: 1.7rem;
}

.cart-items-list {
  flex: 1;
  overflow: auto;
  padding: 1rem 1.35rem;
}

.cart-empty {
  padding: 3rem 0;
  color: var(--ink-soft);
  text-align: center;
  text-transform: uppercase;
}

.cart-item {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  background: rgba(243, 238, 230, 0.04);
}

.ci-vinyl,
.beat-vinyl {
  border: 1px solid #30302c;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--muted-gold) 0 12%, #111 12% 15%, transparent 15%),
    repeating-radial-gradient(circle, #080807 0 5px, #191816 5px 6px, #080807 6px 11px);
}

.ci-vinyl {
  width: 48px;
  height: 48px;
}

.cart-item h3 {
  margin: 0;
  color: var(--off-white);
  font-family: var(--font-condensed);
  font-size: 1rem;
  text-transform: uppercase;
}

.cart-item p,
.cart-item small,
.cart-item button {
  margin: 0.2rem 0 0;
  color: var(--dusty-beige);
  font-size: 0.75rem;
}

.cart-item small {
  display: block;
  color: var(--ink-soft);
  line-height: 1.35;
}

.cart-item button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-transform: uppercase;
}

.cart-remove-btn {
  width: fit-content;
  margin-top: 0.55rem;
  padding: 0.34rem 0.56rem !important;
  border: 1px solid rgba(142, 59, 46, 0.78) !important;
  border-radius: 3px;
  color: var(--off-white) !important;
  background: var(--deep-brick) !important;
  font-family: var(--font-display);
}

.cart-remove-btn:hover {
  background: #a94a3b !important;
}

.cart-item strong,
.cart-total-row strong {
  color: var(--muted-gold);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.cart-footer {
  border-top: 1px solid var(--line-dark);
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  color: var(--off-white);
  text-transform: uppercase;
}

.btn-checkout,
.btn-pay {
  width: 100%;
  padding: 1rem;
}

.btn-checkout {
  background: var(--muted-gold);
  color: var(--black);
}

.cart-link-btn {
  width: 100%;
  margin-top: 0.55rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--dusty-beige);
  cursor: pointer;
  font-family: var(--font-display);
  text-transform: uppercase;
}

.cart-secure,
.pay-secure {
  margin-top: 0.75rem;
  color: var(--ink-soft);
  font-size: 0.68rem;
  text-align: center;
  text-transform: uppercase;
}

.mini-player {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 45;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 0.8rem clamp(1rem, 3vw, 2rem);
  border-top: 1px solid var(--line);
  background: rgba(16, 16, 15, 0.97);
  box-shadow: 0 -14px 40px rgba(0, 0, 0, 0.32);
}

.mini-player-info,
.mini-controls,
.mini-progress-wrap {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.mini-title {
  color: var(--off-white);
  font-family: var(--font-condensed);
  font-weight: 700;
  text-transform: uppercase;
}

.mini-bpm-lbl,
.mini-time {
  color: var(--dusty-beige);
  font-size: 0.72rem;
}

.mini-btn {
  border: 0;
  background: transparent;
  color: var(--dusty-beige);
  cursor: pointer;
  font-family: var(--font-display);
  touch-action: manipulation;
  user-select: none;
}

.mini-btn.active,
.mini-btn:hover {
  color: var(--muted-gold);
}

.license-picker-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(8, 8, 7, 0.72);
}

.license-picker-overlay.open {
  display: flex;
}

.license-picker {
  width: min(1040px, 100%);
  max-height: min(760px, calc(100vh - 2rem));
  overflow: auto;
  padding: clamp(1rem, 3vw, 1.4rem);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #171613;
  box-shadow: var(--shadow);
}

.service-target-picker {
  width: min(560px, 100%);
  max-height: min(720px, calc(100vh - 2rem));
  overflow: auto;
  padding: clamp(1rem, 3vw, 1.35rem);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #171613;
  box-shadow: var(--shadow);
}

.license-picker-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line-dark);
}

.license-picker-head span {
  color: var(--muted-gold);
  font-family: var(--font-display);
  text-transform: uppercase;
}

.license-picker-head h2 {
  margin: 0.25rem 0 0;
  color: var(--off-white);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.license-picker-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.license-option {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(243, 238, 230, 0.12);
  border-radius: 6px;
  background: rgba(243, 238, 230, 0.05);
}

.license-option.exclusive,
.license-option.stems {
  border-color: rgba(176, 141, 87, 0.42);
}

.license-option-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.license-option-top span,
.license-option h3 {
  color: var(--muted-gold);
  font-family: var(--font-display);
  text-transform: uppercase;
}

.license-option-top strong {
  color: var(--off-white);
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.license-option h3,
.license-option p,
.license-option ul {
  margin: 0;
}

.license-option h3 {
  color: var(--off-white);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1;
}

.license-option p,
.license-option li {
  color: var(--dusty-beige);
  font-size: 0.86rem;
  line-height: 1.55;
}

.license-option ul {
  display: grid;
  gap: 0.3rem;
  padding-left: 1rem;
}

.license-select {
  margin-top: auto;
  padding: 0.78rem 0.9rem;
  border: 0;
  border-radius: 4px;
  background: var(--muted-gold);
  color: var(--black);
  cursor: pointer;
  font-family: var(--font-display);
  text-transform: uppercase;
}

.license-learn-more {
  margin-top: 1rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted-gold);
  cursor: pointer;
  font-family: var(--font-display);
  text-transform: uppercase;
}

.service-target-note {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1rem;
  padding: 0.9rem;
  border: 1px solid rgba(176, 141, 87, 0.28);
  border-radius: 6px;
  background: rgba(243, 238, 230, 0.05);
}

.service-target-note strong {
  color: var(--muted-gold);
  font-family: var(--font-display);
  font-size: 1.7rem;
}

.service-target-note p,
.service-target-empty {
  margin: 0;
  color: var(--dusty-beige);
  line-height: 1.55;
}

.service-target-list {
  display: grid;
  gap: 0.55rem;
}

.service-target-label,
.service-target-custom span {
  color: var(--muted-gold);
  font-family: var(--font-display);
  text-transform: uppercase;
}

.service-target-option {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(243, 238, 230, 0.12);
  border-radius: 5px;
  background: rgba(243, 238, 230, 0.04);
  color: var(--off-white);
  cursor: pointer;
  font-weight: 700;
}

.service-target-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--muted-gold);
}

.service-target-option.disabled {
  opacity: 0.52;
  cursor: not-allowed;
}

.service-target-option.disabled span {
  color: var(--ink-soft);
}

.service-target-custom {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
}

.service-target-custom input {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(243, 238, 230, 0.18);
  border-bottom: 2px solid var(--muted-gold);
  border-radius: 4px;
  outline: 0;
  background: rgba(243, 238, 230, 0.08);
  color: var(--off-white);
}

.service-target-add {
  width: 100%;
  margin-top: 1rem;
  padding: 0.92rem 1rem;
  border: 0;
  border-radius: 4px;
  background: var(--muted-gold);
  color: var(--black);
  cursor: pointer;
  font-family: var(--font-display);
  text-transform: uppercase;
}

.cart-service-for {
  color: var(--muted-gold) !important;
}

.mini-progress-wrap {
  flex: 1;
}

.mini-progress-bar {
  flex: 1;
  height: 4px;
  background: rgba(243, 238, 230, 0.13);
}

.mini-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--deep-brick), var(--muted-gold));
}

.toast {
  position: fixed;
  top: 96px;
  right: clamp(1rem, 3vw, 2rem);
  z-index: 100;
  max-width: min(280px, calc(100vw - 2rem));
  padding: 0.62rem 0.82rem;
  border: 1px solid #fff3b0;
  border-left: 4px solid var(--deep-brick);
  border-radius: 4px;
  background: #f6c84f;
  color: #080807;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  font-family: var(--font-display);
  font-size: 0.82rem;
  line-height: 1.35;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translateX(130%);
  transition: opacity 0.18s ease, transform 0.24s ease;
}

.chatbot {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: 82px;
  z-index: 70;
  display: grid;
  justify-items: end;
  gap: 0.7rem;
  pointer-events: none;
}

.chatbot-toggle,
.chatbot-head button,
.chatbot-tools button,
.chatbot-suggestions button,
.chatbot-form button,
.chatbot-actions button {
  cursor: pointer;
  font-family: var(--font-display);
  text-transform: uppercase;
}

.chatbot-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.64rem 0.86rem;
  border: 1px solid var(--black);
  border-radius: 6px;
  background: var(--muted-gold);
  color: var(--black);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.34);
  pointer-events: auto;
}

.chatbot-toggle img,
.chatbot-avatar {
  display: block;
  border-radius: 50%;
  object-fit: cover;
  background: #10100f;
}

.chatbot-toggle img {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(16, 16, 15, 0.45);
  box-shadow: 0 0 0 1px rgba(243, 238, 230, 0.1);
}

.chatbot-panel {
  display: none;
  width: min(380px, calc(100vw - 2rem));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #171613;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.42);
  pointer-events: auto;
}

.chatbot.open .chatbot-panel {
  display: block;
}

.chatbot-head {
  display: flex;
  align-items: flex-start;
  gap: 0.78rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(16, 16, 15, 0.94);
}

.chatbot-avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid rgba(176, 141, 87, 0.36);
}

.chatbot-head > div {
  min-width: 0;
  flex: 1;
}

.chatbot-head span {
  color: var(--muted-gold);
  font-family: var(--font-display);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.chatbot-head h2 {
  margin: 0.18rem 0 0;
  color: var(--off-white);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.chatbot-head button {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(243, 238, 230, 0.14);
  border-radius: 50%;
  background: transparent;
  color: var(--dusty-beige);
}

.chatbot-tools {
  display: flex;
  gap: 0.35rem;
  padding: 0.7rem 1rem 0;
}

.chatbot-tools button,
.chatbot-suggestions button,
.chatbot-actions button {
  border: 1px solid rgba(243, 238, 230, 0.14);
  border-radius: 999px;
  background: rgba(243, 238, 230, 0.05);
  color: var(--dusty-beige);
}

.chatbot-tools button {
  padding: 0.34rem 0.56rem;
  font-size: 0.76rem;
}

.chatbot-tools button.active,
.chatbot-suggestions button:hover,
.chatbot-actions button:hover {
  border-color: var(--muted-gold);
  background: var(--muted-gold);
  color: var(--black);
}

.chatbot-log {
  display: grid;
  gap: 0.7rem;
  max-height: min(44vh, 420px);
  overflow: auto;
  padding: 1rem;
}

.chatbot-message {
  max-width: 92%;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(243, 238, 230, 0.12);
  border-radius: 8px;
  background: rgba(243, 238, 230, 0.05);
}

.chatbot-message.user {
  justify-self: end;
  border-color: rgba(176, 141, 87, 0.42);
  background: rgba(176, 141, 87, 0.13);
}

.chatbot-message.assistant {
  justify-self: start;
}

.chatbot-message p {
  margin: 0;
  color: var(--dusty-beige);
  font-size: 0.88rem;
  line-height: 1.5;
}

.chatbot-message.user p {
  color: var(--off-white);
}

.chatbot-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.chatbot-actions button {
  padding: 0.38rem 0.58rem;
  font-size: 0.72rem;
}

.chatbot-suggestions {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  padding: 0 1rem 0.85rem;
}

.chatbot-suggestions button {
  flex: 0 0 auto;
  max-width: 210px;
  padding: 0.5rem 0.68rem;
  font-size: 0.72rem;
  white-space: nowrap;
}

.chatbot-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  padding: 0.85rem 1rem 1rem;
  border-top: 1px solid var(--line-dark);
  background: rgba(16, 16, 15, 0.86);
}

.chatbot-form input {
  min-width: 0;
  padding: 0.76rem 0.82rem;
  border: 1px solid rgba(243, 238, 230, 0.18);
  border-radius: 4px;
  outline: 0;
  background: rgba(243, 238, 230, 0.08);
  color: var(--off-white);
}

.chatbot-form button {
  padding: 0.76rem 0.8rem;
  border: 0;
  border-radius: 4px;
  background: var(--muted-gold);
  color: var(--black);
}

.toast.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.toast.cart-open {
  right: min(450px, calc(100vw - 300px));
}

.site-footer {
  position: relative;
  z-index: 1;
  margin-bottom: 70px;
  padding: clamp(2.2rem, 5vw, 3.5rem) 1rem 0;
  border-top: 1px solid rgba(176, 141, 87, 0.32);
  color: var(--ink-soft);
  text-transform: uppercase;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) minmax(120px, 0.55fr) minmax(150px, 0.65fr) minmax(260px, 0.9fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  color: var(--deep-brick);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 0.95;
}

.footer-logo img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.16));
}

.site-footer span {
  color: var(--charcoal);
  font-weight: 800;
}

.site-footer .footer-logo span {
  color: var(--deep-brick);
  font-weight: 400;
}

.footer-brand p,
.footer-newsletter p,
.footer-block small,
.footer-bottom {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.65;
  text-transform: none;
}

.footer-brand p {
  max-width: 360px;
}

.footer-block,
.footer-newsletter {
  display: grid;
  align-content: start;
  gap: 0.52rem;
}

.footer-block > span,
.footer-newsletter > span {
  color: var(--deep-brick);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  text-transform: uppercase;
}

.footer-block button {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1rem;
  text-align: left;
  text-transform: uppercase;
}

.footer-block button:hover {
  color: var(--deep-brick);
}

.footer-newsletter div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.45rem;
}

.footer-newsletter input {
  min-width: 0;
  border: 1px solid rgba(176, 141, 87, 0.38);
  border-radius: 4px;
  background: rgba(243, 238, 230, 0.68);
  color: var(--charcoal);
  font: inherit;
  padding: 0.78rem 0.85rem;
}

.footer-newsletter button {
  border: 0;
  border-radius: 4px;
  background: var(--deep-brick);
  color: var(--off-white);
  cursor: pointer;
  font-family: var(--font-display);
  padding: 0.78rem 0.95rem;
  text-transform: uppercase;
}

.footer-bottom {
  width: min(1180px, calc(100% - 2rem));
  margin: 2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(176, 141, 87, 0.22);
  text-align: center;
  text-transform: uppercase;
}
