/* =============================================================
   Plataforma comercial — tema premium de produção
   ============================================================= */

/* ---- Tokens ------------------------------------------- */
.platform-site {
    --pl-ink: #0d111c;
    --pl-ink-soft: #1e2638;
    --pl-muted: #6272a0;
    --pl-muted-light: #8894b8;
    --pl-line: rgba(13, 17, 28, 0.09);
    --pl-line-med: rgba(13, 17, 28, 0.14);
    --pl-surface: #f5f7fc;
    --pl-surface-2: #edf0f9;
    --pl-white: #ffffff;

    --pl-accent: #2455d6;
    --pl-accent-hover: #1a44c8;
    --pl-accent-soft: rgba(36, 85, 214, 0.1);
    --pl-accent-softer: rgba(36, 85, 214, 0.06);
    --pl-accent-dark: #0f2a6b;
    --pl-green: #0d8a5a;
    --pl-green-soft: rgba(13, 138, 90, 0.1);
    --pl-amber: #d97706;
    --pl-amber-soft: rgba(217, 119, 6, 0.1);
    --pl-purple: #7c3aed;
    --pl-purple-soft: rgba(124, 58, 237, 0.1);

    --pl-dark-bg: #0a0f1e;
    --pl-dark-bg2: #0e1629;
    --pl-dark-surface: rgba(255, 255, 255, 0.04);
    --pl-dark-line: rgba(255, 255, 255, 0.08);

    --pl-radius-sm: 10px;
    --pl-radius: 16px;
    --pl-radius-lg: 22px;
    --pl-radius-xl: 28px;

    --pl-shadow-sm: 0 2px 8px rgba(13, 17, 28, 0.06);
    --pl-shadow: 0 4px 20px rgba(13, 17, 28, 0.08);
    --pl-shadow-lg: 0 12px 48px rgba(13, 17, 28, 0.12);
    --pl-shadow-xl: 0 24px 80px rgba(13, 17, 28, 0.18);

    --pl-transition: 0.18s ease;

    font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
    color: var(--pl-ink);
    background: var(--pl-white);
    -webkit-font-smoothing: antialiased;
}

/* ---- Reset shell -------------------------------------- */
.platform-site .page-shell { max-width: none; padding: 0; }
.platform-site .site-main.container { max-width: none; width: 100%; padding: 0; }

/* ---- Header ------------------------------------------- */
.platform-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--pl-line);
    transition: box-shadow var(--pl-transition), border-color var(--pl-transition);
}

.platform-header.is-scrolled {
    box-shadow: 0 4px 28px rgba(13, 17, 28, 0.1);
    border-bottom-color: var(--pl-line-med);
}

.platform-header .topbar-inner--pro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 68px;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 32px);
}

/* ---- Brand -------------------------------------------- */
.pl-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--pl-ink);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: -0.025em;
    flex-shrink: 0;
}

.pl-brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--pl-accent) 0%, #6366f1 100%);
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(36, 85, 214, 0.3);
    position: relative;
}

.pl-brand-mark::after {
    content: "";
    position: absolute;
    inset: 8px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 5px;
}

.pl-brand img {
    max-height: 36px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
}

/* ---- Nav desktop -------------------------------------- */
.pl-nav-desktop {
    display: none;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: center;
    max-width: 640px;
}

.pl-nav-desktop a {
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--pl-ink-soft);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: background var(--pl-transition), color var(--pl-transition);
}

.pl-nav-desktop a:hover { background: var(--pl-surface); color: var(--pl-accent); }

.pl-nav-end {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* ---- Locale ------------------------------------------- */
.pl-locale {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--pl-muted);
    letter-spacing: 0.03em;
}

.pl-locale a { text-decoration: none; color: var(--pl-muted-light); }
.pl-locale a.is-active,
.pl-locale a:hover { color: var(--pl-accent); }

/* ---- Buttons override --------------------------------- */
.platform-site .btn-primary {
    background: var(--pl-accent);
    border-color: var(--pl-accent);
    color: var(--pl-white);
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(36, 85, 214, 0.22);
    transition: background var(--pl-transition), box-shadow var(--pl-transition), transform var(--pl-transition);
}

.platform-site .btn-primary:hover {
    background: var(--pl-accent-hover);
    border-color: var(--pl-accent-hover);
    box-shadow: 0 8px 24px rgba(36, 85, 214, 0.32);
    transform: translateY(-1px);
}

.platform-site .btn-secondary {
    border-color: var(--pl-line-med);
    color: var(--pl-ink-soft);
    background: var(--pl-white);
    font-weight: 600;
    transition: background var(--pl-transition), border-color var(--pl-transition);
}

