.lkpf {
  --lkpf-border: #D3B7AB;
  --lkpf-text: #2A2024;
  --lkpf-muted: #6e655c;
  --lkpf-bg: #fffaf4;
  --lkpf-panel: #ffffff;
  --lkpf-accent: #D3B7AB;
  --lkpf-accent-hover: #c7a89a;
  --lkpf-button-text: #51505B;
  --lkpf-soft: #fbf5f0;
  --lkpf-radius: 999px;
  position: relative;
  margin: .65rem 0 .65rem;
  color: var(--lkpf-text);
  font-family: 'Poppins', sans-serif;
}


.lkpf--auto {
  margin: .45rem 0 .65rem;
}

@media (min-width: 769px) {
  .lkpf--auto {
    float: left;
    clear: none;
    margin: 0 0 .95rem;
  }

  .lkpf--auto .lkpf-toolbar {
    display: inline-flex;
  }
}

@media (max-width: 600px) {
  .lkpf {
    margin: .55rem 0 .24rem;
  }

  .lkpf--auto {
    float: none;
    margin: .55rem 0 .24rem;
  }
}


.lkpf-lock-scroll,
.lkpf-lock-scroll body {
  overflow: hidden;
}

.lkpf-overlay[hidden],
.lkpf-drawer[hidden] {
  display: none !important;
}

.lkpf-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .6rem;
}

.lkpf .lkpf-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 42px;
  padding: .68rem 1rem;
  border: 1px solid var(--lkpf-border) !important;
  border-radius: var(--lkpf-radius);
  background: var(--lkpf-panel) !important;
  background-color: var(--lkpf-panel) !important;
  color: var(--lkpf-button-text) !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  font-style: normal !important;
  line-height: 1.2;
  letter-spacing: normal !important;
  text-transform: none !important;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  text-decoration: none;
  -webkit-appearance: none;
  appearance: none;
}

.lkpf .lkpf-open:hover,
.lkpf .lkpf-open:focus-visible {
  border-color: var(--lkpf-border) !important;
  background: var(--lkpf-bg) !important;
  background-color: var(--lkpf-bg) !important;
  color: var(--lkpf-button-text) !important;
  outline: none;
}


.lkpf .lkpf-open span,
.lkpf .lkpf-submit {
  font-family: 'Poppins', sans-serif !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  font-style: normal !important;
  letter-spacing: normal !important;
  text-transform: none !important;
}

.lkpf-open__icon {
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 auto;
  stroke: currentColor;
}

.lkpf-active {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem;
}

.lkpf-pill,
.lkpf-clear {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  min-height: 32px;
  padding: .35rem .7rem;
  border-radius: var(--lkpf-radius);
  border: 1px solid var(--lkpf-border);
  background: var(--lkpf-bg);
  color: var(--lkpf-text);
  font-size: 15px;
  text-decoration: none;
}

.lkpf-clear {
  background: transparent;
  color: var(--lkpf-muted);
}

.lkpf-overlay {
  position: fixed;
  inset: 0;
  z-index: 99980;
  background: rgba(26, 22, 18, .38);
}

.lkpf-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99990;
  width: min(92vw, 380px);
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  background: var(--lkpf-panel);
  box-shadow: 14px 0 34px rgba(0,0,0,.14);
  border-right: 1px solid rgba(211, 183, 171, .55);
  transform: translateX(-105%);
  visibility: hidden;
  transition: transform .22s ease, visibility 0s linear .22s;
  will-change: auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.lkpf.is-animating .lkpf-drawer {
  will-change: transform;
}

.lkpf.is-open .lkpf-drawer {
  transform: translateX(0);
  visibility: visible;
  transition-delay: 0s;
}

/*
 * Chrome/Windows can render text softly inside a permanently transformed
 * off-canvas layer. After the opening animation has finished, JS adds
 * .is-settled so the panel sits at left:0 without transform composition.
 */
.lkpf.is-open.is-settled .lkpf-drawer {
  transform: none;
  will-change: auto;
  transition: none;
}

.lkpf-form {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

.lkpf-drawer__header,
.lkpf-drawer__footer {
  flex: 0 0 auto;
  padding: 1.05rem 1.25rem;
  background: var(--lkpf-panel);
}

.lkpf-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--lkpf-border);
}

.lkpf .lkpf-drawer__title {
  margin: 0 !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.05rem !important;
  line-height: 1.25 !important;
  font-weight: 400 !important;
  color: var(--lkpf-text) !important;
}

.lkpf .lkpf-close {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  background-color: transparent !important;
  color: var(--lkpf-text) !important;
  box-shadow: none !important;
  font: inherit !important;
  font-size: 1.9rem !important;
  font-weight: 300 !important;
  line-height: 1 !important;
  cursor: pointer;
  text-decoration: none !important;
  -webkit-appearance: none;
  appearance: none;
}

.lkpf .lkpf-close:hover,
.lkpf .lkpf-close:focus-visible {
  background: var(--lkpf-bg) !important;
  background-color: var(--lkpf-bg) !important;
  color: var(--lkpf-text) !important;
  outline: none;
}

.lkpf-drawer__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: .55rem 1.25rem 1.2rem;
  color: var(--lkpf-text);
  font-size: 15px;
  font-weight: 300;
}

.lkpf-group {
  padding: 0;
  border-bottom: 1px solid rgba(211, 183, 171, .7);
  color: var(--lkpf-text);
}

.lkpf-group__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  width: 100%;
  padding: 1.08rem 0;
  cursor: pointer;
  list-style: none;
  color: var(--lkpf-text);
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 400;
}

