.cgst-save-listing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    width: 100%;
    border: 1px solid #fed7aa;
    border-radius: 16px;
    background: #fff7ed;
    color: #c2410c;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.18s ease;
}
.cgst-save-listing-btn:hover {
    transform: translateY(-1px);
    background: #fff1e7;
}
.cgst-save-listing-btn.is-saved {
    background: #f97316;
    border-color: #f97316;
    color: #fff;
}
.cgst-save-listing-btn.is-loading {
    opacity: 0.7;
    pointer-events: none;
}
.cgst-save-icon {
    font-size: 18px;
    line-height: 1;
}
.cgst-save-heart-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 12;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(251,146,60,0.45);
    background: rgba(255,255,255,0.96);
    box-shadow: 0 10px 28px rgba(15,23,42,0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
}
.cgst-save-heart-btn.is-saved {
    background: #f97316;
    border-color: #f97316;
    color: #fff;
}
.cgst-save-heart-icon {
    font-size: 22px;
    line-height: 1;
}
.cgst-reg-interest-box {
    margin: 12px 0 18px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 14px 16px 16px;
}
.cgst-reg-interest-box legend {
    font-weight: 700;
    padding: 0 6px;
}
.cgst-reg-interest-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
}
.cgst-reg-interest-item {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.45;
}
@media (max-width: 767px) {
    .cgst-reg-interest-grid {
        grid-template-columns: 1fr;
    }
    .cgst-save-heart-btn {
        top: 10px;
        right: 10px;
        width: 42px;
        height: 42px;
    }
}
