.wishlist-page {
    background: #f7f8fb;
    color: #111827;
}

.wishlist-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0 48px;
}

.wishlist-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.wishlist-head span {
    display: block;
    color: white;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.wishlist-head h1 {
    margin: 4px 0 0;
    color: #415014;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.1;
}

.wishlist-continue,
.wishlist-empty a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    border-radius: 8px;
    background: #415014;
    color: #ffffff;
    padding: 0 14px;
    font-weight: 800;
    text-decoration: none;
}

.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.wishlist-card,
.wishlist-empty {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
}

.wishlist-card {
    overflow: hidden;
}

.wishlist-card-media {
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f3f4f6;
}

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

.wishlist-card-body {
    display: grid;
    gap: 9px;
    padding: 15px;
}

.wishlist-card-body > span {
    color: #667085;
    font-size: 13px;
    font-weight: 700;
}

.wishlist-card-body > a {
    color: #101828;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
    text-decoration: none;
}

.wishlist-card-body > a:hover,
.wishlist-card-body > a:focus {
    color: #b42318;
}

.wishlist-card-body p {
    min-height: 40px;
    margin: 0;
    color: #667085;
    font-size: 13px;
    line-height: 1.5;
}

.wishlist-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 4px;
}

.wishlist-card-foot strong {
    color: #b42318;
    font-size: 17px;
    font-weight: 800;
}

.wishlist-card-foot div {
    display: flex;
    gap: 8px;
}

.wishlist-cart-btn,
.wishlist-remove-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
}

.wishlist-cart-btn {
    background: #111827;
}

.wishlist-remove-btn {
    background: #b42318;
}

.wishlist-empty {
    grid-column: 1 / -1;
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 56px 20px;
    text-align: center;
}

.wishlist-empty i {
    color: #98a2b3;
    font-size: 46px;
}

.wishlist-empty strong {
    color: #101828;
    font-size: 22px;
    font-weight: 800;
}

.wishlist-empty p {
    margin: 0;
    color: #667085;
}

@media (max-width: 980px) {
    .wishlist-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .wishlist-shell {
        width: min(100% - 20px, 1180px);
        padding-top: 24px;
    }

    .wishlist-head {
        align-items: stretch;
        flex-direction: column;
    }

    .wishlist-continue {
        width: 100%;
    }

    .wishlist-grid {
        grid-template-columns: 1fr;
    }
}
