:root {
  --cream: #f5f0ea;
  --warm-white: #f9f6f2;
  --burgundy: #8b2a2a;
  --dark-red: #7a1f1f;
  --brown: #6b4a3a;
  --tan: #c4956a;
  --dark: #1a1410;
  --mid: #4a3f35;
  --light-border: #e0d8cf;
  --font-display: "Optima", Helvetica, sans-serif;
  --font-body: "Optima", Helvetica, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--dark);
  font-size: 13px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.privacy-modal-open {
  overflow: hidden;
}

.hidden {
  display: none !important;
}

.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.privacy-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(244, 239, 233, 0.92);
  backdrop-filter: blur(6px);
}

.privacy-modal__dialog {
  position: relative;
  width: min(100%, 800px);
  background: #f7f5f1;
  border: 1px solid #c87b70;
  box-shadow: 0 18px 46px rgba(99, 76, 62, 0.18);
  color: #76685d;
}

.privacy-modal__content {
  padding: 48px 72px 40px;
  text-align: center;
  border-bottom: 1px solid #e3d8cf;
}

.privacy-modal__logo {
  display: block;
  width: 160px;
  max-width: 60%;
  margin: 0 auto 22px;
}

.privacy-modal__title {
  margin-bottom: 28px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: #76685d;
}

.privacy-modal__text {
  max-width: 630px;
  margin: 0 auto 18px;
  font-size: 13px;
  line-height: 2.05;
  color: #7b7068;
}

.privacy-modal__text:last-child {
  margin-bottom: 0;
}

.privacy-modal__actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 38px 112px;
}

.privacy-modal__button {
  position: relative;
  min-height: 50px;
  padding: 13px 18px;
  border: 0;
  background: #a4574d;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.privacy-modal__button::before,
.privacy-modal__button::after {
  content: '';
  position: absolute;
  right: 12px;
  left: 12px;
  height: 1px;
  background: rgba(255, 255, 255, 0.96);
}

.privacy-modal__button::before {
  top: 4px;
}

.privacy-modal__button::after {
  bottom: 4px;
}

.privacy-modal__button:hover {
  background: #964b42;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .privacy-modal__content {
    padding: 40px 32px 32px;
  }

  .privacy-modal__actions {
    padding: 28px 32px 32px;
  }
}

@media (max-width: 640px) {
  .privacy-modal {
    padding: 16px;
  }

  .privacy-modal__dialog {
    width: 100%;
  }

  .privacy-modal__content {
    padding: 32px 20px 24px;
  }

  .privacy-modal__title {
    font-size: 21px;
    margin-bottom: 18px;
  }

  .privacy-modal__text {
    font-size: 12px;
    line-height: 1.9;
  }

  .privacy-modal__actions {
    grid-template-columns: 1fr;
    padding: 24px 20px 20px;
  }
}

/* ── ANNOUNCEMENT ── */
.announcement {
  background: var(--warm-white);
  border-bottom: 1px solid var(--light-border);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 8px 20px;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--mid);
}
.announcement span { justify-self: center; }
.announcement-arrow {
  background: none;
  border: none;
  color: var(--mid);
  cursor: pointer;
  padding: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.announcement-arrow svg { width: 16px; height: 16px; }
.announcement-divider { height: 6px; background: var(--burgundy); }

/* ── HEADER ── */
.site-header {
  background: var(--warm-white);
  border-bottom: 1px solid var(--light-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 40px 6px;
}
.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.logo img { height: 28px; width: auto; display: block; }

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 40px 10px;
  height: 50px;
}
.header-left {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--dark);
  cursor: pointer;
  text-decoration: none;
}
.header-left {
  border: none;
  background: transparent;
  padding: 0;
}
.header-menu-icon { display: none; }
.mobile-logo { display: none; }
.header-mobile-search { display: none !important; }
.header-center { display: contents; }
.header-left svg { width: 16px; height: 16px; }
.header-center nav { display: flex; gap: 24px; justify-content: center; }
.header-center nav a {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.header-center nav a:hover, .header-center nav a.active { color: var(--burgundy); }
.header-icons { display: flex; gap: 16px; align-items: center; justify-content: flex-end; }
.header-icons a,
.header-icons button { display: inline-flex; align-items: center; color: inherit; text-decoration: none; border: none; background: transparent; padding: 0; cursor: pointer; }
.header-icons svg { width: 18px; height: 18px; cursor: pointer; color: var(--dark); transition: color 0.2s; }
.header-icons svg:hover { color: var(--burgundy); }
.header-cart-link {
  position: relative;
  justify-content: center;
  min-width: 20px;
  min-height: 20px;
}
.header-cart-count {
  position: absolute;
  top: -8px;
  right: -9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--burgundy);
  color: #fff;
  font-size: 9px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
  box-shadow: 0 0 0 1px #f8f3ee;
  pointer-events: none;
}
.header-cart-count[hidden] {
  display: none;
}