.platform-site .btn-secondary:hover {
    background: var(--pl-surface);
    border-color: var(--pl-muted-light);
}

@media (min-width: 1060px) { .pl-nav-desktop { display: flex; } }

/* =============================================================
   HERO
   ============================================================= */
.pl-hero {
    padding: clamp(64px, 9vw, 104px) clamp(16px, 4vw, 40px) clamp(56px, 7vw, 88px);
    background:
        radial-gradient(ellipse 90% 60% at 5% -10%, rgba(36, 85, 214, 0.12), transparent 55%),
        radial-gradient(ellipse 60% 40% at 98% 110%, rgba(99, 102, 241, 0.09), transparent 50%),
        linear-gradient(180deg, #f3f5fc 0%, var(--pl-white) 100%);
    border-bottom: 1px solid var(--pl-line);
}

.pl-hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    gap: 40px;
    align-items: center;
}

@media (min-width: 960px) {
    .pl-hero-inner { grid-template-columns: 1.2fr 0.8fr; }
}

.pl-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pl-accent);
    margin-bottom: 16px;
    background: var(--pl-accent-softer);
    padding: 5px 11px;
    border-radius: 999px;
    border: 1px solid var(--pl-accent-soft);
}

.pl-eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pl-accent);
    flex-shrink: 0;
}

.pl-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(2.1rem, 5vw, 3.35rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.06;
    color: var(--pl-ink);
}

.pl-hero h1 em {
    font-style: normal;
    background: linear-gradient(90deg, var(--pl-accent), #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pl-hero-lead {
    margin: 0 0 28px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--pl-muted);
    max-width: 50ch;
}

.pl-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

/* Trust bar */
.pl-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    padding-top: 28px;
    border-top: 1px solid var(--pl-line);
}

.pl-trust-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pl-trust-item strong {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--pl-ink);
    letter-spacing: -0.03em;
    line-height: 1;
}

.pl-trust-item span {
    font-size: 0.78rem;
    color: var(--pl-muted);
    font-weight: 500;
}

/* Hero KPI panel */
.pl-hero-panel {
    border-radius: var(--pl-radius-xl);
    padding: 28px;
    background: var(--pl-dark-bg);
    color: var(--pl-white);
    box-shadow: var(--pl-shadow-xl);
    position: relative;
    overflow: hidden;
}

.pl-hero-panel::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(36, 85, 214, 0.25), transparent 70%);
    pointer-events: none;
}

.pl-hero-panel-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 20px;
    display: block;
}

.pl-kpi-list {
    display: grid;
    gap: 0;
}

.pl-kpi-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid var(--pl-dark-line);
    gap: 12px;
}

.pl-kpi-row:last-child { border-bottom: 0; padding-bottom: 0; }

.pl-kpi-row > span {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
}

.pl-kpi-row > strong {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.pl-hero-panel-badge {
    margin-top: 20px;
    padding: 10px 14px;
    background: var(--pl-accent-soft);
    border-radius: var(--pl-radius-sm);
    font-size: 0.78rem;
    font-weight: 600;
    color: #93bbff;
    border: 1px solid rgba(36, 85, 214, 0.2);
}

/* =============================================================
   SECTIONS — base
   ============================================================= */
.pl-section {
    padding: clamp(56px, 7vw, 88px) clamp(16px, 4vw, 40px);
}

.pl-section > .container,
.pl-section > .pl-section-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.pl-section.alt { background: var(--pl-surface); }
.pl-section.dark { background: var(--pl-dark-bg); color: var(--pl-white); }

.pl-section-head {
    margin-bottom: 40px;
}

.pl-section-head h2 {
    margin: 0 0 12px;
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.pl-section-head p {
    margin: 0;
    font-size: 1.02rem;
    color: var(--pl-muted);
    line-height: 1.65;
    max-width: 58ch;
}

.pl-head-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    max-width: none;
}

/* =============================================================
   FEATURE CARDS (Benefits section)
   ============================================================= */
.pl-feat-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.pl-feat-card {
    background: var(--pl-white);
    border: 1px solid var(--pl-line);
    border-radius: var(--pl-radius-lg);
    padding: 24px 22px 26px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--pl-shadow-sm);
    transition: box-shadow var(--pl-transition), transform var(--pl-transition);
}

.pl-feat-card:hover {
    box-shadow: var(--pl-shadow-lg);
    transform: translateY(-3px);
}

