/* =========================
   WRAPPER
========================= */

.vcom-badges-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  pointer-events: none;
}

/* =========================
   BADGES
========================= */

.vcom-badges {
  position: absolute;
  top: 8px;
  left: 8px;

  display: flex;
  gap: 6px;
  flex-wrap: wrap;

  z-index: 60;
}

/* push ner om ribbon finns */
.vcom-ribbon + .vcom-badges {
  top: 36px;
}

/* =========================
   BADGE BASE
========================= */

.vcom-badge {
  display: inline-flex;
  align-items: center;

  padding: 4px 8px;
  border-radius: 999px;

  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

/* =========================
   BADGE TYPES
========================= */

.vcom-badge--new {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 70;

  background: #f43f5e;
  color: #fff;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
}

.vcom-badge--sale {
  background: #ef4444;
  color: #fff;
  font-weight: 700;
}

.vcom-badge--freeship {
  background: #ecfdf5;
  color: #16a34a;
  border: 1px solid #bbf7d0;
}

.vcom-badge--out {
  background: var(--vcom-danger, #dc2626);
  color: #fff;
}

/* =========================
   RIBBON (RESPONSIVE FIX)
========================= */

.vcom-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;

  width: 110px;
  height: 110px;
  overflow: hidden;
  z-index: 60;
}

.vcom-ribbon__text {
  position: absolute;
  top: 26px;
  left: -40px;

  width: 160px;

  transform: rotate(-45deg);

  text-align: center;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;

  padding: 6px 0;

  color: #fff;
  background: #2f9e44;

  box-shadow: 0 2px 6px rgba(0,0,0,.2);
}

/* =========================
   PRODUCT CARD FIX
========================= */

.products .product {
  position: relative;
  overflow: hidden; /* 🔥 VIKTIG */
  border-radius: var(--vcom-radius, 12px); /* säkerställ match */
}

.vcom-badge--campaign {
  background: rgba(34,197,94,0.12);
  color: #166534;
  border: 1px solid rgba(34,197,94,0.3);

  font-weight: 600;
  font-size: 12px;
  padding: 5px 10px;

  border-radius: 999px;
}

.vcom-product-card__image {
  position: relative;
  display: block;
}

.vcom-campaign-text {
  font-size: 13px;
  font-weight: 600;
  color: #16a34a;

  margin-top: 4px;
  line-height: 1.3;
}

.single-product .vcom-campaign-text {
  font-size: 15px;
  font-weight: 700;
  color: #166534;
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  padding: 8px 12px;
  border-radius: 8px;
  margin: 10px 0 14px;
}