.elementor-88 .elementor-element.elementor-element-2e87e75e{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:20px;--padding-bottom:20px;--padding-left:16px;--padding-right:16px;}/* Start custom CSS for container, class: .elementor-element-2e87e75e */:root {
  --heading: #FD5702;
  --heading-alt: #EE780B;
  --card-border: #707070;
  --card-shadow: #00000038;
  --text-dark: #1A1A1A;
  --text-muted: #707070;
  --in-stock-green: #29BF59;
}
.wishlist_table tr th {
    background: linear-gradient(92deg, var(--heading) 0%, var(--heading-alt) 100%) !important;
    padding: 16px 0 !important;
    border: 0 !important;
}
.wishlist_table,
.wishlist_table * {
  font-family: 'Archivo', sans-serif;
}

.woocommerce h1,
.wishlist-title,
h1.entry-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 500;
  color: var(--text-dark);
}

.wishlist_table {
  border-collapse: separate;
  border-spacing: 0 12px;
  width: 100%;
  background: transparent;
  border: none;
}

.wishlist_table thead {
  border-radius: 6px;
}

.wishlist_table thead th {
  padding: 14px 16px;
  border: none;
}

.wishlist_table thead th .nobr {
  font: normal normal normal 11px/23px Archivo;
  letter-spacing: 0px;
  color: #FFFFFF;
  text-transform: uppercase;
  opacity: 1;
}

/* Round the header's outer corners */
.wishlist_table thead th:first-child { border-radius: 6px 0 0 6px; }
.wishlist_table thead th:last-child  { border-radius: 0 6px 6px 0; }

/* ---------- Product rows → card look ---------- */
.wishlist-items-wrapper tr {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 2px 3px 6px var(--card-shadow);
  border: none;
  border-radius: 5px;
  opacity: 1;
}

.wishlist-items-wrapper tr td {
  border: none;
  padding: 14px 16px;
  vertical-align: middle;
}

/* Rounded corners on the first/last cell of each row to match the card */
.wishlist-items-wrapper tr td:first-child { border-radius: 5px 0 0 5px; }
.wishlist-items-wrapper tr td:last-child  { border-radius: 0 5px 5px 0; }

/* Remove (×) icon */
.wishlist_table .remove_from_wishlist {
  color: var(--heading);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s ease;
}
.wishlist_table .remove_from_wishlist:hover { opacity: 0.7; }

/* Thumbnail */
.wishlist_table .product-thumbnail img {
  border-radius: 5px;
  border: 0.2px solid #EDEDED;
  width: 64px;
  height: 64px;
  object-fit: cover;
}

/* Product name */
.wishlist_table .product-name a {
  text-align: left;
  font: normal normal 600 19px/20px Archivo;
  letter-spacing: 0px;
  color: #000000;
  opacity: 1;
  text-decoration: none;
}
.wishlist_table .product-name a:hover { color: var(--heading); }

/* Price */
.wishlist_table .product-price del {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 13px;
  opacity: 0.8;
  margin-right: 6px;
}
.wishlist_table .product-price ins {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}

/* Stock status */
.wishlist_table .wishlist-in-stock {
  text-align: left;
  font: normal normal 500 13px/44px Archivo;
  letter-spacing: 0px;
  color: #29BF59;
  opacity: 1;
}
.wishlist_table .wishlist-in-stock::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--in-stock-green);
  margin-right: 6px;
}

/* ---------- Add to cart button ---------- */
.wishlist_table .add_to_cart_button {
  background: var(--heading) 0% 0% no-repeat padding-box;
  background: #FD5702 0% 0% no-repeat padding-box;
  border-radius: 6px;
  opacity: 1;
  color: #FFFFFF !important;
  font-family: 'Archivo', sans-serif;
  font-weight: 500;
  font-size: 13px;
  padding: 10px 18px;
  border: none;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s ease;
    text-transform: uppercase;
}

.wishlist_table .add_to_cart_button:hover {
  background: var(--heading-alt) 0% 0% no-repeat padding-box !important;
}
.woocommerce table.shop_table td{
    max-width: 600px;
}
.woocommerce table.shop_table {
    border: 0;
    border-radius: 0;
}

/* ---------- Mobile fixes: stop horizontal scroll ---------- */
.wishlist_table,
.wishlist_table * {
  box-sizing: border-box;
}

.wishlist_table {
  table-layout: auto;
  max-width: 100%;
}

.wishlist_table .product-thumbnail img {
  max-width: 100%;
  height: auto;
}

/* ---------- Responsive (card stacking) ---------- */
@media (max-width: 768px) {
  html, body { overflow-x: hidden; }

  .wishlist_table thead { display: none; }

  /* Kill the theme's default responsive row labels
     ("Price:" / "Stock:" grey stripes) - we build our own layout below */
  .wishlist_table td::before {
    display: none !important;
    content: none !important;
  }

  .wishlist_table,
  .wishlist_table tbody,
  .wishlist-items-wrapper tr,
  .wishlist-items-wrapper tr td {
    display: block;
    width: 100%;
  }

  .wishlist-items-wrapper tr {
    position: relative;
    padding: 16px;
    margin-bottom: 16px;
  }

  .wishlist-items-wrapper tr td {
    padding: 0;
    text-align: left !important;
  }

  /* Remove (x) pinned top-right */
  .wishlist_table .product-remove {
    position: absolute;
    top: 14px;
    right: 14px;
    width: auto;
  }

  /* Thumbnail + name sit side by side */
  .wishlist_table .product-thumbnail {
    float: left;
    width: 64px;
    margin-right: 12px;
    margin-bottom: 12px;
  }

  .wishlist_table .product-thumbnail img {
    width: 64px;
    height: 64px;
  }

  .wishlist_table .product-name {
    overflow: hidden;
    padding-top: 4px;
    padding-right: 24px;
  }

  .wishlist_table .product-name a {
    font-size: 16px;
    line-height: 1.3;
  }

  .wishlist_table .product-price,
  .wishlist_table .product-stock-status {
    clear: both;
    margin-top: 10px;
  }

  .wishlist_table .wishlist-in-stock {
    line-height: 1.4;
  }

  .wishlist_table .product-add-to-cart {
    margin-top: 14px;
  }

  .wishlist_table .add_to_cart_button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 18px;
  }
}/* End custom CSS */