/* Shared cart */
.sf-cart-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #d5d2ca;
  border-radius: 999px;
  background: #fff;
  padding: 9px 13px;
  color: inherit;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.sf-cart-trigger span {
  display: grid;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  place-items: center;
  border-radius: 999px;
  background: var(--sf-primary);
  color: #fff;
  font-size: 11px;
}
.sf-cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 39;
  background: rgba(16, 16, 14, 0.34);
  backdrop-filter: blur(2px);
}
.sf-cart {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  width: min(440px, 100%);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: -18px 0 50px rgba(20, 18, 14, 0.16);
  transform: translateX(105%);
  transition: transform 0.25s ease;
}
.sf-cart.is-open {
  transform: translateX(0);
}
body.sf-cart-open {
  overflow: hidden;
}
.sf-cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 12px 18px;
  border-bottom: 1px solid #e3e1db;
}
.sf-cart-head > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sf-cart-head .sf-eyebrow {
  order: 2;
  margin: 0;
  padding-left: 10px;
  border-left: 1px solid #dfe3e0;
  color: color-mix(in srgb, var(--sf-primary) 62%, #777);
  font-size: 10px;
  line-height: 1.2;
  white-space: nowrap;
}
.sf-cart-head h2 {
  order: 1;
  margin: 0;
  font-size: 21px;
  line-height: 1;
}
.sf-cart-head h2 i {
  margin-right: 5px;
  font-size: 18px;
}
.sf-cart-head > button {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: #f1efe9;
  font-size: 18px;
  cursor: pointer;
}
.sf-cart-items {
  min-height: 0;
  flex: 1 1 auto;
  overflow: auto;
  padding: 0 24px;
}
.sf-cart-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 11px;
  padding: 13px 0;
  border-bottom: 1px solid #e8e6e0;
}
.sf-cart-thumb {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border: 1px solid #e7e4dd;
  border-radius: 12px;
  background: #faf9f6;
}
.sf-cart-thumb-empty {
  display: grid;
  place-items: center;
  color: #aaa;
  font-size: 32px;
  font-weight: 800;
}
.sf-cart-copy > a {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 4px;
  color: inherit;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.sf-cart-copy > strong {
  font-size: 14px;
}
.sf-cart-copy {
  min-width: 0;
}
.sf-cart-meta-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}
.sf-cart-meta {
  min-width: 0;
  color: color-mix(in srgb, var(--sf-primary) 65%, #777);
  font-size: 11px;
  line-height: 1.35;
}
.sf-cart-line-total {
  flex: 0 0 auto;
  color: var(--sf-primary);
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
}
.sf-cart-promo {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3px 8px;
  margin: 0 0 6px;
  padding: 6px 8px;
  border: 1px solid color-mix(in srgb, var(--sf-primary) 18%, transparent);
  border-radius: 9px;
  background: color-mix(in srgb, var(--sf-primary) 7%, #fff);
}
.sf-cart-promo b {
  color: var(--sf-primary);
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.sf-cart-promo strong {
  color: var(--sf-primary);
  text-align: right;
  font-size: 10px;
  white-space: nowrap;
}
.sf-cart-prices {
  display: grid;
  flex: 1 1 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
}
.sf-cart-prices > span {
  min-width: 0;
  padding: 6px 7px;
  border-radius: 8px;
  background: #f7f7f4;
}
.sf-cart-prices small,
.sf-cart-prices b {
  display: block;
}
.sf-cart-prices small {
  margin-bottom: 2px;
  color: #6d7471;
  font-size: 9px;
  line-height: 1.2;
}
.sf-cart-prices b {
  color: var(--sf-primary);
  font-size: 12px;
  line-height: 1.2;
}
.sf-cart-price-row {
  display: flex;
  align-items: stretch;
  gap: 5px;
}
.sf-cart-price-row .sf-cart-remove {
  width: 42px;
  min-height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  margin: 0;
  border-radius: 8px;
  background: #f3f2ee;
  text-decoration: none;
}
.sf-cart-quantity {
  display: inline-flex;
  align-items: center;
  margin-top: 13px;
  border: 1px solid #d8d5cd;
  border-radius: 8px;
  overflow: hidden;
}
.sf-cart-quantity-button {
  width: 30px;
  height: 29px;
  border: 0;
  background: #f6f5f1;
  cursor: pointer;
}
.sf-cart-quantity span {
  min-width: 30px;
  text-align: center;
  font-size: 13px;
}
.sf-cart-remove {
  margin-left: 10px;
  border: 0;
  background: transparent;
  color: #777;
  text-decoration: underline;
  font-size: 12px;
  cursor: pointer;
}
.sf-cart-empty {
  margin: auto;
  padding: 30px;
  text-align: center;
  color: var(--sf-muted, #66706c);
}
.sf-cart-empty strong {
  display: block;
  margin-bottom: 7px;
  color: var(--sf-text);
  font-size: 18px;
}
.sf-cart-footer {
  margin-top: auto;
  padding: 22px 24px;
  border-top: 1px solid #e3e1db;
}
.sf-cart-footer > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 18px;
}
.sf-cart-footer .sf-button {
  width: 100%;
  margin: 0;
  border: 0;
  opacity: 0.55;
}
.sf-cart-footer small {
  display: block;
  margin-top: 12px;
  color: var(--sf-muted);
  text-align: center;
}
.sf-cart-promotion-status {
  margin: 0 0 13px;
  padding: 10px 11px;
  border: 1px solid color-mix(in srgb, var(--sf-primary) 20%, transparent);
  border-radius: 9px;
  background: color-mix(in srgb, var(--sf-primary) 7%, #fff);
}
.sf-cart-promotion-status > div {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: var(--sf-primary);
  font-size: 12px;
  line-height: 1.25;
}
.sf-cart-promotion-status > div i {
  color: var(--sf-accent, var(--sf-primary));
}
.sf-cart-promotion-status small {
  margin: 3px 0 0;
  color: var(--sf-muted, #66706c);
  text-align: left;
  font-size: 10px;
}
.sf-cart-promotion-status > span {
  height: 5px;
  display: block;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: color-mix(in srgb, var(--sf-primary) 13%, #fff);
}
.sf-cart-promotion-status > span i {
  width: 0;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--sf-accent, var(--sf-primary));
  transition: width 0.2s ease;
}
.sf-cart-promotion-status > a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--sf-primary);
  font-size: 10px;
  font-weight: 800;
  text-decoration: underline;
}
.sf-add-cart {
  width: 100%;
  border: 0;
  cursor: pointer;
}
.sf-header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 560px) {
  .sf-header-actions nav {
    display: none;
  }
  .sf-cart-head,
  .sf-cart-items,
  .sf-cart-footer {
    padding-left: 18px;
    padding-right: 18px;
  }
}
@media (max-width: 390px) {
  .sf-cart-item {
    grid-template-columns: 54px 1fr;
    gap: 9px;
  }
  .sf-cart-thumb {
    width: 54px;
    height: 54px;
  }
}