.site-search {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1700;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(2px);
  border-bottom: 1px solid #d7cec4;
  transform: translateY(-115%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.site-search.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.site-search__form {
  height: 54px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 14px;
  display: grid;
  grid-template-columns: 18px 1fr 18px auto;
  gap: 10px;
  align-items: center;
}

.site-search__icon,
.site-search__voice {
  width: 18px;
  height: 18px;
  color: #6a665f;
}

.site-search__voice {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-search__input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #c5bbb0;
  background: transparent;
  outline: none;
  font-family: var(--font-body);
  font-size: 24px;
  color: #2a2622;
  line-height: 1;
  padding: 6px 0 8px;
}

.site-search__input::placeholder {
  color: #9b938a;
}

.site-search__close {
  border: none;
  background: transparent;
  color: #7f766c;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
}

body.account-canvas-open {
  overflow: hidden;
}

.account-canvas {
  position: fixed;
  inset: 0;
  z-index: 1650;
  background: rgba(0, 0, 0, 0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.account-canvas.is-open {
  opacity: 1;
  pointer-events: auto;
}

.account-canvas__panel {
  margin-left: auto;
  width: min(100%, 480px);
  height: 100%;
  background: #fbf8f4;
  border-left: 1px solid #dfd4ca;
  transform: translateX(100%);
  transition: transform 0.24s ease;
  overflow-y: auto;
  position: relative;
  padding: 84px 38px 36px;
}

.account-canvas.is-open .account-canvas__panel {
  transform: translateX(0);
}

.account-canvas__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #7d766f;
  background: #807a73;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.account-canvas__close svg {
  width: 16px;
  height: 16px;
}

.account-canvas__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: #171410;
  margin: 0 0 22px;
}

.account-canvas__title em {
  font-style: italic;
}

.account-canvas__intro {
  max-width: 360px;
  font-size: 13px;
  line-height: 1.8;
  color: #60564d;
  margin-bottom: 28px;
}

.account-canvas__required {
  text-align: right;
  font-size: 12px;
  color: #8f8072;
  margin-bottom: 24px;
}

.account-canvas__guest-form,
.account-canvas__logout-form {
  display: grid;
  gap: 18px;
}

.account-canvas__label {
  font-size: 14px;
  color: #594d42;
}

.account-canvas__input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #cdbfb2;
  background: transparent;
  padding: 8px 0 10px;
  outline: none;
  font-family: var(--font-body);
  font-size: 15px;
  color: #211d18;
}

.account-canvas__submit {
  width: 100%;
  min-height: 44px;
  border: 1px solid #cdbbaa;
  background: transparent;
  color: #2f2720;
  font-family: var(--font-body);
  font-size: 16px;
  cursor: pointer;
}

.account-canvas__profile {
  border-bottom: 1px solid #e2d8cf;
  padding-bottom: 18px;
  margin-bottom: 24px;
}

.account-canvas__name {
  font-size: 18px;
  color: #1d1814;
}

.account-canvas__email {
  font-size: 13px;
  color: #766a60;
  margin-top: 6px;
}

.account-canvas__section {
  margin-bottom: 24px;
}

.account-canvas__section-title {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7e7062;
  margin-bottom: 12px;
}

.account-canvas__orders {
  display: grid;
  gap: 10px;
}

.account-order-card {
  border: 1px solid #e5ddd5;
  background: #fffdfb;
  padding: 12px 14px;
}

.account-order-card__top,
.account-order-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.account-order-card__top {
  font-size: 12px;
  color: #241f1a;
  margin-bottom: 6px;
}

.account-order-card__meta {
  font-size: 11px;
  color: #7a7067;
}

.account-canvas__empty {
  font-size: 13px;
  color: #75685e;
}

.account-canvas__links {
  display: grid;
  gap: 10px;
}

.account-canvas__links a {
  font-size: 13px;
  color: #2f2720;
  text-decoration: none;
  border-bottom: 1px solid #ebe2da;
  padding-bottom: 10px;
}

@media (max-width: 900px) {
  .announcement {
    grid-template-columns: auto 1fr auto;
    padding: 10px 8px;
    font-size: 12px;
    letter-spacing: 0.02em;
  }
  .announcement span {
    text-align: center;
  }
  .announcement-arrow {
    padding: 4px;
  }
  .announcement-arrow svg {
    width: 14px;
    height: 14px;
  }

  .header-logo-row {
    display: none;
  }

  .header-inner {
    max-width: none;
    grid-template-columns: auto 1fr auto;
    padding: 0 12px;
    height: 60px;
  }

  .header-left {
    font-size: 0;
    letter-spacing: 0;
    gap: 0;
    width: 28px;
    height: 28px;
    justify-content: center;
    align-items: center;
  }
  .header-left .header-search-icon,
  .header-left span {
    display: none;
  }
  .header-left .header-menu-icon {
    display: block;
    width: 20px;
    height: 20px;
    stroke-width: 1.7;
  }

  .header-center {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .mobile-logo {
    display: inline-flex;
    text-decoration: none;
  }
  .mobile-logo img {
    height: 28px;
    width: auto;
    display: block;
  }

  .header-center nav {
    display: none;
  }

  .header-icons {
    gap: 10px;
  }
  .header-icons .header-desktop-icon {
    display: none;
  }
  .header-mobile-search {
    display: inline-flex !important;
  }
  .header-icons svg {
    width: 19px;
    height: 19px;
  }

  .site-search__form {
    height: 52px;
    padding: 0 10px;
    grid-template-columns: 16px 1fr 16px auto;
    gap: 8px;
  }

  .site-search__icon,
  .site-search__voice {
    width: 16px;
    height: 16px;
  }

  .site-search__input {
    font-size: 18px;
    padding-bottom: 7px;
  }

  .account-canvas__panel {
    width: 100%;
    padding: 84px 28px 30px;
  }

  .account-canvas__title {
    font-size: 24px;
  }
}

body.mobile-menu-open {
  overflow: hidden;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: rgba(0, 0, 0, 0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__panel {
  width: min(100%, 420px);
  height: 100%;
  background: #f7f5f1;
  transform: translateX(-100%);
  transition: transform 0.24s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__header {
  height: 60px;
  border-bottom: 1px solid #dfd7ce;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
}

.mobile-menu__close {
  border: none;
  background: transparent;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2a2520;
  cursor: pointer;
}

.mobile-menu__close svg {
  width: 19px;
  height: 19px;
}

.mobile-menu__logo {
  display: inline-flex;
  justify-self: center;
}

.mobile-menu__logo img {
  height: 28px;
  width: auto;
}

.mobile-menu__icons {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.mobile-menu__icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2a2520;
}

.mobile-menu__icons svg {
  width: 19px;
  height: 19px;
}

.mobile-menu__nav {
  display: block;
  padding: 10px 0 30px;
}

.mobile-menu__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-decoration: none;
  color: #1f1b18;
  font-family: var(--font-display);
  font-size: 20px;
  /* font-size: clamp(27px, 7vw, 40px); */
  line-height: 1.2;
  padding: 14px 14px;
}

.mobile-menu__nav a.active {
  color: #9d5248;
}

.mobile-menu__nav a span {
  color: #9d5248;
  font-family: var(--font-body);
  font-size: 23px;
  line-height: 1;
}

.mobile-menu__footer {
  margin-top: auto;
  border-top: 1px solid #ece8e2;
  background: #f4f2ee;
}

.mobile-menu__quick-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid #ebe5dd;
}

.mobile-menu__quick-links a {
  text-align: center;
  text-decoration: none;
  color: #2d2722;
  font-size: 18px;
  font-size: clamp(12px, 3.2vw, 18px);
  line-height: 1;
  padding: 22px 8px;
  border-right: 1px solid #ebe5dd;
}

.mobile-menu__quick-links a:last-child {
  border-right: none;
}

.mobile-menu__locale {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #3f3731;
  font-size: 13px;
  padding: 18px 10px;
}

.mobile-menu__locale svg {
  color: #4d443e;
}

@media (min-width: 901px) {
  .mobile-menu {
    display: none;
  }
}

/* ── FOOTER ── */
.site-footer {
  background: var(--warm-white);
  color: var(--dark);
  padding-top: 36px;
}

.footer-main-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0 22px;
}

.footer__container {
  background: #9d5248;
  color: #fff;
  padding: 46px 56px 34px;
}

.footer-main-row {
  display: grid;
  grid-template-columns: 1.03fr 1.97fr;
  gap: 58px;
}

.footer-newsletter-title {
  display: block;
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.footer-newsletter-text {
  font-size: 11px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
  max-width: 330px;
}

.newsletter-form {
  margin-bottom: 14px;
}

.footer-form-group {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  max-width: 332px;
}

.footer-form-group input {
  flex: 1;
  border: none;
  background: transparent;
  color: #fff;
  outline: none;
  padding: 8px 0;
  font-size: 11px;
  font-family: var(--font-body);
}

.footer-form-group input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.subscribe-newsletter {
  border: none;
  background: transparent;
  color: #fff;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.footer-policy {
  max-width: 350px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.footer-policy a {
  color: #fff;
  text-decoration: underline;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.footer-card-mobile {
  display: none;
}

.footer-toggle {
  border: none;
  background: transparent;
  color: #fff;
  padding: 0;
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.2;
  text-align: left;
  cursor: default;
}

.footer-collapse {
  overflow: visible;
}

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: 11px;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-size: 11px;
  line-height: 1.5;
}

.footer-list a:hover {
  color: #fff;
}

.footer-copyright-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.footer-copyright__container {
  border-top: 1px solid #e1d8cf;
  padding: 20px 0 24px;
}

.footer-copyright-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 4px 0 18px;
}

.footer-locale-wrap {
  display: flex;
  justify-content: flex-start;
}

.footer-locale-btn {
  border: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8f7a68;
  font-size: 11px;
  cursor: pointer;
}

.footer-logo-wrapper {
  display: flex;
  justify-content: center;
}

.footer-social-desktop {
  display: flex;
  justify-content: flex-end;
}

.footer-social-list {
  list-style: none;
  display: inline-flex;
  gap: 22px;
}

.footer-social-list a {
  text-decoration: none;
  color: #8f7a68;
  font-size: 11px;
}

.footer-bottom-row {
  text-align: center;
}

.footer-vat-line {
  margin: 0;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.45);
}

.footer-vat-line span {
  padding: 0 4px;
}

.kl-footer-h1 {
  margin: 3px 0 0;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.33);
}

@media (max-width: 1100px) {
  .footer__container {
    padding: 34px 24px 30px;
  }

  .footer-main-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-card-mobile {
    display: block;
  }

  .footer-card {
    border-top: 1px solid rgba(255, 255, 255, 0.28);
  }

  .footer-toggle {
    width: 100%;
    margin: 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 14px 0;
  }

  .footer-toggle::after {
    content: '+';
    font-size: 20px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.92);
  }

  .footer-toggle[aria-expanded='true']::after {
    content: '-';
  }

  .footer-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.22s ease;
  }

  .footer-list {
    padding: 0 0 12px;
  }

  .footer-copyright-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 10px;
  }

  .footer-locale-wrap,
  .footer-logo-wrapper,
  .footer-social-desktop {
    justify-content: center;
  }

  .footer-social-desktop {
    display: none;
  }
}

