/* =========================================================
   Wishlist — sekcja logowania
   ========================================================= */

.bf-wishlist-login {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bf-wishlist-login p {
  margin: 0 0 16px;
  font-size: 16px;
  text-align: center;
}

/* Przycisk „Zaloguj się” */
.bf-login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  width: min(280px, 100%);
  min-height: 56px;
  padding: 0 24px;
  box-sizing: border-box;

  background: transparent;
  color: #000;

  border: 3px solid #000;
  border-radius: 999px;

  font-size: 20px;
  font-weight: 600;
  line-height: 1.1;

  text-align: center;
  text-decoration: none;

  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.bf-login-btn::after {
  content: "»";
  font-size: 20px;
  line-height: 1;
}

.bf-login-btn span {
  color: inherit;
}

.bf-login-btn:hover,
.bf-login-btn:focus-visible {
  background: #d9a29b;
  color: #111;
  border-color: #d9a29b;
}

.bf-login-btn:focus-visible {
  outline: 2px solid #111;
  outline-offset: 3px;
}
/* =========================================================
   Wishlist — cena i dostępność produktu
   ========================================================= */

/* Cena */
.wishlist_table :is(
  .product-price,
  .product-price .woocommerce-Price-amount,
  .item-details-table .amount
) {
  color: #111;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

/* Status: dostępny / niedostępny */
.wishlist_table :is(
  .product-stock-status,
  .product-stock-status span,
  .stock,
  .in-stock,
  .out-of-stock,
  .wishlist-in-stock,
  .wishlist-out-of-stock
) {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

/* Większy status na telefonie */
@media (max-width: 767px) {
  .wishlist_table :is(
    .product-stock-status,
    .product-stock-status span,
    .stock,
    .in-stock,
    .out-of-stock,
    .wishlist-in-stock,
    .wishlist-out-of-stock
  ) {
    font-size: 24px;
    line-height: 1.25;
  }
}
/* YITH Wishlist — poprawna wielkość statusu na RWD */
@media (max-width: 767px) {
  body #yith-wcwl-form
  .wishlist_table.mobile
  span.wishlist-in-stock,

  body #yith-wcwl-form
  .wishlist_table.mobile
  span.wishlist-out-of-stock,

  body #yith-wcwl-form
  .wishlist_table
  span.wishlist-in-stock,

  body #yith-wcwl-form
  .wishlist_table
  span.wishlist-out-of-stock {
    font-size: 18px !important;
    line-height: 1.25 !important;
    font-weight: 600 !important;
  }
}