.pl-feat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pl-accent), #6366f1);
    opacity: 0;
    transition: opacity var(--pl-transition);
}

.pl-feat-card:hover::before { opacity: 1; }

.pl-feat-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--pl-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1;
}

.pl-feat-icon.blue { background: var(--pl-accent-softer); color: var(--pl-accent); }
.pl-feat-icon.green { background: var(--pl-green-soft); color: var(--pl-green); }
.pl-feat-icon.amber { background: var(--pl-amber-soft); color: var(--pl-amber); }
.pl-feat-icon.purple { background: var(--pl-purple-soft); color: var(--pl-purple); }

.pl-feat-card h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--pl-ink);
}

.pl-feat-card p {
    margin: 0;
    font-size: 0.94rem;
    color: var(--pl-muted);
    line-height: 1.6;
}

/* =============================================================
   HOW IT WORKS — steps
   ============================================================= */
.pl-how-grid {
    display: grid;
    gap: 20px;
}

@media (min-width: 880px) {
    .pl-how-grid { grid-template-columns: 1fr 1fr; }
}

.pl-how-card {
    background: var(--pl-white);
    border: 1px solid var(--pl-line);
    border-radius: var(--pl-radius-lg);
    padding: 28px 26px;
    box-shadow: var(--pl-shadow-sm);
}

.pl-how-card-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pl-accent);
    margin-bottom: 20px;
    display: block;
}

.pl-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0;
    position: relative;
}

.pl-steps::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 28px;
    bottom: 14px;
    width: 1px;
    background: linear-gradient(180deg, var(--pl-accent-soft), transparent);
}

.pl-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 0 0 20px;
    position: relative;
}

.pl-step:last-child { padding-bottom: 0; }

.pl-step-n {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--pl-accent);
    color: var(--pl-white);
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 4px var(--pl-white), 0 0 0 5px var(--pl-accent-soft);
}

.pl-step-n.alt {
    background: var(--pl-ink-soft);
    box-shadow: 0 0 0 4px var(--pl-white), 0 0 0 5px var(--pl-line-med);
}

.pl-step-body {
    padding-top: 4px;
}

.pl-step-body strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--pl-ink);
    margin-bottom: 3px;
}

.pl-step-body p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--pl-muted);
    line-height: 1.55;
}

/* =============================================================
   CATALOG — category + product cards
   ============================================================= */
.pl-showcase-title {
    margin: 48px 0 20px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--pl-muted);
}

.pl-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.pl-cat-card {
    background: var(--pl-white);
    border: 1px solid var(--pl-line);
    border-radius: var(--pl-radius-lg);
    padding: 22px 20px 24px;
    box-shadow: var(--pl-shadow-sm);
    transition: box-shadow var(--pl-transition), transform var(--pl-transition);
    cursor: default;
}

.pl-cat-card:hover {
    box-shadow: var(--pl-shadow-lg);
    transform: translateY(-2px);
}

.pl-cat-mark {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--pl-accent-soft) 0%, var(--pl-surface-2) 100%);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--pl-accent);
}

.pl-cat-card h3 { margin: 0 0 6px; font-size: 1rem; font-weight: 700; }
.pl-cat-card p  { margin: 0 0 12px; font-size: 0.88rem; color: var(--pl-muted); line-height: 1.5; }

.pl-cat-count {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--pl-accent);
    background: var(--pl-accent-softer);
    display: inline-block;
    padding: 3px 9px;
    border-radius: 999px;
    margin-bottom: 14px;
}

/* Product card */
.pl-product-card {
    background: var(--pl-white);
    border: 1px solid var(--pl-line);
    border-radius: var(--pl-radius-lg);
    overflow: hidden;
    box-shadow: var(--pl-shadow-sm);
    transition: box-shadow var(--pl-transition), transform var(--pl-transition);
}

.pl-product-card:hover {
    box-shadow: var(--pl-shadow-lg);
    transform: translateY(-3px);
}

.pl-product-thumb {
    height: 180px;
    background: linear-gradient(135deg, var(--pl-surface-2) 0%, var(--pl-surface) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.pl-product-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(36, 85, 214, 0.06) 0%, transparent 60%);
}

.pl-product-thumb-inner {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 24px rgba(13, 17, 28, 0.08);
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pl-product-thumb-inner::before {
    content: "";
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--pl-accent-soft);
}

.pl-product-body { padding: 16px 18px 20px; }

.pl-chip-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 10px;
}

.pl-chip {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    background: var(--pl-accent-softer);
    color: var(--pl-accent);
    letter-spacing: 0.02em;
}

