.hifi-bookmark-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 18px;
    border: 1px solid rgba(196,155,84,.35);
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: all .18s ease;
}

.hifi-bookmark-btn:hover,
.hifi-bookmark-btn.is-saved {
    background: #c49b54;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(196,155,84,.28);
}

.hifi-bookmark-icon {
    font-size: 18px;
    line-height: 1;
}

.hifi-bookmarks-page {
    width: 100%;
    margin: 40px 0;
    padding: 36px;
    background: #f8f7f4;
    border: 1px solid #e6e1d8;
    border-radius: 24px;
}

.hifi-bookmarks-page-header {
    text-align: center;
    margin-bottom: 32px;
}

.hifi-bookmarks-page-header span {
    display: block;
    color: #c49b54;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 900;
    font-size: 13px;
    margin-bottom: 8px;
}

.hifi-bookmarks-page-header h2 {
    margin: 0 0 8px;
    font-size: 34px;
    font-weight: 900;
    color: #111;
}

.hifi-bookmarks-page-header p {
    margin: 0;
    color: #666;
    font-size: 16px;
}

.hifi-bookmarks-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.hifi-bookmark-card {
    overflow: hidden;
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e8e2d8;
    box-shadow: 0 12px 30px rgba(0,0,0,.055);
    transition: transform .18s ease, box-shadow .18s ease;
}

.hifi-bookmark-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,.09);
}

.hifi-bookmark-card-image {
    display: block;
    height: 190px;
    overflow: hidden;
    background: #ddd;
}

.hifi-bookmark-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .25s ease;
}

.hifi-bookmark-card:hover .hifi-bookmark-card-image img {
    transform: scale(1.05);
}

.hifi-bookmark-card-content {
    padding: 18px;
}

.hifi-bookmark-card-meta {
    color: #c49b54;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 8px;
}

.hifi-bookmark-card h3 {
    margin: 0 0 16px;
    font-size: 19px;
    line-height: 1.25;
}

.hifi-bookmark-card h3 a {
    color: #111;
    text-decoration: none;
}

.hifi-bookmark-card h3 a:hover {
    color: #c49b54;
}

.hifi-remove-bookmark {
    padding: 9px 14px;
    border: 0;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.hifi-remove-bookmark:hover {
    background: #c49b54;
}

.hifi-bookmarks-empty,
.hifi-bookmarks-guest {
    text-align: center;
    padding: 45px 20px;
    background: #fff;
    border-radius: 18px;
    border: 1px dashed #d6cab8;
}

.hifi-bookmarks-empty h3 {
    margin: 0 0 8px;
    font-size: 24px;
    color: #111;
}

.hifi-bookmarks-empty p,
.hifi-bookmarks-guest p {
    margin: 0;
    color: #666;
}

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

@media (max-width: 640px) {
    .hifi-bookmarks-page {
        padding: 22px 16px;
        border-radius: 18px;
    }

    .hifi-bookmarks-grid {
        grid-template-columns: 1fr;
    }

    .hifi-bookmarks-page-header h2 {
        font-size: 27px;
    }
}