/* Cart Addons Overlay */
.bbca-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
}
.bbca-overlay.is-open { display: block; }

.bbca-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.bbca-panel {
  position: absolute;
  right: 12px;
  top: 12px;
  bottom: 12px;
  width: min(520px, calc(100% - 24px));
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bbca-header {
  position: sticky;
  top: 0;
  background: var(--bg-dark);
  color: #fff;
  text-transform: uppercase;
  padding: 14px 16px;
  font-weight: 800;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  z-index: 2;
}

.bbca-close {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  opacity: .9;
}
.bbca-close:hover { opacity: 1; }

.bbca-body {
  padding: 14px 16px 16px;
  overflow: auto;
  flex: 1 1 auto;
}

.bbca-item {
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 12px;
}

.bbca-row {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 12px;
  align-items: start;
}

.bbca-img {
  width: 78px;
  height: 78px;
  border-radius: 10px;
  overflow: hidden;
  background: #f3f3f3;
}
.bbca-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bbca-title {
  font-weight: 800;
  font-size: .85em;
  margin: 0 0 6px 0;
  line-height: 1.25;
}

.bbca-meta {
  margin: 0;
  font-size: 13px;
  color: #333;
  line-height: 1.4;
}

.bbca-bottom {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.bbca-price {
  font-weight: 800;
  font-size: 1.0em;
  white-space: nowrap;
}

.bbca-remove {
  border: 2px solid #2b2b2b;
  background: #fff;
  color: #111;
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: 12px;
}
.bbca-remove[disabled] { opacity: .6; cursor: not-allowed; }

body.bbca-lock { overflow: hidden; }

