/* ============================================================
   DISCOUNT PAGE — discount.css
   ============================================================ */


/* ── DISCOUNT HERO (mini) ── */


.disc-hero__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.disc-hero__heading {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--c-white);
  margin-bottom: 12px;
}

.disc-hero__heading em {
  color: var(--c-green);
  font-style: normal;
}

.disc-hero__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  max-width: 360px;
}

.disc-hero__stats {
  display: flex;
  gap: 40px;
  flex-shrink: 0;
  align-items: flex-end;
}

.disc-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.disc-hero__stat-num {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--c-green);
  line-height: 1;
}

.disc-hero__stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  text-align: right;
}


/* ── FEATURED DEAL ── */
.featured-deal {
  background:
    linear-gradient(135deg, rgba(228,174,57,0.22) 0%, rgba(228,174,57,0) 58%),
    #161616;
  border-top: 2px solid rgba(228,174,57,0.5);
  border-bottom: 1px solid rgba(228,174,57,0.12);
  position: relative;
  overflow: hidden;
}

.featured-deal::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(228,174,57,0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* Watermark */
.featured-deal::after {
  content: 'DEAL';
  position: absolute;
  bottom: -16px;
  right: -10px;
  font-family: var(--font-display);
  font-size: clamp(100px, 18vw, 220px);
  color: rgba(228,174,57,0.05);
  letter-spacing: 0.05em;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
  line-height: 1;
}

.featured-deal__inner {
  display: flex;
  align-items: center;
  gap: 60px;
  padding-top: 64px;
  padding-bottom: 64px;
  position: relative;
  z-index: 1;
}

.featured-deal__left {
  flex: 1;
  min-width: 0;
}

/* Label */
.featured-deal__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}

.featured-deal__label-bar {
  width: 24px;
  height: 2px;
  background: var(--c-green);
  flex-shrink: 0;
}

.featured-deal__label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-green);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

/* Skin name */
.featured-deal__name {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--c-white);
  margin-bottom: 20px;
}

/* Detail pills (float / wear / rarity) */
.featured-deal__details {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 28px;
}

.featured-deal__detail-pill {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.45);
}

.featured-deal__detail-pill--rarity {
  color: #D32CE6;
  border-color: rgba(211,44,230,0.3);
  background: rgba(211,44,230,0.07);
}

/* Price block — new price + badge row, old price below */
.featured-deal__price-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 36px;
}

.featured-deal__price-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.featured-deal__old {
  font-size: 20px;
  color: rgba(255,255,255,0.3);
  text-decoration: line-through;
  font-family: var(--font-body);
}

.featured-deal__new {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 80px);
  color: var(--c-green);
  letter-spacing: 0.02em;
  line-height: 1;
}

.featured-deal__pct-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(153,238,45,0.1);
  border: 1px solid rgba(153,238,45,0.3);
  color: var(--c-green);
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.04em;
  line-height: 1;
  align-self: center;
}

.featured-deal__speed-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: rgba(241,93,9,0.1);
  border: 1px solid rgba(241,93,9,0.25);
  color: var(--c-orange);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* CTA row */
.featured-deal__cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.featured-deal__buy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.featured-deal__wish {
  height: 50px;
  padding: 0 20px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.55);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: border-color .2s, color .2s, background .2s;
  white-space: nowrap;
}

.featured-deal__wish:hover {
  border-color: rgba(255,255,255,0.28);
  color: var(--c-white);
  background: rgba(255,255,255,0.04);
}

/* Image / right column */
.featured-deal__right {
  flex-shrink: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 380px;
  gap: 12px;
}

.featured-deal__img-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(228,174,57,0.22) 0%, transparent 65%);
  pointer-events: none;
}

.featured-deal__img {
  width: 100%;
  max-width: 360px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 60px rgba(228,174,57,0.35));
  animation: float-weapon 4s ease-in-out infinite;
}

@keyframes float-weapon {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%       { transform: translateY(-14px) rotate(-5deg); }
}

/* Stock badge */
.featured-deal__stock {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(153,238,45,0.1);
  border: 1px solid rgba(153,238,45,0.25);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-green);
}

.featured-deal__stock-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-green);
  animation: pulse-dot 1.8s ease-in-out infinite;
}


/* ── CONTROLS — quick filters + sort ── */
.disc-controls {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: sticky;
  top: var(--header-h);
  z-index: 50;
  background: rgba(17,17,17,0.95);
  backdrop-filter: blur(12px);
}

.disc-controls__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
  flex-wrap: wrap;
}

/* Quick filter chips */
.disc-filters {
  display: flex;
  gap: 6px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
}

.disc-filters::-webkit-scrollbar { display: none; }

.disc-chip {
  flex-shrink: 0;
  height: 36px;
  padding: 0 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}

.disc-chip:hover {
  background: rgba(255,255,255,0.09);
  color: var(--c-white);
}

.disc-chip--active {
  background: rgba(153,238,45,0.1);
  border-color: rgba(153,238,45,0.35);
  color: var(--c-green);
}

