.esther-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--color-surface);
}

.esther-product-card__wishlist {
    position: absolute;
    top: var(--s-3);
    left: var(--s-3);
    z-index: 2;
}

.esther-product-card__media {
    position: relative;
}

.esther-product-card__link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.esther-product-card__thumb {
    aspect-ratio: 1;
    background: var(--color-surface);
    overflow: hidden;
    position: relative;
}

.esther-product-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
}

.esther-product-card:hover .esther-product-card__thumb img {
    transform: scale(1.02);
}

.esther-product-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: var(--s-3);
    padding-block: var(--s-4) var(--s-5);
    padding-inline: var(--s-3);
}

.esther-product-card__title {
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    color: var(--color-text);
    text-decoration: none;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.esther-product-card__price {
    font-size: var(--fs-small);
    color: var(--color-text);
    font-weight: var(--fw-medium);
    white-space: nowrap;
}

.esther-product-card__price .woocommerce-Price-amount {
    font-weight: inherit;
}
