.hoot-wishlist-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    background: none;
    color: var(--hoot-muted-fg);
    cursor: pointer;
    transition: color var(--hoot-transition), opacity var(--hoot-transition), transform var(--hoot-transition), background var(--hoot-transition), border-color var(--hoot-transition);
}

.hoot-wishlist-btn:disabled {
    opacity: 0.6;
    cursor: wait;
}

.hoot-wishlist-btn__icon {
    position: relative;
    display: inline-flex;
    width: 18px;
    height: 18px;
}

.hoot-wishlist-btn__icon svg {
    position: absolute;
    inset: 0;
    transition: opacity var(--hoot-transition), transform var(--hoot-transition);
}

.hoot-wishlist-btn__icon-filled {
    opacity: 0;
    transform: scale(0.85);
}

.hoot-wishlist-btn.is-active {
    color: var(--hoot-accent);
}

.hoot-wishlist-btn.is-active .hoot-wishlist-btn__icon-outline {
    opacity: 0;
    transform: scale(0.85);
}

.hoot-wishlist-btn.is-active .hoot-wishlist-btn__icon-filled {
    opacity: 1;
    transform: scale(1);
}

.hoot-wishlist-btn--card {
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--hoot-fg);
    box-shadow: var(--hoot-shadow);
}

.hoot-wishlist-btn--card .hoot-wishlist-btn__label {
    display: none;
}

.hoot-wishlist-btn--card:hover,
.hoot-wishlist-btn--card.is-active {
    background: #fff;
}

.hoot-wishlist-btn--pdp {
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    color: var(--hoot-muted-fg);
    line-height: 1;
}

.hoot-wishlist-btn--pdp:hover,
.hoot-wishlist-btn--pdp.is-active {
    color: var(--hoot-primary);
}

.pdp-wishlist-wrap .hoot-wishlist-btn--pdp {
    min-height: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.pdp-wishlist-wrap .hoot-wishlist-btn--pdp:hover,
.pdp-wishlist-wrap .hoot-wishlist-btn--pdp.is-active {
    border: 0;
    background: transparent;
}

.pdp-wishlist-wrap .hoot-wishlist-btn__icon {
    width: 16px;
    height: 16px;
}

.pdp-wishlist-wrap .hoot-wishlist-btn__label {
    font-size: 14px;
    font-weight: 400;
}

.hoot-wishlist-btn--cart {
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid var(--hoot-border);
    border-radius: 12px;
    background: rgba(250, 248, 245, 0.72);
    color: var(--hoot-fg);
    font-size: 13px;
    font-weight: 500;
}

.hoot-wishlist-btn--cart:hover,
.hoot-wishlist-btn--cart.is-active {
    border-color: var(--hoot-primary);
    color: var(--hoot-primary);
    background: rgba(107, 91, 78, 0.08);
}

.pdp-wishlist-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
}

.product-card-price .price,
.hoot-wishlist-item-price .price {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.product-card-price .amount,
.hoot-wishlist-item-price .amount {
    font-family: var(--hoot-font-price);
    font-weight: 400;
}

.product-card-price ins,
.hoot-wishlist-item-price ins {
    text-decoration: none;
}

.product-card-price del,
.hoot-wishlist-item-price del {
    opacity: 0.68;
    text-decoration: line-through;
    text-decoration-thickness: 1px;
    text-underline-offset: 0;
}

.product-card-price ins .amount,
.hoot-wishlist-item-price ins .amount {
    font-size: 15px;
}

.pdp-price .price {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.pdp-price .amount {
    font-family: var(--hoot-font-price);
    font-weight: 400;
}

.pdp-price ins {
    text-decoration: none;
}

.pdp-price ins .amount,
.pdp-price > .amount {
    font-size: 28px;
    font-weight: 400;
}

.pdp-price del {
    opacity: 0.68;
    text-decoration: line-through;
    text-decoration-thickness: 1px;
}

.pdp-price del .amount {
    font-size: 18px;
    font-weight: 400;
}

.hoot-wishlist-page-main {
    padding: 28px 0 64px;
}

.hoot-wishlist-page-main .hoot-page-title {
    text-align: left;
}

.hoot-wishlist-page-shell {
    padding-top: 12px;
}

.js-hoot-wishlist-container.is-loading {
    opacity: 0.55;
    transition: opacity var(--hoot-transition);
}

.hoot-wishlist-list {
    display: grid;
    gap: 18px;
}

.hoot-wishlist-item {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 18px;
    padding: 18px;
    border: 1px solid var(--hoot-border);
    border-radius: 18px;
    background: #fff;
}

.hoot-wishlist-item-media {
    display: block;
    border-radius: 14px;
    overflow: hidden;
    background: var(--hoot-card);
}

.hoot-wishlist-item-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hoot-wishlist-item-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.hoot-wishlist-item-title {
    margin: 0;
    font-family: var(--hoot-font-heading);
    font-size: 1.45rem;
    line-height: 1.12;
}

.hoot-wishlist-item-title a {
    color: var(--hoot-fg);
    text-decoration: none;
}

.hoot-wishlist-item-title a:hover {
    color: var(--hoot-primary);
}

.hoot-wishlist-item-price {
    color: var(--hoot-fg);
}

.hoot-wishlist-item-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.hoot-wishlist-add-to-cart,
.hoot-wishlist-view-product,
.hoot-wishlist-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}

.hoot-wishlist-remove {
    border: 1px solid rgba(192, 115, 80, 0.24);
    background: rgba(192, 115, 80, 0.06);
    color: var(--hoot-accent);
}

.hoot-wishlist-remove:hover {
    background: rgba(192, 115, 80, 0.12);
}

@media (max-width: 767px) {
    .hoot-wishlist-item {
        grid-template-columns: 1fr;
    }

    .hoot-wishlist-item-media {
        aspect-ratio: 1 / 1;
    }
}