.lkpf-group__toggle::-webkit-details-marker {
  display: none;
}

.lkpf-group__toggle::marker {
  content: '';
  font-size: 0;
}

.lkpf-group__title {
  margin: 0;
  color: var(--lkpf-text);
  font: inherit;
}

.lkpf-group__chevron {
  width: .55rem;
  height: .55rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform .18s ease;
  opacity: .75;
  flex: 0 0 auto;
}

.lkpf-group[open] .lkpf-group__chevron {
  transform: rotate(-135deg);
}

.lkpf-group__content {
  padding: .08rem 0 1.12rem;
}

.lkpf-options {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.lkpf-options--swatches {
  display: grid;
  grid-template-columns: 1fr;
  gap: .2rem;
}

.lkpf-option {
  display: flex;
  align-items: center;
  gap: .55rem;
  min-height: 34px;
  padding: .4rem .45rem;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--lkpf-text);
  cursor: pointer;
  user-select: none;
  font-weight: 300;
  transition: background-color .14s ease, color .14s ease;
}

.lkpf-option:hover,
.lkpf-option:focus-within {
  background: var(--lkpf-soft);
  color: var(--lkpf-text);
}

.lkpf-option.is-active {
  background: var(--lkpf-bg);
}

.lkpf-option input[type="checkbox"],
.lkpf-option input[type="radio"] {
  width: 16px;
  height: 16px;
  margin: 0;
  border: 1.5px solid var(--lkpf-border);
  border-radius: 4px;
  background: #fff;
  box-shadow: none;
  cursor: pointer;
  flex: 0 0 auto;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color .14s ease, background-color .14s ease, box-shadow .14s ease;
}

.lkpf-option input[type="radio"] {
  border-radius: 999px;
}

.lkpf-option:hover input[type="checkbox"],
.lkpf-option:hover input[type="radio"],
.lkpf-option input[type="checkbox"]:focus-visible,
.lkpf-option input[type="radio"]:focus-visible {
  border-color: var(--lkpf-accent-hover);
  outline: none;
  box-shadow: 0 0 0 3px rgba(211, 183, 171, .25);
}

.lkpf-option input[type="checkbox"]:checked {
  border-color: var(--lkpf-accent-hover);
  background-color: var(--lkpf-accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' d='M3.3 8.1 6.4 11.1 12.7 4.9'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px 12px;
}

.lkpf-option input[type="radio"]:checked {
  border-color: var(--lkpf-accent-hover);
  background-color: #fff;
  background-image: radial-gradient(circle, var(--lkpf-accent-hover) 0 43%, transparent 46%);
}

.lkpf-option__label {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.35;
  color: var(--lkpf-text);
}

.lkpf-swatch {
  display: inline-block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.16);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.5);
  background-size: cover;
  background-position: center;
  flex: 0 0 auto;
}

.lkpf-price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
}

.lkpf-price-row label {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  color: var(--lkpf-muted);
  font-size: 15px;
  font-weight: 300;
}

.lkpf-price-row input {
  width: 100%;
  min-height: 40px;
  padding: .45rem .6rem;
  border: 1px solid var(--lkpf-border);
  border-radius: 12px;
  color: var(--lkpf-text);
  font: inherit;
  font-size: 15px;
  font-weight: 300;
}

.lkpf-price-row input:hover,
.lkpf-price-row input:focus {
  border-color: var(--lkpf-accent-hover);
  outline: none;
  box-shadow: 0 0 0 3px rgba(211, 183, 171, .22);
}

.lkpf-drawer__footer {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: .55rem;
  border-top: 1px solid var(--lkpf-border);
  box-shadow: 0 -8px 18px rgba(0,0,0,.04);
  padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
}

.lkpf .lkpf-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 100%;
  min-height: 42px;
  padding: .68rem 1rem;
  border: 1px solid var(--lkpf-border) !important;
  border-radius: var(--lkpf-radius);
  background: var(--lkpf-panel) !important;
  background-color: var(--lkpf-panel) !important;
  color: var(--lkpf-button-text) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  font-family: 'Poppins', sans-serif !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  font-style: normal !important;
  line-height: 1.2;
  letter-spacing: normal !important;
  text-transform: none !important;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  -webkit-appearance: none;
  appearance: none;
}

.lkpf .lkpf-submit:hover,
.lkpf .lkpf-submit:focus-visible {
  border-color: var(--lkpf-border) !important;
  background: var(--lkpf-bg) !important;
  background-color: var(--lkpf-bg) !important;
  color: var(--lkpf-button-text) !important;
  outline: none;
}

.lkpf-reset {
  flex: 0 0 auto;
  color: var(--lkpf-muted);
  text-align: center;
  text-decoration: underline;
  text-underline-offset: .18em;
}

@media (min-width: 601px) {
  .lkpf-drawer__body {
    padding-top: .75rem;
  }

  .lkpf-group {
    margin-bottom: .38rem;
  }

  .lkpf-group__toggle {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
}

@media (max-width: 600px) {
  .lkpf-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .lkpf .lkpf-open {
    width: 100%;
  }

  .lkpf-drawer {
    width: min(96vw, 440px);
  }

  .lkpf-options--swatches {
    grid-template-columns: 1fr;
  }

  .lkpf-drawer__footer {
    align-items: stretch;
    flex-direction: column;
    padding-bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  }

  .lkpf .lkpf-submit {
    width: 100%;
  }

  .lkpf-reset {
    text-align: center;
  }
}
