/* ---- Hartje op productfoto ---- */
.adw-heart {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 10;
    background: none;
    border: none;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: transform 0.15s;
    box-shadow: none;
}

.adw-heart:hover {
    background: none;
    transform: scale(1.1);
}

.adw-heart svg {
    fill: none;
    stroke: #999;
    stroke-width: 1.5px;
    transition: fill 0.2s, stroke 0.2s;
}

.adw-heart.active svg,
.adw-heart:hover svg {
    fill: #c8a96e;
    stroke: #c8a96e;
}

.adw-img-wrap {
    position: relative;
    display: block;
}

.adw-img-wrap img {
    display: block;
    width: 100%;
}

.woocommerce ul.products li.product {
    position: relative;
}

/* ---- Header link ---- */
.adw-header-link,
.adw-header-link:visited {
    display: inline-flex;
    align-items: center;
    color: #c8a96e !important;
    text-decoration: none;
    font-size: 14px;
}

.adw-header-link svg {
    fill: #c8a96e;
    margin-right: 4px;
}

.adw-header-link:hover {
    opacity: 0.8;
}

/* ---- Verlanglijst pagina ---- */
.adw-wishlist-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.adw-wishlist-table th {
    text-align: left;
    padding: 10px 12px;
    border-bottom: 2px solid #eee;
    font-weight: 600;
    color: #333;
}

.adw-wishlist-table td {
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.adw-wishlist-table img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.adw-wishlist-table a {
    color: #333;
    text-decoration: none;
}

.adw-wishlist-table a:hover {
    color: #c8a96e;
}

.adw-in-stock { color: #2e7d32; font-size: 13px; }
.adw-out-stock { color: #c62828; font-size: 13px; }

.adw-remove {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #aaa;
    padding: 4px 8px;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
}

.adw-remove:hover {
    color: #c62828;
    background: #fef2f2;
}

.adw-empty {
    color: #777;
    font-size: 15px;
    margin: 30px 0;
}

@keyframes adw-pulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.adw-heart.pulse svg {
    animation: adw-pulse 0.3s ease;
}

/* ---- Tabel header kleur ---- */
.adw-wishlist-table th {
    background-color: #c8a96e;
    color: #fff;
    border-bottom: none;
}
