/* Kuponový proužek u produktu - zdravotnidoplnky.com */
/* Bezpečně mimo buy-box, aby nerozbíjel množství ani tlačítko košíku */

.zd-product-coupon {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 7px;
  width: 100%;
  max-width: 100%;
  margin: 12px 0 22px 0;
  padding: 9px 12px;
  background: #fff1f1;
  border-radius: 3px;
  font-size: 14px;
  line-height: 1.25;
  color: #222;
  box-sizing: border-box;
  clear: both;
}

.zd-product-coupon-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: #f21718;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.zd-product-coupon-main {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  white-space: nowrap;
}

.zd-product-coupon-code,
.zd-product-coupon-discount {
  font-weight: 700;
  color: #111;
}

.zd-product-coupon-separator {
  color: #777;
  margin: 0 1px;
}

.zd-product-coupon-button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  font: inherit;
  font-weight: 700;
  color: #111;
  text-decoration: underline;
  cursor: pointer;
  white-space: nowrap;
}

.zd-product-coupon-button:hover {
  color: #f21718;
}

.zd-product-coupon-button.is-copied {
  color: #20a64a;
  text-decoration: none;
}

.zd-product-coupon-checks {
  display: none;
  gap: 4px;
  margin-left: 1px;
  white-space: nowrap;
}

.zd-product-coupon.is-copied .zd-product-coupon-checks {
  display: inline-flex;
}

.zd-product-coupon-check {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #20a64a;
  color: #fff;
  font-size: 10px;
  line-height: 15px;
  text-align: center;
  font-weight: 700;
}

/* Mobilní verze */
@media (max-width: 767px) {
  .zd-product-coupon {
    margin: 12px 0 14px 0;
    padding: 8px 10px;
    font-size: 12.5px;
    line-height: 1.25;
    gap: 5px;
    flex-wrap: nowrap;
  }

  .zd-product-coupon-icon {
    width: 21px;
    height: 21px;
    min-width: 21px;
    font-size: 12px;
  }

  .zd-product-coupon-main {
    gap: 3px;
    white-space: nowrap;
  }

  .zd-product-coupon-separator {
    margin: 0;
  }

  .zd-product-coupon-button {
    white-space: nowrap;
  }
}

/* Menší mobily - dovolí zalomení, ale čistě */
@media (max-width: 420px) {
  .zd-product-coupon {
    flex-wrap: wrap;
    font-size: 12px;
    padding: 8px 9px;
    gap: 5px;
    margin: 10px 0 13px 0;
  }

  .zd-product-coupon-main {
    white-space: normal;
  }

  .zd-product-coupon-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    font-size: 11px;
  }
}
