.elementor-304 .elementor-element.elementor-element-25cbe86b{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for shortcode, class: .elementor-element-760781c6 *//* Style the wishlist container */
.whislist {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Remove table formatting */
.whislist table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0px;
}

/* Hide default table borders and backgrounds */
.whislist table th,
.whislist table td {
    border: none !important;
    background: transparent !important;
    padding: 15px 0 !important;
}

/* Make each wishlist item a clean card */
.whislist table tr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}

/* Hide table headers */
.whislist table th {
    display: none;
}

/* Product image styling */
.whislist td.product-thumbnail img {
    width: 80px;
    height: auto;
    border-radius: 10px;
}

/* Product name styling */
.whislist td.product-name a {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}

.whislist td.product-name a:hover {
    color: #007aff;
}

/* Price styling */
.whislist td.product-price {
    font-size: 16px;
    color: #555;
    font-weight: 600;
}

/* Stock status */
.whislist td.stock-status {
    font-size: 14px;
    color: #27ae60;
    font-weight: bold;
}

/* Remove button */
.whislist td.product-remove a {
    color: red;
    font-size: 18px;
    transition: 0.3s;
}

.whislist td.product-remove a:hover {
    color: darkred;
}

/* Add to cart button */
.whislist td.product-add-to-cart a {
    background: #007aff;
    color: white;
    padding: 10px 18px;
    border-radius: 20px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.whislist td.product-add-to-cart a:hover {
    background: #005bb5;
}/* End custom CSS */