/* ── Product page hero ─────────────────────────────────────── */
.pp-hero {
    background: linear-gradient(135deg, var(--fs-primary) 0%, color-mix(in srgb, var(--fs-primary) 70%, #000) 100%);
    color: #fff;
    padding: 3rem 0 2.5rem;
}
.pp-breadcrumb { font-size: .82rem; opacity: .7; margin-bottom: .75rem; }
.pp-breadcrumb a { color: inherit; text-decoration: none; }
.pp-breadcrumb a:hover { opacity: .9; }
.pp-breadcrumb i { margin: 0 .4rem; font-size: .75rem; }
.pp-hero-badge {
    display: inline-flex; align-items: center; gap: .4rem;
    background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
    color: #fff; font-size: .78rem; font-weight: 600;
    padding: .3rem .9rem; border-radius: 50px; margin-bottom: .85rem;
}
.pp-hero-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800; line-height: 1.2; margin-bottom: .6rem;
}
.pp-hero-sub { font-size: 1rem; opacity: .85; max-width: 560px; margin-bottom: 0; }

/* ── Category navigation tabs ──────────────────────────────── */
.cat-nav-wrap {
    background: #fff; border-bottom: 1px solid #e8ecf0;
    position: sticky; top: 0; z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.cat-nav {
    display: flex; gap: .4rem; overflow-x: auto;
    padding: .6rem 0; scrollbar-width: none;
}
.cat-nav::-webkit-scrollbar { display: none; }
.cat-nav-item {
    display: flex; align-items: center; gap: .5rem;
    white-space: nowrap; padding: .5rem 1rem;
    border-radius: 50px; font-size: .83rem; font-weight: 500;
    color: #64748b; text-decoration: none;
    border: 1.5px solid transparent; transition: all .18s;
    flex-shrink: 0;
}
.cat-nav-item:hover { background: #f1f5f9; color: var(--fs-primary); }
.cat-nav-item.active {
    background: var(--fs-primary); color: #fff;
    border-color: var(--fs-primary);
}
.cat-nav-item i { font-size: .9rem; }

/* ── Products grid ─────────────────────────────────────────── */
.pp-section { padding: 2.5rem 0 4rem; background: #f8fafc; }
.pp-count { font-size: .88rem; color: #64748b; margin-bottom: 1.25rem; }
.pp-count strong { color: #1e293b; }

/* ── Product card ──────────────────────────────────────────── */
.pc {
    background: #fff; border-radius: 14px;
    border: 1.5px solid #e8ecf0;
    transition: transform .2s, box-shadow .2s;
    height: 100%; display: flex; flex-direction: column;
    overflow: hidden;
}
.pc:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.1); }

.pc-header {
    padding: 1.1rem 1.25rem .9rem;
    border-bottom: 1px solid #f1f5f9;
    display: flex; align-items: center; gap: .85rem;
}
.pc-logo {
    width: 46px; height: 46px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: .7rem; font-weight: 800; color: #fff;
    letter-spacing: -.5px; flex-shrink: 0;
}
.pc-logo-info { flex: 1; min-width: 0; }
.pc-provider { font-size: .75rem; color: #94a3b8; font-weight: 500; }
.pc-name {
    font-size: .93rem; font-weight: 700; color: #1e293b;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pc-badge {
    font-size: .72rem; font-weight: 600; padding: .2rem .6rem;
    border-radius: 50px; white-space: nowrap; flex-shrink: 0;
}

.pc-body { padding: 1rem 1.25rem; flex: 1; }
.pc-highlights { list-style: none; padding: 0; margin: 0 0 .85rem; }
.pc-highlights li {
    font-size: .83rem; color: #475569; padding: .22rem 0;
    display: flex; align-items: flex-start; gap: .5rem;
}
.pc-highlights li::before {
    content: "";
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--fs-primary); margin-top: .45rem; flex-shrink: 0;
}

.pc-meta {
    display: flex; gap: .75rem; flex-wrap: wrap;
    padding: .75rem 1.25rem; background: #f8fafc;
    border-top: 1px solid #f1f5f9;
}
.pc-meta-item { font-size: .8rem; color: #64748b; display: flex; align-items: center; gap: .3rem; }
.pc-meta-item strong { color: #1e293b; }

.pc-footer {
    padding: .85rem 1.25rem;
    border-top: 1px solid #f1f5f9;
}
.pc-cta {
    width: 100%; border-radius: 8px;
    font-size: .87rem; font-weight: 600;
    padding: .55rem 1rem;
    background: var(--fs-primary); color: #fff;
    border: none; transition: opacity .18s;
}
.pc-cta:hover { opacity: .88; color: #fff; }
