/**
 * lms/assets/css/product-card.css — стилі для уніфікованої картки продукту
 * (рендериться через includes/product_card.php).
 */

/* Сітка карток */
.lpc-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* Картка */
.lpc {
  background: #fff;
  border: 1px solid var(--sep, #E5E5EA);
  border-radius: var(--radius-xl, 22px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform .25s, box-shadow .25s;
}
.lpc:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
}

/* Обкладинка */
.lpc-cover {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #F5F5F7, #E8E8EA);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.lpc-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lpc-cover-icon {
  font-size: 48px;
  color: #C7C7CC;
}

/* Книжкова варіація — обкладинка 3:4, зображення «обʼємне» */
.lpc.lpc-book .lpc-cover {
  aspect-ratio: 3 / 4;
  background: #FAFAFA;
  padding: 14px;
}
.lpc.lpc-book .lpc-cover img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

/* Бейдж на обкладинці */
.lpc-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3px;
  z-index: 1;
}

/* Тіло картки */
.lpc-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.lpc-cat {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-label);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 8px;
}
.lpc-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink, #0E0E10);
  margin-bottom: 6px;
  letter-spacing: -.3px;
  line-height: 1.3;
}
.lpc-sub {
  font-size: 13px;
  color: var(--text2, #6E6E73);
  margin-bottom: 14px;
  flex: 1;
}

/* Підвал картки: ціна + CTA */
.lpc-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}
.lpc-price {
  font-weight: 800;
  color: var(--ink, #0E0E10);
  font-size: 16px;
}
.lpc-price.is-free {
  color: var(--accent-label);
}
.lpc-price.is-hidden-price {
  font-size: 13px;
  color: var(--text2, #6E6E73);
  font-weight: 600;
}
.lpc-cta {
  padding: 8px 14px;
  border-radius: 100px;
  background: var(--ink, #0E0E10);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: .15s;
  white-space: nowrap;
}
.lpc:hover .lpc-cta {
  background: var(--accent, #9FE870);
  color: var(--ink, #0E0E10);
}
