/* =========================================================
   TD Framework: Vendors
   Handles affiliate/vendor purchase buttons.
========================================================= */

.tdfw-purchase-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.tdfw-purchase-button,
.tdfw-purchase-button:visited,
.tdfw-purchase-button:hover,
.tdfw-purchase-button:focus,
.tdfw-purchase-button:active {
  color: #FFFAF0 !important;
  text-decoration: none !important;
}

.tdfw-purchase-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #A14F45;
  font-weight: 400;
  line-height: 1;
  transition: all 0.2s ease;
}

.tdfw-purchase-button:hover,
.tdfw-purchase-button:focus {
  background: #C86E66;
  transform: translateY(-1px);
}

.tdfw-purchase-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  flex: 0 0 18px;
  background-color: #FFFAF0;

  mask-image: var(--icon-url);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;

  -webkit-mask-image: var(--icon-url);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.tdfw-purchase-label {
  color: #FFFAF0 !important;
}
/* =========================================================
   Where to Buy / Purchase Buttons
========================================================= */

.tdfw-where-to-buy {
  width: 100%;
  text-align: center;
}

.tdfw-where-to-buy-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  margin-bottom: 1.25rem;
}

.tdfw-where-to-buy-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;

  margin: 0 0 0.85rem;
  padding: 0.5rem 0.95rem;

  border-radius: 999px;
  background: var(--tdfw-copper, #A14F45);
  color: var(--tdfw-whipped-cream, #FFFAF0);

  font-family: "Poppins", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tdfw-where-to-buy-text {
  max-width: 36rem;
  margin: 0;

  color: rgba(255, 250, 240, 0.76);

  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.65;
}

.tdfw-purchase-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;

  width: 100%;
  text-align: center;
}