/*!****************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/product-card/style.scss ***!
  \****************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/**
 * Product Card — front-end styles.
 *
 * Warm cozy palette consistent with the site design.
 * Uses the site's plum (#3B1D62) for CTA, gold (#D4AA40) for badges.
 */
/* ── Card ── */
.mpw-product-card {
  background: #fdf9f2;
  border: 1.5px solid #ede0c4;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.mpw-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(44, 26, 8, 0.12);
}
/* ── Image ── */
.mpw-product-card__image-wrap {
  position: relative;
  background: linear-gradient(160deg, #f8f0e0 0%, #ede0c4 100%);
  overflow: hidden;
  aspect-ratio: 1/1;
}
.mpw-product-card__image-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.mpw-product-card__image-link:focus-visible {
  outline: 2px solid var(--mpw-add-bg, #3b1d62);
  outline-offset: -2px;
}
.mpw-product-card__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: opacity 0.15s ease;
}
/* ── Badge ── */
.mpw-product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #d4aa40;
  color: #2c1a08;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: 4px;
  line-height: 1.4;
}
/* ── Body ── */
.mpw-product-card__body {
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.mpw-product-card__subtitle {
  font-size: 0.75rem;
  color: #8c6a3f;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.mpw-product-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #2c1a08;
  line-height: 1.3;
}
/* ── Format buttons ── */
.mpw-product-card__formats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.mpw-product-card__format-btn {
  background: var(--mpw-fmt-bg, transparent);
  border: 1.5px solid var(--mpw-fmt-color, #3b1d62);
  color: var(--mpw-fmt-color, #3b1d62);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  line-height: 1.4;
}
.mpw-product-card__format-btn:hover {
  opacity: 0.8;
}
.mpw-product-card__format-btn--active {
  background: var(--mpw-fmt-color, #3b1d62);
  color: var(--mpw-fmt-bg, #fff);
  border-color: var(--mpw-fmt-color, #3b1d62);
}
.mpw-product-card__format-btn--active:hover {
  opacity: 0.9;
}
/* ── Price row ── */
.mpw-product-card__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  margin-top: auto;
  padding-top: 8px;
}
.mpw-product-card__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2c1a08;
  flex: 0 0 auto;
}
/* ── Add to Cart button ── */
.mpw-product-card__add-btn {
  background: var(--mpw-add-bg, #3b1d62);
  color: var(--mpw-add-color, #fff);
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.1s ease;
  white-space: nowrap;
  line-height: 1.4;
  flex: 1 0 7.5em;
  text-align: center;
}
.mpw-product-card__add-btn:hover {
  opacity: 0.85;
}
.mpw-product-card__add-btn:active {
  transform: scale(0.97);
}
.mpw-product-card__add-btn--loading {
  opacity: 0.7;
  cursor: wait;
}
/* ── Single card wrap (standalone block) ── */
.mpw-product-card-wrap {
  max-width: 320px;
}
/* ── Responsive ── */
@media (max-width: 480px) {
  .mpw-product-card__body {
    padding: 10px 12px 14px;
  }
  .mpw-product-card__format-btn {
    font-size: 0.7rem;
    padding: 3px 10px;
  }
  .mpw-product-card__price {
    font-size: 1.1rem;
  }
  .mpw-product-card__add-btn {
    padding: 7px 14px;
    font-size: 0.75rem;
  }
}

/*# sourceMappingURL=style-index.css.map*/