/* ==========================================
   ポップアップ本体（180px幅・コンパクト設計）
   ========================================== */
.cfp-popup-wrapper {
    position: fixed;
    bottom: 75px; /* PC版：スクロールボタンの上に配置 */
    right: 40px;
    width: 180px; /* 横幅を180pxに指定 */
    max-width: calc(100vw - 30px);
    background: #ffffff;
    border: 1px solid #111111;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 2147483647;
    padding: 22px 10px 10px 10px; /* 幅に合わせて内側の余白もコンパクトに */
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    transition: opacity 0.3s ease;
}

/* 閉じるボタン */
.cfp-close-btn {
    position: absolute;
    top: 2px;
    right: 4px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    color: #111111;
    padding: 2px 4px;
    z-index: 2;
}

.cfp-close-btn:hover {
    opacity: 0.7;
}

/* コンテンツ全体 */
.cfp-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px; /* 縦の隙間を少し詰める */
    width: 100%;
}

/* 横長画像エリア */
.cfp-cover {
    width: 100%;
    text-align: center;
}

.cfp-cover img {
    width: 100%;
    height: auto;
    max-height: 110px; /* 180px幅に合わせて画像の高さ上限を調整 */
    display: block;
    object-fit: cover;
}

/* テキスト情報エリア */
.cfp-info {
    width: 100%;
    text-align: center;
}

/* タイトル */
.cfp-title {
    font-size: 13px; /* 幅180pxで折り返しが綺麗に収まるサイズ */
    font-weight: 700;
    color: #111111;
    margin-bottom: 2px;
    line-height: 1.3;
}

/* 価格 */
.cfp-price {
    font-size: 11px;
    color: #333333;
    margin-bottom: 8px;
}

/* ボタン */
.cfp-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #333333;
    color: #ffffff;
    text-decoration: none;
    padding: 6px 0;
    font-size: 11px;
    font-weight: bold;
    border-radius: 0px;
    box-sizing: border-box;
    transition: background-color 0.2s ease;
}

.cfp-btn:hover {
    background: #111111;
    color: #ffffff;
}

/* ==========================================
   再表示用ミニタブ（INFO）
   ========================================== */
.cfp-reopen-tab {
    position: fixed;
    bottom: 75px;
    right: 40px;
    background: #111111;
    color: #ffffff;
    padding: 8px 12px;
    font-size: 11px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2147483646;
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    letter-spacing: 0.05em;
}

.cfp-reopen-tab:hover {
    background: #333333;
}

/* ==========================================
   スマホ表示時の上書き（768px以下）
   ========================================== */
@media screen and (max-width: 768px) {
    .cfp-popup-wrapper {
        bottom: 70px;
        right: 15px;
    }
    .cfp-reopen-tab {
        bottom: 70px;
        right: 15px;
    }
}