/* ===== WISHLIST BUTTON STYLING ON PRODUCT PAGE ===== */
.sh_wl_wrap {
    margin-bottom: 4px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.sh_wl_wrap .sh_wl_btn {
    font-family: "Trebuchet MS", Trebuchet, Arial, sans-serif !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #333 !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: color 0.2s ease;
    box-shadow: none !important;
    text-transform: capitalize !important;
    line-height: 1.4 !important;
}

.sh_wl_wrap .sh_wl_btn:hover {
    color: #e91e63 !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

.sh_wl_wrap .sh_wl_btn:before {
    content: "♡";
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    transition: all 0.2s ease;
}

.sh_wl_wrap .sh_wl_btn.is_active:before {
    content: "♥";
    color: #e91e63;
}

.sh_wl_wrap .sh_wl_btn:disabled {
    opacity: 0.6;
    cursor: not-allowed !important;
}

.sh_wl_link {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #e91e63 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
    box-shadow: none !important;
    text-transform: none !important;
    line-height: 1.4 !important;
}

.sh_wl_link:hover {
    color: #c2185b !important;
    background: none !important;
    border: none !important;
}

.sh_wl_link:before {
    content: "";
    display: none;
}


/* ===== WISHLIST PAGE STYLING ===== */
#sh_wl_page {
    font-family: "Trebuchet MS", Trebuchet, Arial, sans-serif !important;
    max-width: 1200px;
    margin: 0 auto;
}


#sh_wl_page .sh_wl_item .button {
    font-family: "Trebuchet MS", Trebuchet, Arial, sans-serif !important;
}


#sh_wl_page > p {
    text-align: center;
    font-size: 16px;
    color: #666;
    padding: 40px 20px;
}

/* Pager */
.sh_wl_pager {
    display: flex !important;
    gap: 15px !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 20px 0 !important;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.sh_wl_pager span {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.sh_wl_pager .button {
    padding: 8px 20px !important;
    font-size: 14px !important;
    border-radius: 6px !important;
    transition: all 0.2s ease !important;
}

.sh_wl_pager .button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Wishlist Items List */
.sh_wl_list {
    display: block;
    margin: 30px 0;
}

.sh_wl_item {
    display: flex !important;
    gap: 20px !important;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    align-items: flex-start !important;
}

/* Image */
.sh_wl_img {
    width: 160px !important;
    flex: 0 0 160px !important;
    height: 160px;
    overflow: hidden;
    border-radius: 6px;
    background: transparent !important;
    box-shadow: none !important;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: flex-start;
    text-decoration: none !important;
    padding: 0 !important;
}

.sh_wl_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: transparent !important;
    box-shadow: none !important;
}

/* Meta */
.sh_wl_meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-self: flex-start;
    padding-top: 0 !important;
}

.sh_wl_meta > a:first-child {
    text-decoration: none;
    color: #333;
    transition: color 0.2s ease;
    display: block;
}

.sh_wl_meta > a:first-child:hover {
    color: #e91e63;
}

.sh_wl_meta strong {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    display: block;
    margin: 0 0 4px 0;
    text-transform: capitalize;
}

/* Buttons row */
.sh_wl_meta > div {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Remove button on wishlist page
   Nechame Woo button styl ze sablony (trida button)
   Jen pridame vetsi X */
#sh_wl_page .sh_wl_item .sh_wl_btn {
    font-family: "Trebuchet MS", Trebuchet, Arial, sans-serif !important;
}

#sh_wl_page .sh_wl_item .sh_wl_btn:before {
    content: "×";
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    margin-right: 6px;
    color: currentColor;
}

/* Responsive */
@media (max-width: 768px) {
    .sh_wl_item {
        flex-direction: column;
        gap: 15px !important;
    }

    .sh_wl_img {
        width: 100% !important;
        flex: 0 0 auto !important;
        max-width: 240px;
        height: 240px;
        margin: 0 auto;
    }

    .sh_wl_meta {
        width: 100%;
        text-align: center;
    }

    .sh_wl_meta > div {
        justify-content: center;
    }

    .sh_wl_pager {
        flex-wrap: wrap;
    }
}

/* Empty state */
#sh_wl_page > p:only-child {
    font-size: 18px;
    color: #999;
}
