/* RTL base */
.pk-rtl { direction: rtl; }

/* Card */
.pk-card {
  position: relative;
  background: #fff;
  border: 1px solid #e9eef3;
  border-radius: 16px;
  padding: 20px 20px 28px;
  box-shadow: 0 10px 24px rgba(15, 52, 96, .06);
}

/* Header */
.pk-card__header { position: relative; padding-inline: 8px; }
.pk-brand { color: #7c8aa5; font-size: 14px; margin-bottom: 4px; }
.pk-title { font-size: 28px; line-height: 1.5; margin: 0 0 8px; font-weight: 800; }
.pk-meta { display: flex; align-items: center; gap: 10px; color: #5487c7; }
.pk-rating__value { margin-inline-end: 6px; font-weight: 700; }
.pk-reviews-link { color: #2b72df; text-decoration: none; font-weight: 600; }

/* Sale badge */
.pk-sale-badge {
  position: absolute; top: -10px; inset-inline-end: -10px;
  background: #ff3b30; color: #fff; padding: 6px 12px;
  border-radius: 0 12px 0 12px; font-weight: 800; font-size: 14px;
}

/* Body grid: buy | summary | gallery (RTL ordering) */
.pk-card__body {
  display: grid;
  grid-template-columns: 1.1fr 2fr 1.2fr;
  gap: 24px;
  margin-top: 16px;
}

/* Gallery */
.pk-gallery .woocommerce-product-gallery { border-radius: 16px; overflow: hidden; background: #eaf3f6; padding: 20px; }

/* Buy box */
.pk-buy {
  background: #f7fbff;
  border: 1px solid #dce9f7;
  border-radius: 16px;
  padding: 16px;
  align-self: start;
}
.variations, .variations th, .variations td { border: 0 !important; background: transparent !important; }
.variations td, .variations th { display: block; padding: 0 0 8px; }
.reset_variations { display: none; }

.pk-attr__radios { list-style: none; margin: 0 0 12px; padding: 0; display: grid; gap: 10px; }
.pk-attr__radios li { display: flex; align-items: center; gap: 10px; }
.pk-radio { accent-color: #2ea3ff; transform: scale(1.1); }

/* Price */
.pk-price { display: flex; align-items: center; gap: 10px; margin: 10px 0 14px; }
.pk-price__percent {
  background: #e7f3ff; color: #0070f3; font-weight: 800; padding: 6px 10px; border-radius: 10px; min-width: 48px; text-align: center;
}
.pk-price__numbers { display: flex; flex-direction: column; gap: 3px; }
.pk-price__current { font-size: 28px; font-weight: 900; }
.pk-price__regular { text-decoration: line-through; color: #9aa6b2; font-size: 14px; }

/* Add to cart button proxy */
.pk-buy__submit {
  width: 100%; height: 56px; border-radius: 12px;
  background: #0ea5e9; border: none; font-weight: 800; font-size: 18px; color: #fff;
}
.pk-buy__submit:hover { filter: brightness(0.95); cursor: pointer; }

/* Points */
.pk-points { margin-top: 10px; color: #8a98a9; font-size: 14px; }

/* Summary */
.pk-summary { align-self: start; }
.pk-desc { color: #51637a; line-height: 2; margin-bottom: 8px; }
.pk-desc--more { display: none; color: #51637a; line-height: 2; }
.pk-more {
  background: transparent; color: #2b72df; border: 0; font-weight: 800; padding: 6px 0; cursor: pointer;
}

/* Benefits row */
.pk-benefits {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  background: #fff; border: 1px solid #e9eef3; border-radius: 16px; padding: 18px; margin-top: 18px;
}
.pk-benefit { display: grid; gap: 4px; text-align: center; padding: 12px; }
.pk-ico { font-size: 22px; }
.pk-benefit__title { font-weight: 800; }
.pk-benefit__text { color: #7a8aa0; font-size: 14px; }

/* Responsive */
@media (max-width: 1024px) {
  .pk-card__body { grid-template-columns: 1fr; }
  .pk-sale-badge { inset-inline-end: 10px; }
}