/* Sort */
.disc-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.disc-sort__label {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  white-space: nowrap;
}

.disc-sort__select {
  height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--c-white);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 0 28px 0 10px;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 6px center;
  background-size: 14px;
  min-width: 180px;
  transition: border-color .2s;
}

.disc-sort__select:focus { border-color: rgba(153,238,45,0.38); }
.disc-sort__select option { background: #1a1a1a; }

/* Results count */
.disc-controls__count {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  flex-shrink: 0;
}


/* ── DISCOUNT SECTION ── */
.disc-section {
  padding-top: 40px;
  padding-bottom: 60px;
}

.disc-section__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
}

.disc-section__title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.03em;
}

/* ── DISCOUNT GRID ── */
.disc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}


/* ── DISCOUNT CARD — extends product-card from style.css ── */

/* disc-product-card is a flex column — body pushes to bottom */
.disc-product-card {
  display: flex;
  flex-direction: column;
}

/* Fixed image zone — all cards in a row share the same height */
.disc-product-card .product-card__img-wrap {
  height: 164px;
  min-height: unset;
  flex-shrink: 0;
}

/* Body grows to fill remaining space → footer always at bottom */
.disc-product-card .product-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 10px 14px 14px;
}

/* Push the footer (timer + buy btn) to the very bottom of body */
.disc-card-footer {
  margin-top: auto !important;
  padding-top: 8px;
}

/* Boost tags strip — one fixed-height row */
.disc-boosts {
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
  padding: 8px 10px 0;
  height: 30px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.boost-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 3px 7px;
}

.boost-tag--fire {
  background: rgba(241,93,9,0.14);
  color: var(--c-orange);
  border: 1px solid rgba(241,93,9,0.22);
}

.boost-tag--speed {
  background: rgba(153,238,45,0.09);
  color: var(--c-green);
  border: 1px solid rgba(153,238,45,0.18);
}

.boost-tag--timer {
  background: rgba(245,158,11,0.09);
  color: #f59e0b;
  border: 1px solid rgba(245,158,11,0.2);
}

.boost-tag--views {
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.08);
}

/* Discount % badge inside img-wrap */
.disc-pct-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 4;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 3px 8px;
  transition: transform .3s ease;
}

.card-bg--rare      .disc-pct-badge { color: #4B69FF; background: rgba(75,105,255,0.15); }
.card-bg--ancient   .disc-pct-badge { color: #EB4B4B; background: rgba(235,75,75,0.15); }
.card-bg--legendary .disc-pct-badge { color: #8847FF; background: rgba(136,71,255,0.15); }
.card-bg--common    .disc-pct-badge { color: #B0C3D9; background: rgba(176,195,217,0.1); }
.card-bg--uncommon  .disc-pct-badge { color: #5E98D9; background: rgba(94,152,217,0.15); }
.card-bg--exceedingly .disc-pct-badge { color: #D32CE6; background: rgba(211,44,230,0.15); }
.card-bg--immortal  .disc-pct-badge { color: #E4AE39; background: rgba(228,174,57,0.15); }

.disc-product-card:hover .disc-pct-badge { transform: scale(1.12); }

/* Card footer — timer + buy btn */
.disc-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 7px;
}

.disc-timer {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
}

.disc-timer svg { flex-shrink: 0; }

.disc-timer--urgent { color: #f59e0b; }

/* Buy button — slides in on hover */
.disc-buy-btn {
  flex-shrink: 0;
  height: 28px;
  padding: 0 12px;
  background: var(--c-green);
  color: #111;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  clip-path: var(--clip-sm);
  opacity: 0;
  transform: translateX(4px);
  transition: opacity .25s ease, transform .25s ease, background .2s;
}

.disc-product-card:hover .disc-buy-btn {
  opacity: 1;
  transform: translateX(0);
}

.disc-buy-btn:hover { background: var(--c-green-light); }

@media (hover: none) {
  .disc-buy-btn { opacity: 1; transform: none; }
}


/* ── FLASH DEALS SECTION ── */
.flash-deals {
  background:
    linear-gradient(180deg, rgba(235,75,75,0.06) 0%, transparent 40%),
    #111;
  border-top: 1px solid rgba(235,75,75,0.15);
  padding: 60px 0;
}

.flash-deals__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.flash-deals__title-group {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.flash-deals__title {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 0.03em;
  color: var(--c-white);
}

.flash-deals__subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}

/* Section-level countdown */
.flash-deals__countdown {
  display: flex;
  align-items: center;
  gap: 8px;
}

.flash-deals__countdown-label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
}

.flash-deals__timer-display {
  display: flex;
  gap: 4px;
  align-items: center;
}

.flash-deals__timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}

.flash-deals__timer-num {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.06em;
  color: #EB4B4B;
  line-height: 1;
  min-width: 2ch;
  text-align: center;
}

.flash-deals__timer-sep {
  font-family: var(--font-display);
  font-size: 24px;
  color: rgba(235,75,75,0.5);
  align-self: flex-start;
  padding-top: 2px;
}

.flash-deals__timer-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
}

/* Flash deal cards row */
.flash-deals__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  transition: opacity .4s ease;
}

/* Flash card — urgent red style */
.flash-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(235,75,75,0.06) 0%, #171717 40%);
  border: 1px solid rgba(235,75,75,0.18);
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .35s ease;
  /* Ensures buy button aligns across same-row cards */
  height: 100%;
}

.flash-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #EB4B4B 0%, rgba(235,75,75,0) 100%);
}

.flash-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 40px rgba(235,75,75,0.25), 0 0 0 1px rgba(235,75,75,0.2);
}