@media (max-width: 700px) {
  .footer-main-wrap,
  .footer-copyright-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-main-wrap {
    padding-bottom: 16px;
  }
}

/* ── SHARED COMPONENTS ── */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.product-card { cursor: pointer; transition: transform 0.3s ease; }
.product-card:hover { transform: translateY(-2px); }
.product-img { aspect-ratio: 3/4; background: var(--cream); position: relative; overflow: hidden; margin-bottom: 14px; }
.product-img-inner { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.wish-btn { position: absolute; top: 12px; right: 12px; background: none; border: none; cursor: pointer; padding: 4px; }
.wish-btn svg { width: 18px; height: 18px; color: var(--mid); }
.product-name { font-family: var(--font-display); font-size: 15px; font-weight: 400; color: var(--dark); margin-bottom: 4px; }
.product-type { font-size: 11px; letter-spacing: 0.05em; color: var(--mid); margin-bottom: 4px; }
.product-price { font-size: 12px; color: var(--mid); }
.color-dots { display: flex; gap: 4px; margin-top: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.1); }

.btn-dark { display: inline-block; background: var(--dark); color: white; padding: 13px 36px; font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; border: none; font-family: var(--font-body); transition: background 0.3s; width: fit-content; }
.btn-dark:hover { background: var(--burgundy); }
.btn-outline { border: 1px solid rgba(255,255,255,0.7); color: white; padding: 11px 32px; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; background: transparent; transition: all 0.3s; font-family: var(--font-body); }
.btn-outline:hover { background: white; color: var(--dark); }
.btn-white { display: inline-block; background: white; color: var(--dark); padding: 13px 36px; font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; border: none; font-family: var(--font-body); width: fit-content; }

