.pd-sec-more-products-list {
    width: 100%;
    box-sizing: border-box;
}

.pdmpl-root {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

/* ── Tabs scroll container ─────────────────────────────────────────────────── */
.pdmpl-tabs-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.pdmpl-tabs-scroll::-webkit-scrollbar {
    display: none;
}

.pdmpl-tabs-row {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    min-width: 0;
    min-height: 40px;
}

/* ── Tab button ────────────────────────────────────────────────────────────── */
.pdmpl-tab {
    flex-shrink: 0;
    padding: 8px 16px;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1f2937;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    user-select: none;
    outline: none;
}

.pdmpl-tab:hover,
.pdmpl-tab:active {
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.06);
}

.pdmpl-tab:focus-visible {
    outline: 2px solid #8b5cf6;
    outline-offset: -2px;
}

.pdmpl-tab--active {
    color: #8b5cf6;
    border-bottom-color: #8b5cf6;
    font-weight: 600;
}

/* ── Product grid ──────────────────────────────────────────────────────────── */
.pdmpl-grid {
    width: 100%;
    display: grid;
    gap: 8px;
    box-sizing: border-box;
}

.pdmpl-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.pdmpl-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.pdmpl-grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

/* ── Empty state ───────────────────────────────────────────────────────────── */
.pdmpl-empty {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 0.88rem;
    color: #9ca3af;
    padding: 32px 0;
}
