.elementor-815 .elementor-element.elementor-element-857fd97{--display:flex;}.elementor-815 .elementor-element.elementor-element-857fd97:not(.elementor-motion-effects-element-type-background), .elementor-815 .elementor-element.elementor-element-857fd97 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-secondary );}.elementor-815 .elementor-element.elementor-element-857fd97.e-con{--align-self:center;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-size:var( --e-global-typography-text-font-size );font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-815 .elementor-element.elementor-element-2da49352{width:var( --container-widget-width, 1330px );max-width:1330px;padding:0px 0px 50px 0px;--container-widget-width:1330px;--container-widget-flex-grow:0;}.elementor-815 .elementor-element.elementor-element-2da49352.elementor-element{--align-self:center;--flex-grow:0;--flex-shrink:0;}@media(max-width:1024px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );}}@media(min-width:768px){.elementor-815 .elementor-element.elementor-element-857fd97{--content-width:1330px;}}@media(max-width:767px){.elementor-815 .elementor-element.elementor-element-857fd97{--padding-top:20px;--padding-bottom:20px;--padding-left:20px;--padding-right:20px;}.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );}.elementor-815 .elementor-element.elementor-element-2da49352{width:var( --container-widget-width, 100% );max-width:100%;--container-widget-width:100%;--container-widget-flex-grow:0;}}/* Start custom CSS for container, class: .elementor-element-857fd97 *//* Wishlist Grid Layout */
.wishlist_table.wishlist_view.responsive.mobile {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

/* Card Styling: white background + smooth shadow */
.wishlist_table li {
  background: #fff; /* white background */
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06); /* subtle shadow */
  transition: box-shadow 0.3s ease-in-out, transform 0.2s ease-in-out;
}
.wishlist_table li:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.12); /* deeper shadow */
  transform: translateY(-2px); /* slight lift */
}

/* Product Image */
.wishlist_table .product-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

/* Product Name */
.wishlist_table .product-name h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 10px 0;
  color: #333;
}

/* Hide stock/status table but keep price */
.wishlist_table .additional-info {
  display: none !important;
}

/* Flex row for Price + Buttons */
.wishlist_table .additional-info-wrapper {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}

/* Price label + value styling (no background) */
.wishlist_table .item-details-table td.label {
  background: none !important;
  display: inline-block !important;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  margin-right: 4px;
}

.wishlist_table .item-details-table td.value,
.wishlist_table .item-details-table td.value .woocommerce-Price-amount {
  background: none !important;
  display: inline-block !important;
  font-size: 15px;
  font-weight: 600;
  color: #111;
  margin-right: auto;
}

/* Add to Cart Button */
.wishlist_table .product-add-to-cart a {
  background: #111;
  color: #fff !important;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 11px;
  text-decoration: none;
  transition: background 0.2s;
}
.wishlist_table .product-add-to-cart a:hover {
  background: #444;
}

/* Trash Icon */
.wishlist_table .product-remove a {
  color: #000;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  margin-bottom: 10px;
  
}

/* Hover effect: white circle + smooth shadow */
.wishlist_table .product-remove a:hover {
  background: #000; /* white background  */
  color: #fff;      /* red icon inside  */
  box-shadow: 0 4px 10px rgba(0,0,0,0.15); /* smooth shadow */
}/* End custom CSS */