.pl-chip.new {
    background: var(--pl-green-soft);
    color: var(--pl-green);
}

.pl-product-body h3 { margin: 0 0 5px; font-size: 0.98rem; font-weight: 700; }
.pl-product-body .pl-desc { margin: 0 0 12px; font-size: 0.875rem; color: var(--pl-muted); line-height: 1.5; }

.pl-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.pl-price-label { font-size: 0.75rem; color: var(--pl-muted); font-weight: 500; }
.pl-price { font-size: 1.1rem; font-weight: 800; color: var(--pl-ink); letter-spacing: -0.02em; }

/* =============================================================
   LOYALTY
   ============================================================= */
.pl-loy-split {
    display: grid;
    gap: 24px;
    align-items: start;
}

@media (min-width: 900px) { .pl-loy-split { grid-template-columns: 1.1fr 0.9fr; } }

.pl-loy-main {
    background: var(--pl-white);
    border: 1px solid var(--pl-line);
    border-radius: var(--pl-radius-lg);
    padding: 30px 28px;
    box-shadow: var(--pl-shadow-sm);
}

.pl-loy-main h3 { margin: 0 0 12px; font-size: 1.25rem; font-weight: 800; }
.pl-loy-main p  { margin: 0 0 20px; font-size: 0.96rem; color: var(--pl-muted); line-height: 1.65; }

.pl-loy-points {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: grid;
    gap: 10px;
}

.pl-loy-points li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.93rem;
    color: var(--pl-ink-soft);
}

.pl-loy-points li::before {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--pl-green-soft);
    border: 2px solid var(--pl-green);
    flex-shrink: 0;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='2,5 4,7.5 8,2.5' stroke='%230d8a5a' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

.pl-loy-metrics {
    display: grid;
    gap: 12px;
}

.pl-loy-metric {
    background: var(--pl-dark-bg);
    border-radius: var(--pl-radius);
    padding: 18px 20px;
    color: var(--pl-white);
}

.pl-loy-metric-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 6px;
    display: block;
}

.pl-loy-metric-val {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.92);
    display: block;
}

.pl-loy-metric-sub {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    margin-top: 3px;
    display: block;
}

/* =============================================================
   PROMOS — dark band
   ============================================================= */
.pl-promo-dark {
    padding: clamp(56px, 7vw, 88px) clamp(16px, 4vw, 40px);
    background: linear-gradient(140deg, #0a0f1e 0%, #0f1729 55%, #0d1430 100%);
    position: relative;
    overflow: hidden;
}

.pl-promo-dark::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -80px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(36, 85, 214, 0.1), transparent 70%);
    pointer-events: none;
}

.pl-promo-dark::after {
    content: "";
    position: absolute;
    bottom: -60px;
    right: -40px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08), transparent 70%);
    pointer-events: none;
}

.pl-promo-inner {
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pl-promo-dark .pl-section-head h2 { color: var(--pl-white); }
.pl-promo-dark .pl-section-head p  { color: rgba(255,255,255,0.55); }

.pl-promo-cards {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    margin-top: 32px;
}

.pl-promo-card {
    background: var(--pl-dark-surface);
    border: 1px solid var(--pl-dark-line);
    border-radius: var(--pl-radius-lg);
    padding: 24px 22px;
    transition: background var(--pl-transition), border-color var(--pl-transition);
}

.pl-promo-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(36, 85, 214, 0.35);
}

.pl-promo-card-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #93bbff;
    background: rgba(36, 85, 214, 0.15);
    border: 1px solid rgba(36, 85, 214, 0.25);
    padding: 3px 9px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.pl-promo-card h3 { margin: 0 0 8px; font-size: 1.02rem; font-weight: 700; color: rgba(255,255,255,0.92); }
.pl-promo-card p  { margin: 0; font-size: 0.875rem; color: rgba(255,255,255,0.48); line-height: 1.6; }

/* =============================================================
   TRACKING — status pipeline
   ============================================================= */
.pl-pipeline-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
}

.pl-pipeline {
    display: flex;
    gap: 0;
    align-items: center;
    min-width: max-content;
}

.pl-pipe-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
}

.pl-pipe-step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: calc(50% + 20px);
    top: 20px;
    height: 2px;
    width: calc(100% - 40px);
    background: linear-gradient(90deg, var(--pl-accent-soft), var(--pl-line));
}

.pl-pipe-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--pl-white);
    border: 2px solid var(--pl-line-med);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--pl-muted);
    position: relative;
    z-index: 1;
    transition: background var(--pl-transition), border-color var(--pl-transition);
}

