.badge-shopify {
  background: #95BF47;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  width: fit-content;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    cursor: none;
    margin: 0 !important;
    min-height: 38px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(50,127,250,.20);
    color: #c4cfde;
    font-size: 12px !important;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .02em;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.02),
        0 10px 25px rgba(0,0,0,.18);
    transition:
        transform .25s ease,
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease,
        color .25s ease;
}

.badge-pill svg,
.badge-pill img,
.badge-pill i,
.badge-pill span {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.badge-pill:hover {
    border-color: rgba(0, 220, 255, 0.35);
    box-shadow: 0 0 20px rgba(0, 220, 255, 0.12), inset 0 0 20px rgba(0, 220, 255, 0.04);
}

.badge-pill:active {
    transform: translateY(-1px);
}

@media (max-width: 767px) {
    .badges {
        gap: 10px;
    }

    .badge-pill {
        min-height: 34px;
        padding: 8px 14px;
        font-size: 12px;
    }

    .badge-pill svg,
    .badge-pill img,
    .badge-pill i,
    .badge-pill span {
        width: 14px;
        height: 14px;
    }
}

.subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 16px;
  border: 1px solid rgba(50, 127, 250, 0.5) !important;
  border-radius: 999px;
  background: transparent;
  margin: 0;
  font-size: 14px !important;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase  12px !important;
  color: #327ffa !important;
  
}


.subtitle .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: #327ffa;
}

.subtitle .icon svg,
.subtitle .icon img {
  width: 100%;
  height: 100%;
  display: block;
}