.btn {
  text-decoration: none;
  appearance: none;
  cursor: pointer;
  margin: 0;
  display: inline-block;
  font-weight: 400;
  color: #5b5a57;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.875rem 2.625rem;
  font-size: 0.875rem;
  line-height: 1.4;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.btn-primary {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #9d5248;
  border-color: #9d5248;
  transition: background-color 300ms cubic-bezier(0.42, 0, 0.58, 1);
}
.btn-primary::before,
.btn-primary::after {
  position: absolute;
  right: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #f7f5f1;
  transition: width 300ms cubic-bezier(0.42, 0, 0.58, 1), left 300ms cubic-bezier(0.42, 0, 0.58, 1), right 300ms cubic-bezier(0.42, 0, 0.58, 1);
}
.btn-primary::before { top: 2px; }
.btn-primary::after { bottom: 2px; }
@media (hover: hover) {
  .btn-primary:hover:not(.active):not(:disabled,[readonly],.disabled)::before,
  .btn-primary:hover:not(.active):not(:disabled,[readonly],.disabled)::after,
  .btn-primary.hover:not(:disabled,[readonly],.disabled)::before,
  .btn-primary.hover:not(:disabled,[readonly],.disabled)::after {
    right: 0.625rem;
    left: 0.625rem;
    width: calc(100% - 1.25rem);
  }
}
.btn-block { display: block; width: 100%; min-width: 0; max-width: 100%; }
.btn-block + .btn-block { margin-top: 0.5rem; }
