.elementor-25072 .elementor-element.elementor-element-8e0df56{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-heading .elementor-heading-title{color:var( --e-global-color-primary );}.elementor-25072 .elementor-element.elementor-element-934c16d .elementor-heading-title{color:var( --e-global-color-accent );}/* Start custom CSS for shortcode, class: .elementor-element-cdd165a *//* ============================================
   CUSTOM WISHLIST PAGE - Grid Layout
   ============================================ */

/* Grid Container */
.custom-wishlist-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    margin: 40px 0 !important;
    list-style: none !important;
    padding: 0 !important;
}

/* Individual Wishlist Item */
.custom-wishlist-item {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    background: transparent !important;
}

/* Wishlist Button (top right on image) */
.custom-wishlist-item .custom-wishlist-wrapper {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    z-index: 10 !important;
    width: 45px !important;
    height: 45px !important;
    background: #3d3d3d !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
}

.custom-wishlist-item .custom-wishlist-wrapper:hover {
    background: #f44336 !important;
    transform: scale(1.1) !important;
}

.custom-wishlist-item .custom-wishlist-wrapper.added {
    background: #A20896 !important;
}

.custom-wishlist-item .custom-wishlist-wrapper.added:hover {
    background: #f44336 !important;
}

.custom-wishlist-item .custom-wishlist-btn {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
}

.custom-wishlist-item .custom-wishlist-btn i {
    color: white !important;
    font-size: 18px !important;
}

/* Wishlist Image */
.wishlist-image {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 12px !important;
    margin-bottom: 15px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08) !important;
    transition: box-shadow 0.3s ease !important;
}

.wishlist-image:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.15) !important;
}

.wishlist-image a {
    display: block !important;
    line-height: 0 !important;
}

.wishlist-image img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    border-radius: 12px !important;
}

/* Wishlist Product Title */
.wishlist-title {
    font-family: "Roboto Slab", Sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.3 !important;
    text-align: left !important;
    margin: 0 0 10px 0 !important;
    padding: 0 !important;
}

.wishlist-title a {
    color: #2d2d2d !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.wishlist-title a:hover {
    color: #8B5BA7 !important;
}

/* Wishlist Price */
.wishlist-price {
    text-align: left !important;
    margin: 0 0 15px 0 !important;
    padding: 0 !important;
}

.wishlist-price .price {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #8B5BA7 !important;
    display: block !important;
}

.wishlist-price .price del {
    opacity: 0.5 !important;
    font-size: 14px !important;
    margin-right: 5px !important;
}

/* Add to Cart Button */
.custom-wishlist-item .add_to_cart_button {
    background: #8B5BA7 !important;
    color: white !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 12px 20px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    font-size: 13px !important;
    text-align: center !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    letter-spacing: 0.5px !important;
    display: block !important;
    width: 100% !important;
}

.custom-wishlist-item .add_to_cart_button:hover {
    background: #734a8f !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(139, 91, 167, 0.3) !important;
}

/* Empty Wishlist Message */
.custom-wishlist-grid + div {
    text-align: center !important;
    padding: 60px 20px !important;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .custom-wishlist-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

@media (max-width: 768px) {
    .wishlist-title {
        font-size: 15px !important;
    }
    
    .wishlist-price .price {
        font-size: 15px !important;
    }
}

@media (max-width: 480px) {
    .custom-wishlist-grid {
        grid-template-columns: 1fr !important;
    }
}/* End custom CSS */