.pcg-watch-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.pcg-watch-card,
.pcg-guest-saved-card {
    border: 1px solid rgba(7, 45, 64, .11);
    border-radius: 18px;
    background: linear-gradient(145deg, #fff 72%, rgba(24, 190, 132, .055));
    box-shadow: 0 14px 34px rgba(7, 29, 47, .07);
    padding: 1.1rem;
}

.pcg-watch-image {
    width: 76px;
    height: 76px;
    flex: 0 0 76px;
    border-radius: 14px;
    border: 1px solid rgba(7, 45, 64, .1);
    object-fit: contain;
    background: #fff;
}

.pcg-watch-image-fallback {
    display: grid;
    place-items: center;
    color: #087a55;
    font-size: 1.6rem;
}

.pcg-watch-facts {
    display: flex;
    gap: .5rem 1rem;
    flex-wrap: wrap;
    font-size: .82rem;
    color: #647482;
}

.pcg-notification-preferences {
    display: grid;
    gap: .7rem;
}

.pcg-notification-preferences label {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-weight: 600;
}

.pcg-coupon-icon-actions [data-pcg-guest-save].is-saved {
    color: #087a55;
    border-color: rgba(8, 122, 85, .3);
    background: rgba(8, 122, 85, .08);
}

.pcg-guest-saved-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.pcg-guest-saved-card {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pcg-guest-saved-card img {
    width: 92px;
    height: 92px;
    object-fit: contain;
    border-radius: 14px;
    background: #fff;
}

.pcg-watch-form {
    padding: 1rem;
    border-radius: 14px;
    border: 1px solid rgba(8, 122, 85, .2);
    background: rgba(8, 122, 85, .045);
}

.pcg-alert-history-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: .8rem 0;
    border-bottom: 1px solid rgba(7, 45, 64, .08);
}

@media (max-width: 767.98px) {
    .pcg-watch-grid,
    .pcg-guest-saved-list { grid-template-columns: 1fr; }
}
