/* ── Bundle Show Header ───────────────────────────────── */
.bundle-show-header{display:grid;grid-template-columns:380px 1fr;gap:36px;align-items:center;margin-bottom:10px;background:#fff;border:1px solid #ebebeb;border-radius:18px;overflow:hidden;padding:32px;box-shadow:0 4px 15px rgba(0,0,0,.05)}

.bundle-show-img{border-radius:12px;overflow:hidden;background:#f5f5f5;aspect-ratio:4/3}
.bundle-show-img img{width:100%;height:100%;object-fit:cover}
.bundle-show-img-empty{width:100%;height:100%;display:flex;align-items:center;justify-content:center;color:#ddd;font-size:4rem;aspect-ratio:4/3}

.bundle-show-info{display:flex;flex-direction:column;gap:14px}

.bundle-show-label{display:inline-block;background:rgba(230,126,34,.1);color:var(--accent-color);font-size:.76rem;font-weight:700;padding:4px 13px;border-radius:20px;width:fit-content;font-family:var(--font-secondary)}

.bundle-show-title{font-size:1.9rem;font-weight:800;color:#1a1a1a;margin:0;line-height:1.2;font-family:var(--font-secondary)}

.bundle-show-desc{color:#666;font-size:.93rem;line-height:1.65;margin:0}

.bundle-show-prices{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.bundle-show-price{font-size:2rem;font-weight:800;color:#333;font-family:var(--font-secondary)}
.bundle-show-price.sale-price{color:var(--accent-color)}
.bundle-show-original{font-size:1rem;color:#bbb}

.bundle-show-summary{font-size:.83rem;color:#999;margin:0;line-height:1.6}

/* ── Products Grid ────────────────────────────────────── */
.bundle-products-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:20px}

/* Variant pill on product image */
.bundle-variant-pill{position:absolute;bottom:10px;left:10px;background:rgba(0,0,0,.55);color:#fff;font-size:.7rem;font-weight:600;padding:3px 9px;border-radius:20px;backdrop-filter:blur(4px);z-index:2}

/* ── Responsive ───────────────────────────────────────── */
@media(max-width:860px){
    .bundle-show-header{grid-template-columns:1fr;gap:20px;padding:22px}
    .bundle-show-img{aspect-ratio:16/9;max-height:220px}
    .bundle-show-title{font-size:1.5rem}
    .bundle-show-price{font-size:1.7rem}
}
@media(max-width:580px){
    .bundle-products-grid{grid-template-columns:repeat(2,1fr);gap:12px}
}
@media(max-width:360px){
    .bundle-products-grid{grid-template-columns:1fr}
}
