/* ============================================================
   Pochipp Lite — フロントエンド商品カード
   ============================================================ */

.pochlite-wrap {
    margin: 1.5em auto;
    max-width: 100%;
}

.pochlite-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    font-size: 14px;
    line-height: 1.6;
    position: relative;
    overflow: hidden;
}

/* 左側カラー帯 */
.pochlite-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #FF9900, #e47911);
    border-radius: 10px 0 0 10px;
}

/* ---- 商品画像 ---- */
.pochlite-card__img {
    flex: 0 0 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pochlite-card__img img {
    max-width: 130px;
    max-height: 130px;
    width: auto;
    height: auto;
    object-fit: contain;
    border: none !important;
    box-shadow: none !important;
    border-radius: 4px;
}

/* ---- 商品情報 ---- */
.pochlite-card__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pochlite-card__name {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.5;
    margin: 0 !important;
    padding: 0 !important;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pochlite-card__memo {
    font-size: 13px;
    color: #666;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.5;
}

.pochlite-card__price {
    font-size: 20px;
    font-weight: 700;
    color: #e23b3b;
    margin: 2px 0 0 !important;
    padding: 0 !important;
    letter-spacing: -0.02em;
}

/* ---- ボタン ---- */
.pochlite-card__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

.pochlite-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    cursor: pointer;
    transition: filter 0.18s ease, transform 0.12s ease;
    line-height: 1;
    border: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.pochlite-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
    text-decoration: none !important;
}

.pochlite-btn:active {
    transform: translateY(0);
}

/* Amazon */
.pochlite-btn--amazon {
    background: linear-gradient(to bottom, #FFB340, #FF9900);
    color: #111 !important;
}

/* 楽天 */
.pochlite-btn--rakuten {
    background: linear-gradient(to bottom, #E60012, #BF0000);
    color: #fff !important;
}

/* Yahoo */
.pochlite-btn--yahoo {
    background: linear-gradient(to bottom, #FF3A5C, #CC0033);
    color: #fff !important;
}

/* Amazon アイコン */
.pochlite-btn__icon {
    display: inline-flex;
    align-items: center;
    width: 16px;
    height: 16px;
}

.pochlite-btn__icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* ---- レスポンシブ ---- */
@media (max-width: 640px) {
    .pochlite-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 14px;
        padding: 16px;
    }

    .pochlite-card__img {
        flex: none;
    }

    .pochlite-card__name {
        -webkit-line-clamp: 4;
    }

    .pochlite-card__btns {
        justify-content: center;
    }

    .pochlite-btn {
        flex: 1 0 120px;
        justify-content: center;
    }
}