.pl-pipe-step.active .pl-pipe-dot {
    background: var(--pl-accent);
    border-color: var(--pl-accent);
    color: var(--pl-white);
    box-shadow: 0 0 0 5px var(--pl-accent-soft);
}

.pl-pipe-step.done .pl-pipe-dot {
    background: var(--pl-green-soft);
    border-color: var(--pl-green);
    color: var(--pl-green);
}

.pl-pipe-step.cancel .pl-pipe-dot {
    background: rgba(220,38,38,0.08);
    border-color: rgba(220,38,38,0.3);
    color: #dc2626;
}

.pl-pipe-label {
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--pl-muted);
    text-align: center;
    max-width: 96px;
    line-height: 1.3;
    padding: 0 6px;
}

.pl-pipe-step.active .pl-pipe-label { color: var(--pl-accent); font-weight: 700; }
.pl-pipe-step.done   .pl-pipe-label { color: var(--pl-green); }

/* =============================================================
   AREAS — customer + admin
   ============================================================= */
.pl-area-grid {
    display: grid;
    gap: 20px;
}

@media (min-width: 880px) { .pl-area-grid { grid-template-columns: 1fr 1fr; } }

.pl-area-card {
    border-radius: var(--pl-radius-lg);
    padding: 30px 28px;
    box-shadow: var(--pl-shadow);
    border: 1px solid var(--pl-line);
    background: var(--pl-white);
    transition: box-shadow var(--pl-transition);
}

.pl-area-card:hover { box-shadow: var(--pl-shadow-lg); }

.pl-area-card.dark {
    background: var(--pl-dark-bg);
    border-color: var(--pl-dark-line);
    color: var(--pl-white);
}

.pl-area-card h3 { margin: 0 0 10px; font-size: 1.25rem; font-weight: 800; }
.pl-area-card p  { margin: 0 0 18px; font-size: 0.95rem; color: var(--pl-muted); line-height: 1.65; }
.pl-area-card.dark p { color: rgba(255,255,255,0.5); }

.pl-feature-list {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: grid;
    gap: 9px;
}

.pl-feature-list li {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    font-size: 0.9rem;
    color: var(--pl-ink-soft);
}

.pl-area-card.dark .pl-feature-list li { color: rgba(255,255,255,0.7); }

.pl-feature-list li::before {
    content: "→";
    color: var(--pl-accent);
    font-weight: 800;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.pl-area-card.dark .pl-feature-list li::before { color: #93bbff; }

/* =============================================================
   AUTOMATION — 3-col feature
   ============================================================= */
.pl-auto-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    margin-top: 32px;
}

.pl-auto-item {
    padding: 22px 20px;
    background: var(--pl-surface);
    border: 1px solid var(--pl-line);
    border-radius: var(--pl-radius);
    transition: background var(--pl-transition);
}

.pl-auto-item:hover { background: var(--pl-surface-2); }

.pl-auto-num {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: var(--pl-accent-soft);
    color: var(--pl-accent);
    font-size: 0.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.pl-auto-item h3 { margin: 0 0 6px; font-size: 0.98rem; font-weight: 700; }
.pl-auto-item p  { margin: 0; font-size: 0.875rem; color: var(--pl-muted); line-height: 1.55; }

/* =============================================================
   CTA BAND
   ============================================================= */
.pl-cta-band {
    padding: clamp(64px, 8vw, 96px) clamp(16px, 4vw, 40px);
    background: linear-gradient(130deg, var(--pl-accent) 0%, #4f46e5 55%, #6366f1 100%);
    position: relative;
    overflow: hidden;
}

.pl-cta-band::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    pointer-events: none;
}

.pl-cta-band-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.pl-cta-band .pl-eyebrow {
    color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.2);
}

.pl-cta-band .pl-eyebrow::before { background: rgba(255,255,255,0.7); }

.pl-cta-band h2 {
    margin: 0 0 14px;
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--pl-white);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.pl-cta-band p {
    margin: 0 0 32px;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.65;
}

.pl-cta-band .btn-primary {
    background: var(--pl-white);
    border-color: var(--pl-white);
    color: var(--pl-accent);
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

.pl-cta-band .btn-primary:hover {
    background: var(--pl-surface);
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.25);
}

.pl-cta-band .btn-secondary {
    border-color: rgba(255,255,255,0.35);
    color: var(--pl-white);
    background: rgba(255,255,255,0.1);
}

.pl-cta-band .btn-secondary:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.55);
}

.pl-center-actions { justify-content: center; }

/* =============================================================
   LOCATION
   ============================================================= */
