/* Shared Lifestyle family lock chip — works on the dark storefront. */
#lifestyle-lock {
  margin: 0 0 18px;
}

.sbs-lock-chip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  padding: 8px 12px 8px 10px;
  background: #fffaf3;
  color: #2a2218;
  border: 2px solid #d8c4a2;
  border-radius: 999px;
  box-shadow: 2px 3px 0 rgba(0, 0, 0, 0.18);
}

.sbs-lock-chip.is-pending {
  background: #fff4e4;
  border-color: #e6c36a;
}

.sbs-lock-chip.is-in {
  background: #eef8f2;
  border-color: #7fc4b0;
}

.sbs-lock-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border: 2.5px solid #2a2218;
  border-radius: 5px 5px 6px 6px;
  position: relative;
  background: #f3ead8;
}

.sbs-lock-icon::before {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: -8px;
  height: 8px;
  border: 2.5px solid #2a2218;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.sbs-lock-icon.is-open::before {
  transform: translateX(5px) rotate(18deg);
  transform-origin: bottom left;
}

.sbs-lock-copy {
  font-size: 0.92rem;
  font-weight: 700;
}

.sbs-lock-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6a5c4a;
}

.sbs-lock-name {
  min-height: 36px;
  width: 110px;
  padding: 4px 8px;
  border: 1.5px solid #d4c6ae;
  border-radius: 8px;
  background: #fff;
  color: #2a2218;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.sbs-lock-btn {
  min-height: 36px;
  padding: 4px 12px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #2a2218;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 1px 2px 0 #c4b49a;
}

.sbs-lock-primary {
  background: #2a2218;
  color: #fffaf3;
  box-shadow: 1px 2px 0 #7fc4b0;
}

.sbs-lock-note {
  margin: 8px 4px 0;
  font-size: 0.85rem;
  color: #e6c36a;
}

@media (max-width: 520px) {
  .sbs-lock-chip { border-radius: 18px; }
  .sbs-lock-name { width: 100%; }
}
