/* Prochem Featured Products — isolated styles */
.pfp-section,
.pfp-section * { box-sizing: border-box; }

.pfp-section {
    --pfp-navy: #173b56;
    --pfp-teal: #0b7f82;
    --pfp-aqua: #4fb2c0;
    --pfp-steel: #5d91a5;
    --pfp-ink: #263b49;
    --pfp-muted: #647781;
    --pfp-line: #d9e6ea;
    --pfp-soft: #f3f9fb;
    width: 100%;
    max-width: 100%;
    padding: 34px 20px 64px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
    color: var(--pfp-ink);
    font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
}

.pfp-container { width: min(1240px, 100%); margin: 0 auto; }

.pfp-section-head { max-width: 760px; margin: 0 auto 24px; text-align: center; }
.pfp-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 15px;
    border: 1px solid #b7dadd;
    border-radius: 999px;
    background: #ecf8f8;
    color: var(--pfp-teal);
    font-size: 12px;
    line-height: 1;
    font-weight: 650;
    letter-spacing: .08em;
}
.pfp-section-head h2 {
    margin: 14px 0 8px;
    color: var(--pfp-navy);
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.12;
    font-weight: 650;
    letter-spacing: -.025em;
}
.pfp-title-rule {
    display: block;
    width: 48px;
    height: 3px;
    margin: 12px auto 15px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--pfp-teal), var(--pfp-aqua), var(--pfp-steel));
}
.pfp-section-head p {
    margin: 0;
    color: var(--pfp-muted);
    font-size: 16px;
    line-height: 1.65;
    font-weight: 400;
}

