:root {
            --bb-primary: #1e3a8a; --bb-primary-hover: #152c6e;
            --bb-orange: #f97316; --bb-green: #22c55e;
            --bb-bg: #f3f4f6; --bb-white: #ffffff;
            --bb-border: #e5e7eb; --bb-text: #1f2937;
        }
        .bb-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; display: flex; gap: 20px; margin: 20px 0; position: relative; align-items: flex-start; }
        .bb-sidebar { width: 260px; background: var(--bb-white); padding: 20px; border-radius: 8px; border: 1px solid var(--bb-border); flex-shrink: 0; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
        .bb-sidebar-header { display: none; }
        .bb-filter-group { margin-bottom: 20px; border-bottom: 1px solid #eee; padding-bottom: 15px; }
        .bb-filter-group label { font-weight: 700; display: block; margin-bottom: 10px; color: var(--bb-text); font-size: 14px; }
        .bb-checkbox { display: flex; align-items: center; gap: 8px; font-weight: 400; cursor: pointer; margin-bottom: 8px; font-size: 14px; }
        .bb-checkbox input { margin: 0; }
        .bb-mobile-btn, .bb-close-btn, .bb-btn-apply { display: none; }
        .bb-select-input { width: 100%; padding: 8px 12px; border: 1px solid #d1d5db; border-radius: 6px; background-color: #fff; font-size: 14px; color: #374151; box-sizing: border-box; }
        .bb-grid { flex-grow: 1; display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
        .bb-card { background: var(--bb-white); border: 1px solid var(--bb-border); border-radius: 8px; padding: 20px; display: flex; flex-direction: column; transition: transform 0.2s ease, box-shadow 0.2s ease; }
        .bb-card:hover { transform: translateY(-2px); box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1); border-color: #cbd5e1; }
        .bb-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 15px; }
        .bb-logo { max-height: 35px; max-width: 100px; object-fit: contain; }
        .bb-price-box { text-align: right; line-height: 1; }
        .bb-price-large { font-size: 26px; font-weight: 800; color: var(--bb-primary); display: block; }
        .bb-price-period { font-size: 12px; color: #6b7280; }
        .bb-badges-container { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 15px; min-height: 24px; }
        .bb-badge-orange, .bb-badge-green, .bb-badge-blue { font-size: 10px; padding: 3px 8px; border-radius: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
        .bb-badge-orange { background: #fff7ed; color: var(--bb-orange); border: 1px solid #ffedd5; }
        .bb-badge-green { background: #f0fdf4; color: var(--bb-green); border: 1px solid #dcfce7; }
        .bb-badge-blue { background: #eff6ff; color: var(--bb-primary); border: 1px solid #dbeafe; }
        .bb-specs { margin-bottom: 20px; font-size: 13px; color: #374151; background: #f9fafb; padding: 10px; border-radius: 6px; }
        .bb-spec-row { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
        .bb-spec-row:last-child { margin-bottom: 0; }
        .bb-icon { color: #9ca3af; width: 16px; text-align: center; }
        .bb-footer { margin-top: auto; padding-top: 15px; border-top: 1px solid #f3f4f6;}
        .bb-total-price { font-size: 11px; color: #9ca3af; text-align: center; margin-bottom: 10px; }
        .bb-cta-btn { display: flex; justify-content: center; align-items: center; gap: 5px; width: 100%; background: var(--bb-primary); color: #ffffff !important; text-decoration: none; padding: 12px; border-radius: 6px; font-weight: 600; font-size: 15px; transition: background 0.2s; text-align: center; box-sizing: border-box; }
        .bb-cta-btn:hover { background: var(--bb-primary-hover); color: #fff !important; }
        .bb-ad-label { text-align: center; font-size: 10px; color: #9ca3af; margin-top: 6px; text-transform: uppercase; }

        @media (max-width: 768px) {
            .bb-container { flex-direction: column; align-items: stretch; }
            .bb-mobile-btn { display: flex; justify-content: center; align-items: center; gap: 8px; width: 100%; padding: 12px; background: var(--bb-primary); color: white; border: none; border-radius: 6px; font-size: 16px; font-weight: 600; cursor: pointer; margin-bottom: 10px; }
            .bb-sidebar { position: fixed; top: 0; left: 0; height: 100vh; width: 85%; max-width: 320px; z-index: 99999; transform: translateX(-100%); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 2px 0 10px rgba(0,0,0,0.2); overflow-y: auto; display: block; }
            .bb-sidebar.active { transform: translateX(0); }
            .bb-sidebar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; border-bottom: 1px solid #eee; padding-bottom: 15px; }
            .bb-sidebar-header h3 { margin: 0; font-size: 18px; }
            .bb-close-btn { background: none; border: none; font-size: 28px; cursor: pointer; color: #666; padding: 0; }
            .bb-btn-apply { display: block; width: 100%; background: var(--bb-primary); color: white; padding: 15px; border: none; border-radius: 6px; margin-top: 20px; font-size: 16px; font-weight: 600; cursor: pointer; }
            .bb-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 99998; display: none; backdrop-filter: blur(2px); }
            .bb-overlay.active { display: block; }
        }
