/* =========================================================
   GMD Customer
   Wishlist
   ========================================================= */

/* ---------------------------------------------------------
   Wishlist Grid
--------------------------------------------------------- */

.gmd-wishlist-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));

    gap: 24px;

}

/* ---------------------------------------------------------
   Wishlist Card
--------------------------------------------------------- */

.gmd-wishlist-item {

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    min-height: 420px;

    padding: 16px;

    border: 1px solid #e2e2e2;

    border-radius: 12px;

    background: #ffffff;

    text-align: center;

}

/* ---------------------------------------------------------
   Product Image
--------------------------------------------------------- */

.gmd-wishlist-thumb {

    width: 100%;

    height: 220px;

    object-fit: cover;

    border-radius: 8px;

}

/* ---------------------------------------------------------
   Price
--------------------------------------------------------- */

.gmd-wishlist-price {

    margin: 12px 0;

    color: #0074ff;

    font-size: 1.2rem;

    font-weight: 700;

}

/* ---------------------------------------------------------
   Remove Button
--------------------------------------------------------- */

.gmd-remove-btn {

    margin-top: auto;

    padding: 10px 16px;

    border: none;

    border-radius: 6px;

    background: #ff3366;

    color: #ffffff;

    font-size: 1rem;

    cursor: pointer;

    transition: background .2s ease;

}

.gmd-remove-btn:hover {

    background: #cc0044;

}