/* PAGE BG */

.wishlist-black-wrap {
    background: #000;
    padding: 15px 0px;
}

/* TITLE */

.wishlist-title {
    color: #fff;
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* GRID */

.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* CARD */

.wishlist-card {
    overflow: hidden;
}

.wishlist-card .wishlist-main {
   background: #fff;
   padding: 40px 20px;
   position: relative;
   text-align: center;
   border-radius: 22px;
}

/* REMOVE (X) */

.wishlist-remove {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 34px;
    height: 34px;
    background: #f2f2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 16px;
    text-decoration: none;
}

/* RATING */

.wishlist-rating {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #fff;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    font-family: "Work Sans", sans-serif;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    color: #000;
}

/* IMAGE */

.wishlist-img {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.wishlist-img img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

/* CONTENT */

.wishlist-footer { padding: 10px 15px 15px;}
.wishlist-footer .wishlist-content { 
    padding: 6px 0 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.wishlist-footer .wishlist-content h3 {
    font-size: 13px;
    font-weight: 400 !important;
    margin: 0 0 3px;
    line-height: 1.2em;
    font-weight: normal;
    color: #fff;
    font-family: 'poppins', sans-serif;
}
.price span.amount {
   top: 0;
   margin-left: 0;
}
.price span.amount bdi {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    font-family: "Work Sans", sans-serif;
    display: flex;
    align-items: center;
    gap: 2px;
}
.price span.amount bdi span {
   top: 0;
   margin-left: 0;
   color: #fff;
}
.wishlist-footer .wishlist-content .price {
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 0px;
    color: #fff;
    font-family: 'work sans', sans-serif;
}

.wishlist-footer .wishlist-content button.wish-btn {
    padding: 5px;
    background: #B8860B;
    border: none;
    border-radius:50px;
    width: 40px;
    height: 40px;
}
.wishlist-footer .wishlist-content button.wish-btn:hover {
    background: #B8860B;
    border: none;
}

/* ADD TO CART */

.wishlist-footer .wishlist-cart a.button {
    background: #fff;
    color: #000;
    border-radius: 40px;
    padding: 12px 24px;
    width: 100%;
    display: inline-block;
    font-size: 15px;
    text-align: center;
    font-family: 'poppins', sans-serif;
    font-weight: bold;
    line-height: 1.2em;
}
.wishlist-footer .wishlist-cart a.button:hover {
    background: linear-gradient(145deg, #D4AF37 0%, #B8860B 100%); color: #000000;
}


/* Responsive */

@media(max-width: 1200px) { 
    .ht-account-wrapper { grid-template-columns: 2.5fr 6fr; }
    .wishlist-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991px) {
    .ht-account-sidebar { width: 297px; }
}
@media (max-width:767px) {
    .wishlist-grid { grid-template-columns: 1fr; margin-bottom: 30px; }
    .ht-account-sidebar { width: 100% !important; }
}