\
/* Leilani Kai Bundle Bars — subtle eco-lux pill */
.lkbb-bundlebar{
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;

  background: #f7efe3;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 999px;

  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.lkbb-bundlebar__left{
  display:flex;
  flex-direction:column;
  gap:2px;
  min-width: 0;
}

.lkbb-bundlebar__title{
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .9;
  line-height: 1.2;
}

.lkbb-bundlebar__msg{
  font-size: 13px;
  opacity: .85;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lkbb-bundlebar__btn{
  text-decoration:none;
  background:#2b2b2b;
  color:#fff;
  padding:10px 16px;
  border-radius:999px;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  white-space:nowrap;
}

.lkbb-bundlebar__btn:hover{
  opacity: .92;
}

.lkbb-stack{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* When stacked, anchor them upward with spacing */
.lkbb-stack .lkbb-bundlebar{
  position: static;
  left: auto; right: auto; bottom: auto;
}

.lkbb-stack{
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
}

@media (max-width: 520px){
  .lkbb-bundlebar{
    border-radius: 18px;
    align-items:flex-start;
    padding: 12px 12px;
  }
  .lkbb-bundlebar__btn{
    width: 100%;
    text-align:center;
  }
  .lkbb-bundlebar__msg{
    white-space: normal;
  }
}