.pl-location-grid {
    display: grid;
    gap: 28px;
    align-items: start;
}

@media (min-width: 880px) {
    .pl-location-grid { grid-template-columns: 1fr 1fr; }
}

.pl-loc-facts {
    display: grid;
    gap: 16px;
    margin-bottom: 24px;
}

.pl-loc-fact h4 {
    margin: 0 0 4px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--pl-muted);
}

.pl-loc-fact p { margin: 0; font-size: 0.93rem; color: var(--pl-ink-soft); line-height: 1.55; }
.pl-loc-fact a { color: var(--pl-accent); text-decoration: none; }
.pl-loc-fact a:hover { text-decoration: underline; }

.pl-loc-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.pl-map-frame {
    border-radius: var(--pl-radius-lg);
    overflow: hidden;
    background: var(--pl-surface-2);
    box-shadow: var(--pl-shadow);
    border: 1px solid var(--pl-line);
    min-height: 300px;
}

.pl-map-frame iframe {
    display: block;
    width: 100%;
    height: 360px;
    border: 0;
}

.pl-map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 280px;
    padding: 32px;
    text-align: center;
    color: var(--pl-muted);
    font-size: 0.9rem;
}

/* =============================================================
   FOOTER
   ============================================================= */
.pl-footer {
    border-top: 1px solid var(--pl-line);
    background: var(--pl-ink);
    color: rgba(255,255,255,0.7);
}

.pl-footer-top {
    display: grid;
    gap: 40px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 56px clamp(16px,4vw,40px) 48px;
    grid-template-columns: 1fr;
}

@media (min-width: 800px) {
    .pl-footer-top { grid-template-columns: 1.4fr repeat(3, 1fr); }
}

.pl-footer-brand-col {}

.pl-footer-brand-name {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.pl-footer-brand-name .pl-brand-mark {
    width: 32px;
    height: 32px;
    box-shadow: none;
}

.pl-footer-brand-name strong {
    font-size: 1rem;
    font-weight: 800;
    color: var(--pl-white);
    letter-spacing: -0.02em;
}

.pl-footer-tagline {
    font-size: 0.88rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.4);
    margin-bottom: 24px;
    max-width: 28ch;
}

.pl-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pl-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 700;
    transition: background var(--pl-transition), color var(--pl-transition);
}

.pl-footer-social a:hover {
    background: var(--pl-accent);
    border-color: var(--pl-accent);
    color: var(--pl-white);
}

.pl-footer-col h3 {
    margin: 0 0 16px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--pl-white);
}

.pl-footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }

.pl-footer-col a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color var(--pl-transition);
}

.pl-footer-col a:hover { color: rgba(255,255,255,0.9); }

.pl-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 18px clamp(16px,4vw,40px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    max-width: 1180px;
    margin: 0 auto;
}

.pl-footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

.pl-footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
}

.pl-footer-legal a {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    text-decoration: underline;
    text-decoration-color: rgba(255,255,255,0.12);
    transition: color var(--pl-transition);
}

.pl-footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* =============================================================
   INNER PAGES
   ============================================================= */
.pl-page-hero {
    padding: clamp(48px, 6vw, 72px) clamp(16px, 4vw, 40px);
    background: linear-gradient(160deg, var(--pl-surface-2) 0%, var(--pl-surface) 100%);
    border-bottom: 1px solid var(--pl-line);
}

.pl-page-hero-inner { max-width: 900px; margin: 0 auto; }
.pl-page-title { margin: 0 0 12px; font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -0.025em; }
.pl-page-lead  { margin: 0; font-size: 1.05rem; color: var(--pl-muted); line-height: 1.65; }

.pl-page-block { padding: clamp(36px,5vw,56px) clamp(16px,4vw,40px); }
.pl-prose { max-width: 760px; margin: 0 auto; }
.pl-block-title { margin: 0 0 10px; font-size: 1.2rem; font-weight: 700; }
.pl-block-text  { margin: 0 0 14px; color: var(--pl-muted); line-height: 1.65; }
.pl-block-list  { padding-left: 1.1rem; color: var(--pl-muted); line-height: 1.65; }
.pl-block-list li { margin-bottom: 7px; }
.pl-block-cta { margin-top: 20px; }

/* =============================================================
   UTILITIES
   ============================================================= */
.pl-cta-gap   { margin-top: 20px; }
.pl-heading-gap-sm { margin-top: 10px; }
.pl-btn-gap-sm { margin-top: 16px; display: inline-flex; }
.pl-eyebrow-on-dark { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.18); color: rgba(255,255,255,0.8); }
.pl-eyebrow-on-dark::before { background: rgba(255,255,255,0.7); }

