.oj-ai-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin: 14px 0;
}
.oj-ai-card {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.oj-ai-card__image {
    display: block;
    background: #fafafa;
    text-align: center;
}
.oj-ai-card__image img {
    width: 100%;
    max-width: 220px;
    height: auto;
    display: block;
    margin: 0 auto;
}
.oj-ai-card__body {
    padding: 12px;
}
.oj-ai-card__title {
    font-size: 15px;
    line-height: 1.25;
    margin: 0 0 8px;
}
.oj-ai-card__title a {
    color: inherit;
    text-decoration: none;
}
.oj-ai-card__price {
    font-weight: 700;
    margin-bottom: 8px;
}
.oj-ai-card__badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.oj-ai-card__badge {
    display: inline-block;
    font-size: 12px;
    line-height: 1;
    padding: 5px 7px;
    border-radius: 999px;
    background: #f2f2f2;
}
.oj-ai-card__badge.is-instock {
    background: #e9f8ef;
}
.oj-ai-card__badge.is-outofstock {
    background: #f8e9e9;
}
.oj-ai-card__badge.is-sale {
    background: #fff4d6;
}
.oj-ai-card__button {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    border-radius: 8px;
    padding: 9px 10px;
    text-decoration: none;
    background: #111;
    color: #fff;
    font-weight: 600;
}