.flash-card__timer-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: rgba(235,75,75,0.15);
  border: 1px solid rgba(235,75,75,0.3);
  color: #EB4B4B;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.04em;
  z-index: 3;
}

.flash-card__timer-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #EB4B4B;
  animation: pulse-dot 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

.flash-card__pct {
  position: absolute;
  top: 10px;
  right: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  color: #E4AE39;
  background: rgba(228,174,57,0.12);
  padding: 4px 10px;
  line-height: 1;
  letter-spacing: 0.03em;
  z-index: 3;
  transition: transform .3s ease;
}

.flash-card:hover .flash-card__pct { transform: scale(1.1); }

.flash-card__img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  /* Fixed height so all cards in a row share the same image zone */
  height: 160px;
  flex-shrink: 0;
  position: relative;
  padding: 0 24px;
  padding-top: 32px; /* room for the LIVE badge */
}

.flash-card__img {
  height: 100px;
  max-height: 100px;
  width: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transition: transform .35s ease;
  filter: drop-shadow(0 8px 20px rgba(235,75,75,0.2));
}

.flash-card:hover .flash-card__img {
  transform: scale(1.07) translateY(-4px);
}

.flash-card__body {
  padding: 10px 12px 14px;
  border-top: 1px solid rgba(235,75,75,0.1);
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1; /* fills remaining height */
}

.flash-card__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.flash-card__pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.flash-card__old {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-decoration: line-through;
}

.flash-card__new {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--c-white);
  letter-spacing: 0.03em;
  line-height: 1;
}

.flash-card__buy {
  width: 100%;
  height: 34px;
  background: #EB4B4B;
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  clip-path: var(--clip-sm);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .25s, transform .25s, background .2s;
  margin-top: auto; /* pushes button to bottom of body */
}

.flash-card:hover .flash-card__buy {
  opacity: 1;
  transform: translateY(0);
}

.flash-card__buy:hover { background: #f56565; }

@media (hover: none) {
  .flash-card__buy { opacity: 1; transform: none; }
}


/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .disc-grid         { grid-template-columns: repeat(3, 1fr); }
  .flash-deals__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .featured-deal__right { width: 280px; }
  .disc-grid            { grid-template-columns: repeat(3, 1fr); }
  .disc-hero__stats     { display: none; }
}

@media (max-width: 768px) {
  .disc-hero__inner { flex-direction: column; align-items: flex-start; gap: 12px; }

  .featured-deal__inner {
    flex-direction: column;
    gap: 32px;
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .featured-deal__right {
    width: 100%;
    max-width: 280px;
    align-self: center;
    order: -1;
  }

  .featured-deal__img { max-width: 220px; }
  .featured-deal__stock { align-self: center; }

  .featured-deal__name { font-size: clamp(40px, 12vw, 64px); }
  .featured-deal__new  { font-size: clamp(48px, 13vw, 72px); }

  .featured-deal__cta { width: 100%; }
  .featured-deal__cta .btn--green { flex: 1; justify-content: center; }
  .featured-deal__wish { flex: 1; justify-content: center; }

  .disc-controls__inner { gap: 10px; }
  .disc-controls__count { display: none; }

  .disc-grid         { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .flash-deals__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .flash-deals__countdown { display: none; }

  .disc-sort { order: 1; width: 100%; }
  .disc-sort__select { min-width: unset; width: 100%; }
}

@media (max-width: 480px) {
  .disc-grid         { gap: 8px; }
  .flash-deals__grid { gap: 8px; }
  .disc-chip         { padding: 0 12px; font-size: 12px; }

  .featured-deal__cta { gap: 8px; }
}


/* ── PRODUCT CARD — hover panel (discount grid) ──────────── */
.product-card__hover-panel {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 12px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,.85) 30%);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .22s ease, transform .22s ease;
  pointer-events: none;
  z-index: 6;
}

.product-card:hover .product-card__hover-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.product-card__micro {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255,255,255,.42);
}

.product-card__micro svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  color: var(--c-green);
}

.product-card__micro--urgent,
.product-card__micro--urgent svg { color: #f59e0b; }

.product-card__buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 36px;
  background: var(--c-green);
  color: #111;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  clip-path: var(--clip-sm);
  letter-spacing: .04em;
  transition: background .2s;
}

.product-card__buy-btn:hover { background: var(--c-green-light); }