/* =============================================================
   CATALOG HERO
   ============================================================= */
.pl-cat-hero {
    padding: clamp(56px, 7vw, 80px) clamp(16px, 4vw, 40px) clamp(48px, 6vw, 72px);
    background:
        radial-gradient(ellipse 70% 55% at 0% 0%,  rgba(36, 85, 214, 0.11), transparent 55%),
        radial-gradient(ellipse 50% 40% at 100% 100%, rgba(99, 102, 241, 0.08), transparent 50%),
        linear-gradient(160deg, #0d111c 0%, #0f1729 55%, #0a0f1e 100%);
    color: var(--pl-white);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* decorative mesh pattern */
.pl-cat-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(36,85,214,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(36,85,214,0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    -webkit-mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, black 20%, transparent 80%);
    mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, black 20%, transparent 80%);
}

.pl-cat-hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 960px) {
    .pl-cat-hero-inner { grid-template-columns: 1.2fr 0.8fr; }
}

.pl-cat-hero .pl-eyebrow {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.75);
}
.pl-cat-hero .pl-eyebrow::before { background: rgba(255,255,255,0.6); }

.pl-cat-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.08;
    color: var(--pl-white);
}

.pl-cat-hero h1 em {
    font-style: normal;
    background: linear-gradient(90deg, #93bbff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pl-cat-hero .pl-hero-lead { color: rgba(255,255,255,0.58); max-width: 52ch; }

.pl-cat-hero .btn-primary {
    background: var(--pl-white);
    border-color: var(--pl-white);
    color: var(--pl-accent);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.pl-cat-hero .btn-primary:hover {
    background: var(--pl-surface);
    transform: translateY(-1px);
}

.pl-cat-hero .btn-secondary {
    border-color: rgba(255,255,255,0.25);
    color: var(--pl-white);
    background: rgba(255,255,255,0.07);
}

.pl-cat-hero .btn-secondary:hover {
    background: rgba(255,255,255,0.13);
    border-color: rgba(255,255,255,0.4);
}

/* KPI panel inside dark hero */
.pl-cat-kpi {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--pl-radius-xl);
    padding: 24px;
    backdrop-filter: blur(12px);
}

.pl-cat-kpi .pl-kpi-row > span  { color: rgba(255,255,255,0.5); }
.pl-cat-kpi .pl-kpi-row > strong { color: rgba(255,255,255,0.92); }
.pl-cat-kpi .pl-kpi-row { border-bottom-color: rgba(255,255,255,0.07); }

/* =============================================================
   CATALOG LAYOUT — filter + grid
   ============================================================= */
.pl-cat-layout {
    display: grid;
    gap: 28px;
    align-items: start;
    max-width: 1180px;
    margin: 0 auto;
}

@media (min-width: 960px) {
    .pl-cat-layout { grid-template-columns: 240px 1fr; }
}

/* Sidebar filter */
.pl-cat-sidebar {}

.pl-sidebar-card {
    background: var(--pl-white);
    border: 1px solid var(--pl-line);
    border-radius: var(--pl-radius-lg);
    padding: 20px;
    box-shadow: var(--pl-shadow-sm);
    position: sticky;
    top: 88px;
}

.pl-sidebar-title {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--pl-muted);
    margin: 0 0 14px;
}

.pl-sidebar-cats {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 2px;
}

.pl-sidebar-cats a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 10px;
    border-radius: var(--pl-radius-sm);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--pl-ink-soft);
    transition: background var(--pl-transition), color var(--pl-transition);
}

.pl-sidebar-cats a:hover { background: var(--pl-surface); color: var(--pl-accent); }
.pl-sidebar-cats a.is-active {
    background: var(--pl-accent-softer);
    color: var(--pl-accent);
    font-weight: 700;
}

.pl-sidebar-cats .pl-cat-count-sm {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--pl-muted-light);
    background: var(--pl-surface);
    padding: 2px 6px;
    border-radius: 6px;
    flex-shrink: 0;
}

.pl-sidebar-cats a.is-active .pl-cat-count-sm {
    background: var(--pl-accent-soft);
    color: var(--pl-accent);
}

/* Catalog main area */
.pl-cat-main {}

.pl-cat-toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.pl-cat-toolbar-count {
    font-size: 0.88rem;
    color: var(--pl-muted);
    font-weight: 500;
}

.pl-cat-toolbar-count strong {
    color: var(--pl-ink);
    font-weight: 700;
}

