/** Shopify CDN: Minification failed

Line 458:0 Unexpected "<"
Line 569:0 Unexpected "<"

**/
.bundle-builder {
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 20px;
}

.bundle-builder__header {
  text-align: left;
  margin-bottom: 28px;
}

.bundle-builder__heading {
  font-size: 2rem;
  margin: 0 0 8px;
}

.bundle-builder__subtitle {
  margin: 0;
  opacity: 0.75;
}

/* ---------- Slots ---------- */

.bundle-builder__slots {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.bundle-builder__slot {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.bundle-builder__slot:hover {
  border-color: var(--bundle-btn-color, #000);
}

.bundle-builder__slot.is-filled {
  border-color: var(--bundle-btn-color, #000);
}

.bundle-builder__slot-icon {
  flex-shrink: 0;
  display: flex;
  opacity: 0.5;
}

.bundle-builder__slot.is-filled .bundle-builder__slot-icon {
  opacity: 0;
  width: 0;
  overflow: hidden;
}

.bundle-builder__slot-label {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #999;
}

.bundle-builder__slot.is-filled .bundle-builder__slot-label {
  color: #000;
  font-weight: 600;
}

.bundle-builder__slot-arrow {
  flex-shrink: 0;
  opacity: 0.5;
}

/* ---------- Progress / total / add button ---------- */

.bundle-builder__progress {
  text-align: center;
  font-weight: 600;
  margin: 0 0 14px;
}

.bundle-builder__total {
  text-align: center;
  margin: 0 0 14px;
  font-size: 2.1rem;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.bundle-builder__total-original {
  opacity: 0.55;
  color: red;
}

.bundle-builder__total-discounted {
  font-weight: 700;
  color: var(--bundle-btn-color, #000);
}

.bundle-builder__total-savings {
  color: #2e7d32;
}

.bundle-builder__add-btn {
  flex: 1;
  padding: 14px;
  border: none;
  border-radius: 6px;
  background: var(--bundle-btn-color, #000);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.bundle-builder__add-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.bundle-builder__footer {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.bundle-builder__qty {
  /* display: flex; */
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  flex-shrink: 0;
  display:none;
}

.bundle-builder__qty-btn {
  width: 40px;
  border: none;
  background: transparent;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  color: #000;
}

.bundle-builder__qty-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.bundle-builder__qty-btn:hover:not(:disabled) {
  background: #f4f4f4;
}

.bundle-builder__qty-input {
  width: 40px;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  -moz-appearance: textfield;
}

.bundle-builder__qty-input::-webkit-outer-spin-button,
.bundle-builder__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.bundle-builder__error {
  color: #c0392b;
  font-size: 0.85rem;
  text-align: center;
  margin: 10px 0 0;
}

/* ---------- Drawer ---------- */

.bundle-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.bundle-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.bundle-drawer.is-open .bundle-drawer__overlay {
  opacity: 1;
}

.bundle-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
}

.bundle-drawer.is-open .bundle-drawer__panel {
  transform: translateX(0);
}

.bundle-drawer__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
}

.bundle-drawer__search {
  flex: 1;
}

.bundle-drawer__search input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px; /* prevents iOS auto-zoom on focus */
}

.bundle-drawer__close {
  flex-shrink: 0;
  border: none;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  color: #333;
}

/* ---------- Drawer filter tabs (All / For Her / For Him / Unisex / New) ---------- */

.bundle-drawer__tabs {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 14px 16px 0;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.bundle-drawer__tabs::-webkit-scrollbar {
  display: none;
}

.bundle-drawer__tab {
  flex-shrink: 0;
  border: none;
  background: transparent;
  padding: 0 0 12px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.bundle-drawer__tab:hover {
  color: #000;
}

.bundle-drawer__tab.is-active {
  color: #000;
  font-weight: 700;
  border-bottom-color: #000;
}

.bundle-drawer__tab--highlight {
  color: var(--bundle-btn-color, #2f6fed);
}

.bundle-drawer__tab--highlight.is-active {
  color: var(--bundle-btn-color, #2f6fed);
  border-bottom-color: var(--bundle-btn-color, #2f6fed);
}

.bundle-drawer__list {
  flex: 1;
  overflow-y: auto;
  padding: 8px 12px 24px;
}

.bundle-drawer__no-results {
  text-align: center;
  opacity: 0.7;
  padding: 24px 0;
}

.bundle-drawer-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #f0f0f0;
}

.bundle-drawer-item.is-sold-out {
  opacity: 0.5;
}

.bundle-drawer-item[hidden] {
  display: none !important;
}

.bundle-drawer-item__image {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 6px;
  overflow: hidden;
  background: #f4f4f4;
}

.bundle-drawer-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bundle-drawer-item__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bundle-drawer-item__title {
  font-weight: 600;
  font-size: 1.2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bundle-product-card__vendor
{
  font-weight: 600;
  font-size: 1.2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bundle-drawer-item__meta {
  display: flex;
  gap: 10px;
  font-size: 1.2rem;
  opacity: 0.7;
}

.bundle-drawer-item__soldout {
  color: #c0392b;
  font-weight: 600;
}

.bundle-drawer-item__qty {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.bundle-drawer-item__qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  color: #000;
}

.bundle-drawer-item__qty-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.bundle-drawer-item__qty-btn:hover:not(:disabled) {
  background: #f4f4f4;
}

.bundle-drawer-item__qty-value {
  width: 24px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ---------- Mobile ---------- */

@media screen and (max-width: 600px) {
  .bundle-builder {
    padding: 24px 14px;
  }

  .bundle-builder__heading {
    font-size: 1.5rem;
  }

  .bundle-drawer__panel {
    max-width: 100%;
  }
}




/* BADGES ON CART DRAWER SCENT FAMILY */

<style>
.product-badges{
    display:flex;
    flex-wrap:unset;
    gap:12px;
    margin:20px 0;
    align-items:center;
}

.product-badges{
    display:inline-flex;
    align-items:center;
    gap:1px;
    padding:4px 10px;
    border-radius:999px;
    background:#f5f5f5;
    color:#333;
    font-size:15px;
    line-height:1;
    white-space:nowrap;
}

.product-badges span{
    color:#ef6b5a;
    font-weight:600;
}

.product-badge--accent{
    background:#F7C65C;
    color:#222;
    font-size: 1.2rem;
    width: 70%;
}

.product-badge--accent strong{
    font-weight:700;
   
}

.product-badge__info{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:18px;
    height:18px;
    margin-left:8px;
    border-radius:50%;
    background:rgba(255,255,255,.65);
    color:#666;
    font-size:12px;
    font-style:normal;
    font-weight:700;
    flex-shrink:0;
}

/* Tablet */
@media (max-width: 768px){

    .product-badges{
        gap:10px;
    }

    .product-badge{
        font-size:14px;
        padding:8px 14px;
    }

    .product-badge__info{
        width:16px;
        height:16px;
        font-size:11px;
    }

}

/* Mobile */
@media (max-width: 480px){

    .product-badges{
        gap:8px;
    }

    .product-badge{
        font-size:1.1rem;
        padding:8px 12px;
        max-width:100%;
    }

    .product-badge__info{
        width:15px;
        height:15px;
        margin-left:6px;
        font-size:10px;
    }

}
.product-bogo-badge
{
display:inline-flex;
    align-items:center;
    gap:1px;
    padding:10px 16px;
    border-radius:999px;
    background:#f5f5f5;
    color:#333;
    font-size:15px;
    line-height:1;
    white-space:nowrap;
    background:#F7C65C;
    color:#222;
}
</style>

/* ---------- Variant selector (single-product size dropdown in the bundle drawer) ---------- */

.bundle-drawer-item__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  opacity: 0.7;
}

.bundle-drawer-item__size-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 6px 28px 6px 10px;
  font-size: 1.2rem;
  font-family: inherit;
  background-color: #fff;
  color: #000000ff;
  cursor: pointer;
  opacity: 1;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;

  /* Custom dropdown arrow, since appearance:none strips the native one */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 14px;
}

.bundle-drawer-item__size-select:hover {
  border-color: var(--bundle-btn-color, #000);
}

.bundle-drawer-item__size-select:focus-visible {
  outline: none;
  border-color: var(--bundle-btn-color, #000);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
}

.bundle-drawer-item__size-select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.bundle-drawer-item__size-select option:disabled {
  color: #bbb;
}

.bundle-drawer-item__price {
  font-weight: 600;
  color: #333;
}

.bundle-drawer-item__soldout {
  color: #c0392b;
  font-weight: 600;
  font-size: 0.8rem;
}

.bundle-drawer-item.is-sold-out {
  opacity: 0.55;
}

/* Mobile: full-width-ish select so it's easy to tap */
@media screen and (max-width: 600px) {
  .bundle-drawer-item__size-select {
    padding: 8px 30px 8px 10px;
    font-size: 16px; /* prevents iOS auto-zoom on focus */
  }
}