/* ─── Cart ───────────────────────────────────────────────────────── */
.cart-wrap {
  position: relative;
}

.cart-btn {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 9999px;
  background: #c4554d;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  line-height: 16px;
  text-align: center;
  pointer-events: none;
}

.cart-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 300px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  z-index: 200;
  overflow: hidden;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}

.cart-dropdown-header {
  padding: 13px 16px 11px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #787774;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.cart-items {
  max-height: 260px;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.cart-item-title {
  font-size: 13px;
  font-weight: 500;
  color: #373530;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-price {
  font-size: 12px;
  color: #787774;
}

.cart-item-remove {
  width: 26px;
  height: 26px;
  border-radius: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a39e98;
  transition: background 100ms ease, color 100ms ease;
  flex-shrink: 0;
  padding: 0;
}

.cart-item-remove:hover {
  background: #fef3f1;
  color: #c4554d;
}

.cart-footer {
  padding: 12px 16px 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #373530;
}

.cart-total strong {
  font-weight: 700;
}

.cart-checkout-btn {
  display: flex !important;
  justify-content: center;
  width: 100%;
  font-size: 13px;
}

.cart-empty {
  padding: 24px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.cart-empty p {
  font-size: 13px;
  color: #787774;
}

.cart-shop-link {
  font-size: 13px;
}
