/* Block: bigboss/sc-products
 * ============================================================
 * EC-CUBE 商品マスタから価格帯別に商品をタブ表示
 * --bb-* トークン使用、テーマ非依存
 * sc-prices のスタイルベース + product カード調整
 * ============================================================ */

.bsc-products {
    background: var(--bb-off-white);
    color: var(--bb-black);
    padding: 0;
}

/* sc-inner 相当の上下余白 */
.bsc-products > .bsc-products__inner {
    padding-block: 64px;
}

@media (min-width: 768px) {
    .bsc-products > .bsc-products__inner {
        padding-block: 88px;
    }
}

@media (min-width: 1200px) {
    .bsc-products > .bsc-products__inner {
        padding-block: 112px;
    }
}

/* ─── Header ─────────────────────────────────────────────── */
.bsc-products__header {
    margin-bottom: 48px;
}

/* アイブロウ・見出しスタイルは base.css の .sc-eyebrow-* / .sc-heading に受け渡し */

/* intro スタイルは base.css の .sc-intro に受け渡し（トークン --bb-intro-* 参照）*/

/* ─── Tabs ───────────────────────────────────────────────── */
.bsc-products__tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
    margin-bottom: 56px;
    border-top: 1px solid var(--bb-border-light, #e0d5c2);
    border-bottom: 1px solid var(--bb-border-light, #e0d5c2);
}

.bsc-products__tab {
    appearance: none;
    background: transparent;
    border: none;
    border-left: 1px solid var(--bb-border-light, #e0d5c2);
    padding: 28px 24px 24px;
    font-family: var(--bb-font-body);
    color: var(--bb-mid, #5a4a3a);
    cursor: pointer;
    transition: background var(--bb-transition), color var(--bb-transition);
    text-align: left;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    min-height: 140px;
    font-feature-settings: "palt";
}

.bsc-products__tab:first-child {
    border-left: none;
}

/* 上部のアクセントバー（アクティブ時のみ表示） */
.bsc-products__tab::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: transparent;
    transition: background var(--bb-transition);
}

.bsc-products__tab:hover:not(.is-active) {
    background: rgba(0, 0, 0, 0.02);
    color: var(--bb-black);
}

.bsc-products__tab.is-active {
    background: var(--bb-white, #faf4ea);
    color: var(--bb-black);
}

.bsc-products__tab.is-active::before {
    background: var(--bb-accent, #d4a574);
}

/* 番号（モノスペース、控えめ）*/
.bsc-products__tab-num {
    font-family: var(--bb-font-mono);
    font-size: 11px;
    letter-spacing: .18em;
    color: var(--bb-accent-dark, #8b5a3c);
    margin-bottom: 4px;
}

/* 金額部（ディスプレイフォント、タブでは控えめ）*/
.bsc-products__tab-price {
    font-family: var(--bb-font-display, sans-serif);
    font-size: clamp(20px, 2.4vw, 28px);
    font-weight: var(--bb-display-weight, 500);
    letter-spacing: -0.01em;
    line-height: 1.05;
    color: inherit;
}

/* 説明部（グレー、小さめ）*/
.bsc-products__tab-desc {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.6;
    color: rgba(26, 18, 12, 0.55);
    margin-top: 4px;
}

.bsc-products__tab.is-active .bsc-products__tab-desc {
    color: rgba(26, 18, 12, 0.72);
}

@media (max-width: 540px) {
    .bsc-products__tabs {
        grid-template-columns: 1fr;
        margin-bottom: 40px;
    }
    .bsc-products__tab {
        border-left: none;
        border-bottom: 1px solid var(--bb-border-light, #e0d5c2);
        padding: 20px 4px;
        min-height: 0;
    }
    .bsc-products__tab:last-child {
        border-bottom: none;
    }
    .bsc-products__tab-price {
        font-size: 19px;
    }
}

/* ─── Panel Title（アクティブパネル先頭の見出し）──────── */
.bsc-products__panel-title {
    margin: 0 0 32px;
}

.bsc-products__panel-price {
    font-family: var(--bb-font-display, sans-serif);
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: var(--bb-display-weight, 500);
    letter-spacing: -0.01em;
    line-height: 1.05;
    color: var(--bb-black, #1a120c);
    margin: 0 0 8px;
    text-wrap: balance;
}

.bsc-products__panel-desc {
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 500;
    line-height: 1.7;
    color: rgba(26, 18, 12, 0.65);
    margin: 0;
    text-wrap: balance;
}

@media (max-width: 540px) {
    .bsc-products__panel-title {
        margin: 0 0 24px;
    }
    .bsc-products__panel-price {
        font-size: 22px;
    }
    .bsc-products__panel-desc {
        font-size: 13px;
    }
}

/* ─── Panels ─────────────────────────────────────────────── */
.bsc-products__panel {
    display: none;
}

.bsc-products__panel.is-active {
    display: block;
    animation: bsc-products-fade-in 0.3s ease;
}

@keyframes bsc-products-fade-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ─── Grid ───────────────────────────────────────────────── */
.bsc-products__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

@media (max-width: 1024px) {
    .bsc-products__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 540px) {
    .bsc-products__grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}

/* ─── Card ───────────────────────────────────────────────── */
.bsc-product-card {
    display: flex;
    flex-direction: column;
    background: var(--bb-white, #faf4ea);
    border: 1px solid var(--bb-border-light, #e0d5c2);
    border-radius: var(--bb-radius-sm, 2px);
    overflow: hidden;
    transition: var(--bb-transition);
    text-decoration: none;
    color: inherit;
}

.bsc-product-card:hover {
    transform: translateY(-2px);
    border-color: var(--bb-accent);
    box-shadow: 0 12px 32px rgba(139, 90, 60, 0.12);
    text-decoration: none;
    color: inherit;
}

.bsc-product-card__media {
    aspect-ratio: 4 / 3;
    background: var(--bb-off-white, #f4ece0);
    overflow: hidden;
}

.bsc-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bsc-product-card__media-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bb-off-white) 0%, var(--bb-border-light) 100%);
}

.bsc-product-card__body {
    padding: 14px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bsc-product-card__title {
    font-size: 13px;
    line-height: 1.45;
    font-weight: 500;
    color: var(--bb-black);
    margin: 0;
    /* 2行で切る */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bsc-product-card__price {
    margin-top: 4px;
    font-family: var(--bb-font-mono);
    font-size: 14px;
    font-weight: 600;
    color: var(--bb-accent-dark);
}

/* ─── More link ──────────────────────────────────────────── */
/* ボタンは base.css の .sc-btn / .sc-btn--dark を使用 */
.bsc-products__more {
    text-align: center;
    margin-top: 40px;
}

/* ─── Empty state ────────────────────────────────────────── */
.bsc-products__empty {
    text-align: center;
    padding: 64px 20px;
    border: 1px dashed var(--bb-border-light, #e0d5c2);
    border-radius: var(--bb-radius-sm);
    color: rgba(26, 18, 12, 0.6);
}

.bsc-products__empty p {
    margin: 0 0 16px;
    font-size: 14px;
}
