/* AIプロダクトインサーター フロントエンドCSS（商品カード） */

/* === 共通リセット（全カード共通） === */
.aipi-card,
.aipi-ranking {
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    color: #333;
    margin: 24px 0;
    max-width: 100%;
}

.aipi-card *,
.aipi-ranking * {
    box-sizing: border-box;
}

/* === 縦置きリンカー風（A型） === */
.aipi-card--vertical {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.aipi-card--vertical .aipi-card__inner {
    display: flex;
    gap: 16px;
    padding: 16px;
}

.aipi-card--vertical .aipi-card__img {
    flex: 0 0 140px;
    height: 140px;
    background: #fafafa;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.aipi-card--vertical .aipi-card__img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.aipi-card--vertical .aipi-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.aipi-card--vertical .aipi-card__brand {
    font-size: 11px;
    color: #888;
    margin-bottom: 4px;
}

.aipi-card--vertical .aipi-card__title {
    font-size: 14px;
    font-weight: 500;
    color: #2563a6;
    text-decoration: none;
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.aipi-card--vertical .aipi-card__title:hover {
    text-decoration: underline;
}

.aipi-card--vertical .aipi-card__rating {
    font-size: 11px;
    color: #666;
    margin-bottom: 4px;
}

.aipi-stars { color: #f0c14b; }
.aipi-rating-num { color: #333; font-weight: 700; margin-left: 2px; }
.aipi-review-count { color: #999; }

.aipi-card--vertical .aipi-card__price {
    font-size: 13px;
    color: #c0392b;
    font-weight: 700;
    margin-top: auto;
    margin-bottom: 6px;
}

.aipi-card__buttons {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.aipi-btn {
    flex: 1;
    min-width: 80px;
    padding: 8px 6px;
    border-radius: 3px;
    text-align: center;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    color: #fff !important;
    border: none;
    transition: opacity 0.15s;
    display: inline-block;
}
.aipi-btn:hover { opacity: 0.85; text-decoration: none; }

.aipi-btn--amazon { background: #FF9900; }
.aipi-btn--rakuten { background: #BF0000; }
.aipi-btn--yahoo { background: #FF0033; }

.aipi-card__disclaimer {
    font-size: 10px;
    color: #999;
    margin-top: 8px;
    text-align: right;
}

/* === シンプル横長（B型） === */
.aipi-card--horizontal {
    background: #fff;
    border-left: 4px solid #FF9900;
    padding: 14px 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    display: flex;
    gap: 14px;
    align-items: center;
}

.aipi-card--horizontal .aipi-card__img {
    flex: 0 0 80px;
    height: 80px;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aipi-card--horizontal .aipi-card__img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.aipi-card--horizontal .aipi-card__body {
    flex: 1;
    min-width: 0;
}

.aipi-card--horizontal .aipi-card__title {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.aipi-card--horizontal .aipi-card__price-mini {
    font-size: 12px;
    color: #c0392b;
    font-weight: 700;
    margin-bottom: 6px;
}

.aipi-card--horizontal .aipi-card__btn {
    display: inline-block;
    background: #FF9900;
    color: #fff !important;
    padding: 6px 14px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
}
.aipi-card--horizontal .aipi-card__btn:hover { opacity: 0.85; text-decoration: none; }

/* === ランキング型 === */
.aipi-ranking {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 18px;
}

.aipi-ranking__header {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 12px;
}

.aipi-ranking__badge {
    display: inline-block;
    background: #2563a6;
    color: #fff;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 2px;
    margin-right: 8px;
    vertical-align: middle;
    font-weight: 700;
}

.aipi-ranking__title {
    vertical-align: middle;
}

.aipi-ranking__criteria {
    font-size: 11px;
    color: #888;
    margin-bottom: 12px;
    padding: 6px 10px;
    background: #fafafa;
    border-radius: 3px;
}

.aipi-rank-row {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #f5f5f5;
    align-items: flex-start;
}

.aipi-rank-row:last-child { border-bottom: none; }

.aipi-rank-row__rank {
    flex: 0 0 40px;
    height: 28px;
    border-radius: 14px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aipi-rank--1 { background: #f0c14b; color: #333; }
.aipi-rank--2 { background: #c0c0c0; color: #333; }
.aipi-rank--3 { background: #cd7f32; color: #fff; }
.aipi-rank--other { background: #5d6d7e; color: #fff; }

.aipi-rank-row__img {
    flex: 0 0 80px;
    height: 80px;
    background: #fafafa;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    overflow: hidden;
}

.aipi-rank-row__img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.aipi-rank-row__body {
    flex: 1;
    min-width: 0;
}

.aipi-rank-row__title {
    font-size: 13px;
    font-weight: 500;
    color: #2563a6;
    text-decoration: none;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 4px;
}

.aipi-rank-row__title:hover { text-decoration: underline; }

.aipi-rank-row__price {
    font-size: 12px;
    color: #c0392b;
    font-weight: 700;
    margin-bottom: 4px;
}

.aipi-rank-row__reason {
    font-size: 11px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 6px;
    padding: 4px 8px;
    background: #f8f9fa;
    border-left: 2px solid #3498db;
    border-radius: 0 3px 3px 0;
}

.aipi-rank-row__buttons {
    display: flex;
    gap: 4px;
    margin-top: 6px;
}

.aipi-btn-mini {
    padding: 4px 10px;
    border-radius: 2px;
    font-size: 10px;
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
}
.aipi-btn-mini:hover { opacity: 0.85; text-decoration: none; }

.aipi-ranking__disclaimer {
    font-size: 10px;
    color: #999;
    margin-top: 12px;
    text-align: right;
}

/* === レスポンシブ === */
@media (max-width: 480px) {
    .aipi-card--vertical .aipi-card__inner {
        flex-direction: column;
    }
    .aipi-card--vertical .aipi-card__img {
        flex: 0 0 180px;
        width: 100%;
        height: 180px;
    }
    .aipi-rank-row {
        flex-wrap: wrap;
    }
    .aipi-rank-row__rank {
        flex: 0 0 100%;
    }
    .aipi-rank-row__img {
        flex: 0 0 60px;
        height: 60px;
    }
}
