.elementor-190 .elementor-element.elementor-element-dbaa00d{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-190 .elementor-element.elementor-element-8bda759{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}@media(min-width:768px){.elementor-190 .elementor-element.elementor-element-dbaa00d{--content-width:1200px;}}/* Start custom CSS for html, class: .elementor-element-8bda759 *//* --- WISHLIST PAGE WRAPPER --- */
.akh-app-ui {
    background: #fcfcfd;
    max-width: 800px;
    margin: 0 auto;
    font-family: -apple-system, system-ui, sans-serif;
    min-height: 100vh;
    padding-bottom: 50px;
}

/* --- WISHLIST HEADER --- */
.akh-header {
    background: #fff;
    padding: 30px 20px;
    border-bottom: 1px solid #f1f5f9;
    text-align: center;
}

.akh-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

.akh-header p {
    font-size: 13px;
    color: #94a3b8;
    margin-top: 5px;
}

/* --- WISHLIST GRID --- */
.akh-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 15px;
}

@media(min-width: 768px) {
    .akh-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- PRODUCT CARD --- */
.akh-card {
    background: #fff;
    border-radius: 18px;
    padding: 10px;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* --- HEART ICON (WISHLIST PAGE SPECIFIC) --- */
.akh-wish {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-size: 18px;
    z-index: 5;
    color: #ef4444; /* Force red since it's already in wishlist */
}

/* --- IMAGE & BADGE --- */
.akh-thumb {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 1/1.1;
    position: relative;
    background: #f8fafc;
}

.akh-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.akh-sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #16a34a;
    color: #fff;
    font-size: 10px;
    padding: 4px 9px;
    border-radius: 8px;
    font-weight: 800;
    z-index: 2;
}

/* --- PRODUCT DETAILS --- */
.akh-details {
    padding: 10px 5px 5px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.akh-item-title {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    text-decoration: none !important;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 36px;
    line-height: 1.4;
}

.akh-item-price {
    font-size: 16px;
    font-weight: 800;
    color: #16a34a;
    margin-bottom: 12px;
}

.akh-item-price del {
    color: #94a3b8;
    font-size: 12px;
    margin-right: 5px;
    font-weight: 400;
}

/* --- ADD TO CART BUTTON --- */
.akh-add-btn {
    width: 100%;
    background: #16a34a;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
    margin-top: auto;
}

.akh-add-btn:active {
    transform: scale(0.95);
    background: #15803d;
}

/* --- EMPTY STATE --- */
.akh-empty-wishlist {
    grid-column: 1/-1;
    text-align: center;
    padding: 80px 20px;
}

.akh-empty-wishlist a {
    display: inline-block;
    margin-top: 15px;
    background: #16a34a;
    color: #fff;
    padding: 12px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
}

/* --- SKELETON LOADING --- */
.akh-skeleton {
    background: #f1f5f9;
    border-radius: 18px;
    height: 260px;
    animation: akh-pulse 1.5s infinite ease-in-out;
}

@keyframes akh-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}/* End custom CSS */