/* Light UI polish (safe, minimal) */
:root {
  --henial-bg: #faf7fb;
  --henial-card: #ffffff;
  --henial-text: #1d1d1f;
  --henial-muted: #6b7280;
  --henial-accent: #7c3aed; /* termék-színhez igazíthatod */
  --henial-radius: 14px;
  --henial-shadow: 0 10px 25px rgba(0,0,0,.08);
}

body {
  background: var(--henial-bg);
}

/* Product cards: levegő + kicsi polish */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  background: var(--henial-card);
  border-radius: var(--henial-radius);
  box-shadow: var(--henial-shadow);
  padding: 12px;
  overflow: hidden;
  transition: transform .15s ease;
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
  transform: translateY(-2px);
}

.woocommerce ul.products li.product a img {
  border-radius: 12px;
}

/* Buttons */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  border-radius: 999px;
}

/* Sticky add-to-cart */
.henial-sticky-cart {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 12px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0,0,0,.06);
  z-index: 9999;
  transform: translateY(110%);
  transition: transform .18s ease;
}

.henial-sticky-cart.is-visible {
  transform: translateY(0);
}

.henial-sticky-cart__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.henial-sticky-cart__title {
  font-size: 14px;
  color: var(--henial-text);
  font-weight: 600;
  line-height: 1.2;
}

.henial-sticky-cart__price {
  font-size: 13px;
  color: var(--henial-muted);
}

.henial-sticky-cart__btn {
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  background: var(--henial-accent);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

@media (min-width: 901px) {
  /* Sticky inkább mobilra */
  .henial-sticky-cart { display: none; }
}