.pl-product-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

/* Product card (grid context) */
.pl-product-card .pl-product-thumb { height: 160px; }

/* Category header band (when filtering by one category) */
.pl-cat-band {
    background: var(--pl-surface);
    border: 1px solid var(--pl-line);
    border-radius: var(--pl-radius-lg);
    padding: 20px 22px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.pl-cat-band h2 { margin: 0 0 4px; font-size: 1.1rem; font-weight: 700; }
.pl-cat-band p  { margin: 0; font-size: 0.9rem; color: var(--pl-muted); }

/* Featured products slim list */
.pl-featured-list {
    display: grid;
    gap: 0;
    border: 1px solid var(--pl-line);
    border-radius: var(--pl-radius-lg);
    overflow: hidden;
    background: var(--pl-white);
    box-shadow: var(--pl-shadow-sm);
    margin-bottom: 28px;
}

.pl-featured-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 13px 18px;
    border-bottom: 1px solid var(--pl-line);
    text-decoration: none;
    color: var(--pl-ink);
    transition: background var(--pl-transition);
}

.pl-featured-row:last-child { border-bottom: 0; }
.pl-featured-row:hover { background: var(--pl-surface); }

.pl-featured-row strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--pl-ink);
    margin-bottom: 2px;
}

.pl-featured-row span.sub {
    font-size: 0.8rem;
    color: var(--pl-muted);
}

.pl-featured-row .pl-price { font-size: 0.95rem; flex-shrink: 0; }

/* =============================================================
   PRODUCT DETAIL PAGE
   ============================================================= */
.pl-product-detail {
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(36px, 5vw, 60px) clamp(16px, 4vw, 40px);
    display: grid;
    gap: 40px;
    align-items: start;
}

@media (min-width: 900px) {
    .pl-product-detail { grid-template-columns: 1fr 1.1fr; }
}

.pl-product-gallery {
    border-radius: var(--pl-radius-xl);
    overflow: hidden;
    background: linear-gradient(145deg, var(--pl-surface-2), var(--pl-surface));
    border: 1px solid var(--pl-line);
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pl-product-gallery::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(36, 85, 214, 0.04), transparent 60%);
}

.pl-product-gallery-icon {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    background: rgba(255,255,255,0.85);
    box-shadow: 0 16px 48px rgba(13,17,28,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.pl-product-gallery-icon::before {
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--pl-accent-soft);
}

.pl-product-info {}

.pl-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    margin-bottom: 16px;
}

.pl-breadcrumb a, .pl-breadcrumb span {
    font-size: 0.8rem;
    color: var(--pl-muted);
    text-decoration: none;
    transition: color var(--pl-transition);
}

.pl-breadcrumb a:hover { color: var(--pl-accent); }

.pl-breadcrumb-sep {
    color: var(--pl-line-med);
    font-size: 0.8rem;
}

.pl-product-info h1 {
    margin: 0 0 10px;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.12;
}

.pl-product-info .pl-product-lead {
    margin: 0 0 20px;
    font-size: 1.02rem;
    color: var(--pl-muted);
    line-height: 1.65;
}

.pl-product-price-block {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--pl-line);
}

.pl-product-price-label { font-size: 0.82rem; color: var(--pl-muted); font-weight: 500; }

.pl-product-price-val {
    font-size: 2rem;
    font-weight: 800;
    color: var(--pl-ink);
    letter-spacing: -0.035em;
    line-height: 1;
}

.pl-product-attrs {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: grid;
    gap: 8px;
}

.pl-product-attrs li {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    font-size: 0.9rem;
    padding: 10px 0;
    border-bottom: 1px solid var(--pl-line);
}

.pl-product-attrs li:last-child { border-bottom: 0; }
.pl-product-attrs .attr-label { color: var(--pl-muted); font-weight: 500; }
.pl-product-attrs .attr-val   { font-weight: 600; color: var(--pl-ink); text-align: right; }

.pl-product-ctas { display: flex; flex-wrap: wrap; gap: 10px; }

/* Related products */
.pl-related { max-width: 1180px; margin: 0 auto; padding: 0 clamp(16px,4vw,40px) clamp(48px,6vw,72px); }
.pl-related h2 { margin: 0 0 20px; font-size: 1.2rem; font-weight: 700; }

/* Mobile nav */
.pl-mm-link {
    display: block;
    padding: 13px 0;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--pl-ink);
    text-decoration: none;
    border-bottom: 1px solid var(--pl-line);
}

.pl-mm-link:hover { color: var(--pl-accent); }
