/* ── YITH WooCommerce Wishlist page ─────────────────────────────────────────── */

.wishlist-title {
  font-family: var(--font-outfit);
  font-size: 22px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--black);
  margin-bottom: 24px;
}

table.wishlist_table {
  font-family: var(--font-outfit);
  font-size: 14px;
  color: var(--black);
  border-collapse: collapse;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 60px !important;
}
.yith_wcwl_wishlist_footer {
  display: none !important;
}
table.wishlist_table thead th {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
  background: #f8f6f3;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  text-align: left;
}

table.wishlist_table tbody td {
  padding: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  vertical-align: middle;
}

table.wishlist_table tbody tr:last-child td {
  border-bottom: none;
}

table.wishlist_table .product-thumbnail {
  width: 80px;
}

table.wishlist_table .product-thumbnail a {
  display: block;
}

table.wishlist_table .product-thumbnail img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  display: block;
}

table.wishlist_table .product-name a {
  color: var(--black);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: opacity 200ms ease;
}

table.wishlist_table .product-name a:hover {
  opacity: 0.55;
}

table.wishlist_table .product-price {
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
}

table.wishlist_table .product-price .woocommerce-Price-amount {
  color: var(--black);
  font-size: 14px;
}

table.wishlist_table .wishlist-in-stock {
  color: #22c55e;
  font-size: 13px;
  font-weight: 400;
}

table.wishlist_table .wishlist-out-of-stock {
  color: #e53e3e;
  font-size: 13px;
  font-weight: 400;
}

table.wishlist_table .product-add-to-cart a {
  display: inline-block;
  padding: 10px 20px;
  background: var(--black);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-outfit);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 200ms ease;
}

table.wishlist_table .product-add-to-cart a:hover {
  opacity: 0.8;
}

table.wishlist_table .product-remove {
  width: 40px;
  text-align: center;
}

table.wishlist_table .product-remove .remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.3);
  text-decoration: none;
  border-radius: 50%;
  transition:
    color 200ms ease,
    background 200ms ease;
}

table.wishlist_table .product-remove .remove:hover {
  color: var(--black);
  background: rgba(0, 0, 0, 0.05);
}

/* ── Mobile list layout (YITH applies class "mobile" on small screens) ──────── */

ul.wishlist_table.mobile {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

ul.wishlist_table.mobile > li {
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

ul.wishlist_table.mobile .item-wrapper {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

ul.wishlist_table.mobile .product-thumbnail {
  flex-shrink: 0;
}

ul.wishlist_table.mobile .product-thumbnail img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  display: block;
}

ul.wishlist_table.mobile .item-details {
  flex: 1;
  min-width: 0;
}

ul.wishlist_table.mobile .product-name {
  margin-bottom: 8px;
}

ul.wishlist_table.mobile .product-name h3 {
  margin: 0;
}

ul.wishlist_table.mobile .product-name a {
  color: var(--black);
  text-decoration: none;
  font-family: var(--font-outfit);
  font-size: 15px;
  font-weight: 400;
  transition: opacity 200ms ease;
}

ul.wishlist_table.mobile .product-name a:hover {
  opacity: 0.55;
}

/* Price + stock label/value tables */
ul.wishlist_table.mobile table.item-details-table,
ul.wishlist_table.mobile table.additional-info {
  border: none;
  width: auto;
  margin-bottom: 4px;
}

ul.wishlist_table.mobile table.item-details-table tr,
ul.wishlist_table.mobile table.additional-info tr {
  border: none;
}

ul.wishlist_table.mobile table.item-details-table td,
ul.wishlist_table.mobile table.additional-info td {
  padding: 2px 0;
  border: none;
  font-family: var(--font-outfit);
  font-size: 13px;
  vertical-align: middle;
}

ul.wishlist_table.mobile table.item-details-table td.label,
ul.wishlist_table.mobile table.additional-info td.label {
  color: rgba(0, 0, 0, 0.5);
  padding-right: 8px;
  white-space: nowrap;
}

ul.wishlist_table.mobile table.item-details-table td.value,
ul.wishlist_table.mobile table.additional-info td.value {
  color: var(--black);
}

ul.wishlist_table.mobile .wishlist-in-stock {
  color: #22c55e;
  font-size: 13px;
}

ul.wishlist_table.mobile .wishlist-out-of-stock {
  color: #e53e3e;
  font-size: 13px;
}

ul.wishlist_table.mobile .additional-info-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

ul.wishlist_table.mobile .product-add-to-cart {
  flex: 1;
}

ul.wishlist_table.mobile .product-add-to-cart a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 20px;
  background: var(--black);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-outfit);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 200ms ease;
}

ul.wishlist_table.mobile .product-add-to-cart a:hover {
  opacity: 0.8;
}

ul.wishlist_table.mobile .product-remove {
  flex-shrink: 0;
}

ul.wishlist_table.mobile .product-remove .remove_from_wishlist {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.3);
  text-decoration: none;
  border-radius: 50%;
  transition:
    color 200ms ease,
    background 200ms ease;
}

ul.wishlist_table.mobile .product-remove .remove_from_wishlist:hover {
  color: var(--black);
  background: rgba(0, 0, 0, 0.05);
}

ul.wishlist_table.mobile .screen-reader-text {
  display: none;
}

/* ── Responsive tweaks ─────────────────────────────────────────────────────── */

@media (max-width: 767px) {
  .wishlist-title {
    font-size: 18px;
  }

  table.wishlist_table thead {
    display: none;
  }
}

.wishlist-title-container {
  padding: 60px 15px 0px 15px;
}
.wishlist-title-container,
.wishlist-title-container * {
  text-align: center;
  font-size: 32px;
  font-family: var(--font-outfit);
  font-weight: 400;
  color: #141414;
}

a.btn.button.show-title-form {
  display: none;
}