.pfp-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    margin: 0 0 24px;
    overflow-x: auto;
    scrollbar-width: none;
}
.pfp-tabs::-webkit-scrollbar { display: none; }
.pfp-tab {
    appearance: none;
    flex: 0 0 auto;
    min-height: 42px;
    padding: 10px 18px;
    border: 1px solid #cbdce2;
    border-radius: 999px;
    background: #fff;
    color: #416071;
    font: inherit;
    font-size: 14px;
    line-height: 1;
    font-weight: 550;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.pfp-tab:hover { border-color: #8bbbc3; color: var(--pfp-teal); transform: translateY(-1px); }
.pfp-tab.is-active {
    border-color: var(--pfp-teal);
    background: linear-gradient(135deg, var(--pfp-teal), var(--pfp-steel));
    color: #fff;
    box-shadow: 0 8px 18px rgba(20, 101, 116, .16);
}

.pfp-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
.pfp-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--pfp-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(35, 69, 84, .07);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.pfp-card:hover {
    transform: translateY(-4px);
    border-color: #b7d5dc;
    box-shadow: 0 14px 34px rgba(35, 69, 84, .12);
}
.pfp-card[hidden] { display: none !important; }

.pfp-card-media {
    position: relative;
    height: 236px;
    padding: 18px;
    background: linear-gradient(145deg, #fbfdfe, #eef6f8);
    border-bottom: 1px solid #e8f0f2;
}
.pfp-image-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}
.pfp-product-image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    mix-blend-mode: multiply;
}
.pfp-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    max-width: calc(100% - 28px);
    padding: 6px 10px;
    overflow: hidden;
    border: 1px solid #b9d8dc;
    border-radius: 999px;
    background: rgba(236, 248, 248, .94);
    color: var(--pfp-teal);
    font-size: 11px;
    line-height: 1;
    font-weight: 650;
    letter-spacing: .04em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pfp-card-body { display: flex; flex-direction: column; min-height: 250px; padding: 19px 18px 18px; }
.pfp-category {
    display: block;
    margin: 0 0 8px;
    color: var(--pfp-steel);
    font-size: 12px;
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: .035em;
    text-transform: uppercase;
}
.pfp-card h3 { margin: 0 0 10px; font-size: 18px; line-height: 1.35; font-weight: 620; }
.pfp-card h3 a { color: var(--pfp-navy); text-decoration: none; }
.pfp-card h3 a:hover { color: var(--pfp-teal); }
.pfp-description {
    margin: 0 0 18px;
    color: var(--pfp-muted);
    font-size: 13.5px;
    line-height: 1.55;
    font-weight: 400;
}
.pfp-card-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 9px;
    margin-top: auto;
}
.pfp-details,
.pfp-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 0;
    min-height: 41px;
    padding: 9px 10px;
    border-radius: 8px;
    font-size: 12.5px;
    line-height: 1.2;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.pfp-details {
    border: 1px solid #bed2da;
    background: #fff;
    color: var(--pfp-navy);
}
.pfp-details:hover { border-color: var(--pfp-steel); background: var(--pfp-soft); color: var(--pfp-teal); transform: translateY(-1px); }
.pfp-quote {
    border: 1px solid var(--pfp-teal);
    background: linear-gradient(135deg, var(--pfp-teal), var(--pfp-steel));
    color: #fff;
}
.pfp-quote:hover { color: #fff; filter: brightness(.96); transform: translateY(-1px); }
.pfp-details svg,
.pfp-quote svg,
.pfp-view-all svg {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pfp-view-all-wrap { margin-top: 30px; text-align: center; }
.pfp-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 10px 20px;
    border: 1px solid #a9c7d1;
    border-radius: 9px;
    background: #fff;
    color: var(--pfp-navy);
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 5px 16px rgba(35, 69, 84, .06);
}
.pfp-view-all:hover { border-color: var(--pfp-teal); color: var(--pfp-teal); }

@media (max-width: 1100px) {
    .pfp-section { padding: 36px 24px 56px; }
    .pfp-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
    .pfp-card-media { height: 250px; }
}

@media (max-width: 767px) {
    .pfp-section { padding: 30px 16px 46px; }
    .pfp-section-head { margin-bottom: 24px; }
    .pfp-section-head h2 { margin-top: 12px; font-size: 30px; }
    .pfp-section-head p { font-size: 14px; line-height: 1.6; }
    .pfp-tabs { justify-content: flex-start; margin: 0 -2px 24px; padding: 2px; }
    .pfp-tab { min-height: 39px; padding: 9px 14px; font-size: 13px; }
    .pfp-grid {
        display: flex;
        gap: 14px;
        margin: 0 -16px;
        padding: 2px 16px 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    .pfp-grid::-webkit-scrollbar { display: none; }
    .pfp-card {
        flex: 0 0 min(84vw, 330px);
        scroll-snap-align: start;
    }
    .pfp-card-media { height: 224px; }
    .pfp-card-body { min-height: 232px; padding: 17px 16px 16px; }
    .pfp-card h3 { font-size: 17px; }
    .pfp-card-actions { grid-template-columns: 1fr 1fr; }
    .pfp-details, .pfp-quote { min-height: 40px; font-size: 12px; }
    .pfp-view-all-wrap { margin-top: 22px; }
}

@media (max-width: 390px) {
    .pfp-card-actions { grid-template-columns: 1fr; }
}

/* v1.0.1 enquiry CTA */
.pfp-cta {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    margin-top: 34px;
    padding: 25px 28px;
    border: 1px solid #c8e0e5;
    border-radius: 16px;
    background: linear-gradient(135deg, #effafa 0%, #eef7fb 100%);
    box-shadow: 0 8px 26px rgba(35, 69, 84, .07);
}
.pfp-cta-copy { display: flex; align-items: center; gap: 18px; min-width: 0; }
.pfp-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    flex: 0 0 66px;
    border: 1px solid #c2dde2;
    border-radius: 50%;
    background: #fff;
    color: var(--pfp-teal);
    box-shadow: 0 6px 16px rgba(35, 69, 84, .08);
}
.pfp-cta-icon svg { width: 31px; height: 31px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.pfp-cta-copy h3 { margin: 0 0 5px; color: var(--pfp-navy); font-size: 22px; line-height: 1.25; font-weight: 650; }
.pfp-cta-copy p { margin: 0; color: var(--pfp-muted); font-size: 14px; line-height: 1.55; }
.pfp-cta-actions { display: grid; grid-template-columns: 1.05fr .95fr 1fr; gap: 10px; align-items: stretch; }
.pfp-cta-primary,
.pfp-cta-secondary,
.pfp-cta-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    padding: 10px 14px;
    border-radius: 9px;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 600;
    text-align: center;
    transition: transform .2s ease, border-color .2s ease, filter .2s ease, color .2s ease;
}
.pfp-cta-primary { border: 1px solid var(--pfp-teal); background: linear-gradient(135deg, var(--pfp-teal), var(--pfp-steel)); color: #fff; }
.pfp-cta-secondary { border: 1px solid #a9cad2; background: #fff; color: var(--pfp-teal); }
.pfp-cta-call { justify-content: flex-start; border: 1px solid #b9d1d8; background: rgba(255,255,255,.7); color: var(--pfp-navy); }
.pfp-cta-primary:hover,
.pfp-cta-secondary:hover,
.pfp-cta-call:hover { transform: translateY(-1px); }
.pfp-cta-primary:hover { color: #fff; filter: brightness(.96); }
.pfp-cta-secondary:hover,
.pfp-cta-call:hover { border-color: var(--pfp-teal); color: var(--pfp-teal); }
.pfp-cta-actions svg { width: 18px; height: 18px; flex: 0 0 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.pfp-cta-call small { display: block; color: var(--pfp-muted); font-size: 11px; font-weight: 500; }
.pfp-cta-call strong { display: block; margin-top: 2px; font-size: 12px; white-space: nowrap; }

@media (max-width: 1100px) {
    .pfp-cta { grid-template-columns: 1fr; gap: 20px; }
    .pfp-cta-actions { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
    .pfp-cta { margin-top: 26px; padding: 20px 18px; }
    .pfp-cta-copy { align-items: flex-start; }
    .pfp-cta-icon { width: 52px; height: 52px; flex-basis: 52px; }
    .pfp-cta-icon svg { width: 25px; height: 25px; }
    .pfp-cta-copy h3 { font-size: 19px; }
    .pfp-cta-actions { grid-template-columns: 1fr; }
    .pfp-cta-call { justify-content: center; }
}


/* v1.0.3 — lock section interactions to the Prochem palette.
   These selectors intentionally override theme/Elementor global pink hover rules. */
.pfp-section a,
.pfp-section a:visited,
.pfp-section a:hover,
.pfp-section a:focus,
.pfp-section a:active,
.pfp-section button,
.pfp-section button:hover,
.pfp-section button:focus,
.pfp-section button:active {
    text-decoration: none !important;
}

.pfp-section .pfp-tab:hover,
.pfp-section .pfp-tab:focus-visible {
    border-color: #8bbbc3 !important;
    background: #f3f9fb !important;
    color: var(--pfp-teal) !important;
    box-shadow: 0 0 0 3px rgba(79,178,192,.16) !important;
}
.pfp-section .pfp-tab.is-active,
.pfp-section .pfp-tab.is-active:hover,
.pfp-section .pfp-tab.is-active:focus-visible {
    border-color: var(--pfp-teal) !important;
    background: linear-gradient(135deg, var(--pfp-teal), var(--pfp-steel)) !important;
    color: #fff !important;
    box-shadow: 0 8px 18px rgba(20,101,116,.16) !important;
}

.pfp-section .pfp-image-link,
.pfp-section .pfp-image-link:hover,
.pfp-section .pfp-image-link:focus {
    background: transparent !important;
    color: inherit !important;
}
.pfp-section .pfp-card h3 a,
.pfp-section .pfp-card h3 a:visited {
    background: transparent !important;
    color: var(--pfp-navy) !important;
}
.pfp-section .pfp-card h3 a:hover,
.pfp-section .pfp-card h3 a:focus-visible {
    background: transparent !important;
    color: var(--pfp-teal) !important;
}

.pfp-section .pfp-details,
.pfp-section .pfp-details:visited {
    border-color: #bed2da !important;
    background: #fff !important;
    color: var(--pfp-navy) !important;
}
.pfp-section .pfp-details:hover,
.pfp-section .pfp-details:focus-visible {
    border-color: var(--pfp-steel) !important;
    background: var(--pfp-soft) !important;
    color: var(--pfp-teal) !important;
    box-shadow: 0 0 0 3px rgba(79,178,192,.14) !important;
}

.pfp-section .pfp-quote,
.pfp-section .pfp-quote:visited,
.pfp-section .pfp-quote:hover,
.pfp-section .pfp-quote:focus-visible,
.pfp-section .pfp-cta-primary,
.pfp-section .pfp-cta-primary:visited,
.pfp-section .pfp-cta-primary:hover,
.pfp-section .pfp-cta-primary:focus-visible {
    border-color: var(--pfp-teal) !important;
    background: linear-gradient(135deg, var(--pfp-teal), var(--pfp-steel)) !important;
    color: #fff !important;
}
.pfp-section .pfp-quote:hover,
.pfp-section .pfp-quote:focus-visible,
.pfp-section .pfp-cta-primary:hover,
.pfp-section .pfp-cta-primary:focus-visible {
    filter: brightness(.96) !important;
    box-shadow: 0 0 0 3px rgba(79,178,192,.17) !important;
}

.pfp-section .pfp-view-all,
.pfp-section .pfp-view-all:visited,
.pfp-section .pfp-cta-secondary,
.pfp-section .pfp-cta-secondary:visited,
.pfp-section .pfp-cta-call,
.pfp-section .pfp-cta-call:visited {
    background: #fff !important;
    color: var(--pfp-navy) !important;
}
.pfp-section .pfp-view-all:hover,
.pfp-section .pfp-view-all:focus-visible,
.pfp-section .pfp-cta-secondary:hover,
.pfp-section .pfp-cta-secondary:focus-visible,
.pfp-section .pfp-cta-call:hover,
.pfp-section .pfp-cta-call:focus-visible {
    border-color: var(--pfp-teal) !important;
    background: var(--pfp-soft) !important;
    color: var(--pfp-teal) !important;
    box-shadow: 0 0 0 3px rgba(79,178,192,.14) !important;
}

.pfp-section a:focus-visible,
.pfp-section button:focus-visible {
    outline: 2px solid var(--pfp-aqua) !important;
    outline-offset: 2px !important;
}

/* v1.0.4 — final layout polish */
.pis-section + .pfp-section {
    margin-top: -40px !important;
    padding-top: 20px !important;
}
.pfp-card-media {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 228px;
    padding: 22px 20px 18px;
}
.pfp-image-link { padding: 4px; }
.pfp-product-image,
.pfp-image-link img {
    width: auto !important;
    height: auto !important;
    max-width: 88% !important;
    max-height: 184px !important;
    object-fit: contain !important;
    object-position: center center !important;
}
.pfp-card-body {
    min-height: 272px;
}
.pfp-category {
    min-height: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.pfp-card h3 {
    display: -webkit-box;
    min-height: 49px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.pfp-description {
    display: -webkit-box;
    min-height: 63px;
    max-height: 63px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

@media (max-width:1100px) {
    .pis-section + .pfp-section { margin-top:-30px !important; padding-top:18px !important; }
    .pfp-card-media { height:232px; }
    .pfp-product-image,.pfp-image-link img { max-height:188px !important; }
}
@media (max-width:767px) {
    .pis-section + .pfp-section { margin-top:-20px !important; padding-top:22px !important; }
    .pfp-card-media { height:214px; padding:18px; }
    .pfp-product-image,.pfp-image-link img { max-height:172px !important; max-width:86% !important; }
    .pfp-card-body { min-height:252px; }
    .pfp-description { min-height:61px; max-height:61px; }
}

/* v1.0.5 — stable tab hover/focus without overlapping rings */
.pfp-section .pfp-tab,
.pfp-section .pfp-tab:hover,
.pfp-section .pfp-tab:focus,
.pfp-section .pfp-tab:focus-visible,
.pfp-section .pfp-tab:active {
    transform: none !important;
    outline: none !important;
    box-shadow: none !important;
}
.pfp-section .pfp-tab::before,
.pfp-section .pfp-tab::after {
    content: none !important;
    display: none !important;
}
.pfp-section .pfp-tab:not(.is-active):hover {
    border-color: #8bbbc3 !important;
    background: #f3f9fb !important;
    background-image: none !important;
    color: var(--pfp-teal) !important;
}
.pfp-section .pfp-tab:not(.is-active):focus-visible {
    border-color: var(--pfp-steel) !important;
    background: #f3f9fb !important;
    background-image: none !important;
    color: var(--pfp-teal) !important;
    box-shadow: inset 0 0 0 1px rgba(79,178,192,.55) !important;
}
.pfp-section .pfp-tab.is-active,
.pfp-section .pfp-tab.is-active:hover,
.pfp-section .pfp-tab.is-active:focus,
.pfp-section .pfp-tab.is-active:focus-visible,
.pfp-section .pfp-tab.is-active:active {
    border-color: var(--pfp-teal) !important;
    background: linear-gradient(135deg, var(--pfp-teal), var(--pfp-steel)) !important;
    color: #fff !important;
    transform: none !important;
    outline: none !important;
    box-shadow: none !important;
}



/* v1.0.6 — suppress native blue tap rectangles on phone/tablet without changing desktop keyboard focus. */
.pfp-section :is(a, button, [role="button"]) {
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none;
    touch-action: manipulation;
}
.pfp-section button {
    -webkit-appearance: none;
    appearance: none;
}
@media (hover: none), (pointer: coarse) {
    .pfp-section :is(a, button, [role="button"]),
    .pfp-section :is(a, button, [role="button"]):focus,
    .pfp-section :is(a, button, [role="button"]):focus-visible,
    .pfp-section :is(a, button, [role="button"]):active {
        outline: none !important;
        -webkit-tap-highlight-color: transparent !important;
        box-shadow: none !important;
    }
    .pfp-section :is(.pfp-tab, .pfp-details, .pfp-quote, .pfp-view-all, .pfp-cta-primary, .pfp-cta-secondary, .pfp-cta-call):active {
        transform: none !important;
    }
}
