/* =====================================================
   SECTION 0 — GLOBAL / DESIGN TOKENS
   (base typography + colors shared by every section)
===================================================== */
:root {
    --obsidian: #0A0B0D;
    --surface: #15181C;
    --surface-2: #1D2126;
    --surface-3: #262B31;
    --hairline: #2C3238;
    --steel: #9AA6AE;
    --white: #F3F6F7;
    --red: #D91C1C;
    --red-dim: #A81515;
    --font: 'Barlow', sans-serif;
}

main.nh-body {
    display: block;
    background: var(--obsidian);
    color: var(--white);
    line-height: 1.6;
}

main.nh-body ::selection {
    background: var(--red);
    color: #fff;
}

.nh-body h1,
.nh-body h2,
.nh-body h3,
.nh-body h4,
.nh-body .section-title {
    font-weight: 700;
    margin: 0;
    color: #fff;
    text-transform: uppercase;
}

.nh-body p,
.nh-body span,
.nh-body li {
    color: #c0c8ce;
}

/* Every section is a solid, opaque panel — never lets the page
   background show through. Add .sec-light for the white sections. */
.nh-body section {
    position: relative;
    padding: 40px 0;
}

.nh-body section:not(.sec-light) {
    background: var(--obsidian);
}

@media (max-width: 768px) {
    .nh-body section {
        padding: 2rem 0;
    }
}

.nh-body .eyebrow {
    font-size: 17px;
    text-transform: uppercase;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-weight: 700;
}

.nh-body .eyebrow::before {
    content: "";
    width: 22px;
    height: 1px;
    background: var(--red);
    display: inline-block;
}

.nh-body .text-steel {
    color: var(--steel);
}

/* Reusable "lead paragraph" utility — replaces one-off inline
   max-width/color styles on intro paragraphs under section titles */
.nh-body .section-lead {
    margin-left: auto;
    margin-right: auto;
    color: var(--steel);
}

/* Scroll-reveal (toggled via JS by adding .in when in viewport) */
.nh-body .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .55s ease, transform .55s ease;
}

.nh-body .reveal.in {
    opacity: 1;
    transform: none;
}

/* Light section overrides (used by construction + enquiry form sections) */
.nh-body .sec-light {
    background: #F3F5F7;
    color: #1a1a1a;
    border-top: 1px solid #E3E6E9;
    border-bottom: 1px solid #E3E6E9;
}

.nh-body .sec-light h1,
.nh-body .sec-light h2,
.nh-body .sec-light h3,
.nh-body .sec-light h4,
.nh-body .sec-light .section-title {
    color: #101214;
}

.nh-body .sec-light p,
.nh-body .sec-light span,
.nh-body .sec-light li,
.nh-body .sec-light .text-steel {
    color: #5b6470;
}

.nh-body .sec-light .eyebrow {
    color: var(--red);
}


/* =====================================================
   SECTION 1 — HERO (.pg-hero)
===================================================== */
.pg-hero {
    position: relative;
    width: 100%;
    min-height: 550px;
    background: var(--obsidian);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero-breadcrumb .sep {
    color: rgba(255, 255, 255, .22);
}

.hero-breadcrumb .current {
    color: rgba(255, 255, 255, .78);
    font-weight: 600;
    font-size: 15px;
}

.pg-hero .hero-title {
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

.desktop{
    display: block;
}
.phone{
    display: none;
}

/* H1 (.pg-hero .hero-title): 40px desktop / 32px tablet / 25px phone */
@media (max-width: 768px) {
    .pg-hero .hero-title {
        font-size: 32px;
    }
}

.pg-hero .hero-desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .62);
    max-width: 58ch;
    margin: 0 0 1.8rem;
}

/* Hero — tablet & mobile */
@media (max-width: 768px) {

    .pg-hero,
    .pg-hero .hero-body {
        min-height: auto;
    }

    .pg-hero .hero-body {
        padding: 2rem 0 3rem;
    }

    .pg-hero .hero-tagline {
        font-size: 15px;
    }

    .pg-hero .hero-desc {
        font-size: 15px;
        line-height: 1.6;
    }

    .pg-hero .hero-badges {
        gap: .45rem;
        margin-bottom: 1.5rem;
    }

    .pg-hero .badge-pill {
        font-size: 15px;
        padding: .26rem .7rem;
    }

    .pg-hero .hero-actions {
        gap: .55rem;
    }

    .pg-hero .hero-actions a {
        padding: .72rem 1.15rem;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .pg-hero .hero-title {
        font-size: 25px;
    }
          .phone{
    display: block;
}
.desktop{
    display: none;
}
}

/* =====================================================
   SECTION 2 — STATS BAR (.pg-stat-bar)
===================================================== */
.pg-stat-bar {
    background: #1A1D22;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
}

.pg-stat-bar .pg-stat-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.pg-stat-bar .pg-stat-cell {
    padding: 1.4rem 1.5rem;
    text-align: center;
    border-right: 1px solid var(--hairline);
}

.pg-stat-bar .pg-stat-cell:last-child {
    border-right: none;
}

.pg-stat-bar .pg-stat-num {
    font-size: 28.8px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}

.pg-stat-bar .pg-stat-num span {
    color: var(--red);
    font-size: 17.6px;
}

.pg-stat-bar .pg-stat-label {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: .3rem;
    color: rgba(255, 255, 255, .42);
}

@media (max-width: 768px) {
    .pg-stat-bar .pg-stat-bar-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .pg-stat-bar .pg-stat-cell:nth-child(2n) {
        border-right: none;
    }

    .pg-stat-bar .pg-stat-cell:nth-child(-n+2) {
        border-bottom: 1px solid var(--hairline);
    }
}


/* =====================================================
   SECTION 3 — PRODUCT CARDS (.pp-card)
===================================================== */
.pp-card {
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all .3s cubic-bezier(.16, 1, .3, 1);
}

.pp-card:hover {
    border-color: rgba(217, 28, 28, .35);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .45);
}

.pp-card__visual {
    position: relative;
    aspect-ratio: 4/3;
    background: radial-gradient(circle at 70% 20%, rgba(217, 28, 28, .18), transparent 60%), var(--surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--hairline);
}

.pp-bottle {
    width: 78px;
    height: 150px;
    background: linear-gradient(160deg, #1a1d21, #0d0f11);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    position: relative;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .5);
}

.pp-bottle::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 20px;
    background: #000;
    border-radius: 4px 4px 2px 2px;
    border: 1px solid rgba(255, 255, 255, .15);
}

.pp-bottle .lbl {
    position: absolute;
    inset: 22px 6px;
    background: rgba(217, 28, 28, .12);
    border: 1px solid rgba(217, 28, 28, .4);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pp-bottle .lbl i {
    color: var(--red);
    font-size: 24px;
}

.pp-card__tag {
    position: absolute;
    top: .8rem;
    left: .8rem;
    background: var(--red);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    padding: .28rem .6rem;
    border-radius: 3px;
    z-index: 2;
}

.pp-card__body {
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pp-card__eyebrow {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--red);
}

.pp-card h3 {
    font-size: 20px;
    text-transform: uppercase;
    margin: .3rem 0 .6rem;
    font-style: italic;
}

.pp-card p {
    font-size: 15px;
    line-height: 1.55;
    color: var(--steel);
    margin: 0 0 1.1rem;
    flex-grow: 1;
}

.pp-card__benefits {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-bottom: 1.2rem;
}

.pp-card__benefits span {
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--hairline);
    border-radius: 3px;
    font-size: 15px;
    font-weight: 700;
    padding: .22rem .55rem;
    color: #e6e9ea;
}

.pp-card__link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size:17px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    margin-top: auto;
    padding-top: .5rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.pp-card__link i {
    color: var(--red);
    transition: transform .2s;
}

.pp-card:hover .pp-card__link i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .pp-card {
        transition: transform .12s ease;
    }

    .pp-card:hover {
        transform: none;
    }

    .pp-card:active {
        transform: scale(.97);
    }

    .pp-card__body {
        padding: 1.4rem;
    }
}


/* =====================================================
   SECTION 4 — WHY / FEATURE GRID (.why-grid / .why-card)
===================================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.3rem;
}

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.why-card {
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: 8px;
    padding: 1.6rem 1.4rem;
    text-align: center;
    transition: border-color .2s ease, transform .2s ease;
}

.why-card:hover {
    border-color: rgba(217, 28, 28, .35);
    transform: translateY(-4px);
}

.why-card i {
    font-size: 25.6px;
    color: var(--red);
    margin-bottom: .8rem;
    display: block;
}

.why-card h4 {
    font-size: 15px;
    text-transform: uppercase;
    margin-bottom: .4rem;
}

.why-card p {
    font-size: 15px;
    margin: 0;
    color: var(--steel);
    line-height: 1.5;
}

.sec-light .why-card {
    background: #fff;
    border-color: #E3E6E9;
    box-shadow: 0 6px 20px rgba(16, 18, 20, .05);
}

.sec-light .why-card p {
    color: #5b6470;
}

@media (max-width: 768px) {
    .why-card {
        padding: 1.3rem 1.1rem;
    }

    .why-card:hover {
        transform: none;
    }

    .why-card:active {
        transform: scale(.97);
    }
}


/* =====================================================
   SECTION 5 — BUTTONS (.ug-btn-red / .ug-btn-ghost / .btn-white)
===================================================== */
.ug-btn-red,
.ug-btn-ghost,
.btn-white {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    padding: .82rem 1.7rem;
    border-radius: 4px;
    text-decoration: none;
    transition: .2s ease;
    cursor: pointer;
}

.ug-btn-red {
    background: var(--red);
    border: 1.5px solid var(--red);
    color: #fff;
}

.ug-btn-red:hover {
    background: var(--red-dim);
    border-color: var(--red-dim);
}

.ug-btn-ghost {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, .22);
    color: rgba(255, 255, 255, .85);
}

.ug-btn-ghost:hover {
    border-color: rgba(255, 255, 255, .55);
    color: #fff;
}

.sec-light .ug-btn-ghost {
    border-color: rgba(16, 18, 20, .2);
    color: #101214;
}

.sec-light .ug-btn-ghost:hover {
    border-color: rgba(16, 18, 20, .45);
}

.btn-white {
    background: #fff;
    border: 1.5px solid #fff;
    color: var(--red);
}

.btn-white:hover {
    background: transparent;
    color: #fff;
}


/* =====================================================
   SECTION 6 — CTA BOX (.ug-cta-box)
===================================================== */
.ug-cta-box {
    background: linear-gradient(135deg, var(--red) 0%, #8f0f0f 100%);
    border-radius: 10px;
    padding: 3.5rem 3rem;
    text-align: center;
}

.ug-cta-box h2 {
    font-size: clamp(24px, 3vw, 35.2px);
    text-transform: uppercase;
    color: #fff;
}

.ug-cta-box p {
    color: rgba(255, 255, 255, .82);
    max-width: 55ch;
    margin: .8rem auto 1.8rem;
}

/* Must always read white text, even inside a .sec-light section */
.sec-light .ug-cta-box h2 {
    color: #fff;
}

.sec-light .ug-cta-box p {
    color: rgba(255, 255, 255, .82);
}

.ug-cta-box .ug-btn-ghost {
    border-color: rgba(255, 255, 255, .5);
    color: rgba(255, 255, 255, .9);
}

@media (max-width: 768px) {
    .ug-cta-box {
        padding: 2.2rem 1.5rem;
    }

    .ug-cta-box .d-flex.gap-3.justify-content-center.flex-wrap {
        flex-direction: column;
    }

    .ug-cta-box .d-flex.gap-3.justify-content-center.flex-wrap .btn-white,
    .ug-cta-box .d-flex.gap-3.justify-content-center.flex-wrap .ug-btn-ghost {
        width: 100%;
        justify-content: center;
    }
}


/* =====================================================
   GLOBAL TYPOGRAPHY OVERRIDE
   All section headings (.section-title): 32px desktop / 27px tablet / 22px phone
   All section intro paragraphs (.text-steel / .section-lead): 15px on every breakpoint
   (placed last so it wins over earlier component sizing)
===================================================== */
.nh-body .section-title {
    font-size: 32px !important;
}

.nh-body .text-steel,
.nh-body .section-lead {
    font-size: 17px !important;
}

@media (max-width: 992px) {
    .nh-body .section-title {
        font-size: 27px !important;
    }
}

@media (max-width: 768px) {
    .nh-body .section-title {
        font-size: 22px !important;
    }
}



/* =====================================================
   FAQ SECTION (.faq-*)
   Uses existing tokens: --obsidian, --surface, --hairline, --steel, --red
===================================================== */
.faq-sec {
    background: rgb(245, 244, 244) !important;
}

.faq-header {
    margin: 0 auto 3rem;
    text-align: start;
}

.faq-desc {
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 2.5rem;
    align-items: start;
}

.faq-col {
    display: flex;
    flex-direction: column;
    gap: .9rem;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color .2s ease;
   border: 1px solid rgb(181 168 168);
}
.faq-item span{
    color:black;
    font-size: 18px;
}
.faq-header .faq-heading{
    text-transform: uppercase;
    margin: .7rem 0 .9rem;
    color:black;
}
.faq-header  p{
     color:black;
}

.faq-item.active {
    border-color: rgba(217, 28, 28, .4);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: transparent;
    border: none;
    text-align: left;
    padding: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    cursor: pointer;
    font-family: inherit;
    background-color: white;
    
}

.faq-item.active .faq-question {
    color: var(--red);
}

/* Plus/minus icon built from two bars */
.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(217, 28, 28, .1);
}

.faq-icon span {
    position: absolute;
    background: var(--red);
    border-radius: 1px;
    top: 50%;
    left: 50%;
    transition: transform .25s ease;
}

.faq-icon span:first-child {
    width: 10px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.faq-icon span:last-child {
    width: 2px;
    height: 10px;
    transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon span:last-child {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

/* Answer panel */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-answer-inner {
    padding: 0 1.3rem 1.2rem;
    line-height: 1.6;
    color: #464747;
    background-color: white;
}

/* Responsive: tablet — reduce gap */
@media (max-width: 992px) {
    .faq-grid {
        gap: 0 1.5rem;
    }
}

/* Responsive: mobile — single column, all 10 stacked */
@media (max-width: 768px) {
    .faq-header {
        margin-bottom: 2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: .8rem;
    }

    .faq-col {
        gap: .8rem;
    }

    .faq-question {
        padding: 1rem 1.1rem;
        font-size: 15px;
    }

    .faq-answer-inner {
        padding: 0 1.1rem 1rem;
    }
    .faq-item span {
        font-size: 17px;
    }
}


 
/* =====================================================
   GLOBAL TYPOGRAPHY OVERRIDE — H1 / H2 / P
   h1: 40px desktop / 32px tablet / 25px phone
   h2: 35px desktop / 30px tablet / 23px phone
   p : 17px desktop / 15px phone
   (kept last so it wins over earlier sizing; letter-spacing
   removed from every rule above)
===================================================== */
.nh-body h1 {
    font-size: 40px !important;
}
 
.nh-body h2 {
    font-size: 35px !important;
}
 
.nh-body p {
    font-size: 17px !important;
}
 
@media (max-width: 992px) {
    .nh-body h1 {
        font-size: 32px !important;
    }
 
    .nh-body h2 {
        font-size: 30px !important;
    }
}
 
@media (max-width: 768px) {
    .nh-body h1 {
        font-size: 25px !important;
    }
 
    .nh-body h2 {
        font-size: 23px !important;
    }
 
    .nh-body p {
        font-size: 15px !important;
    }
}


/* =====================================================
   SHARED: Professional Chemistry Product Detail Components
   Used by ResidueX, SlipOn PPF Gel and SpotAway Pro (.chem-detail)
   so the three chemistry sub-pages stay visually consistent.
===================================================== */
.chem-detail .pf-feature {
    padding: 96px 0;
}

@media (max-width: 768px) {
    .chem-detail .pf-feature {
        padding: 64px 0;
    }
}

.chem-detail .pf-feature-grid {
    display: grid;
    grid-template-columns: 48fr 52fr;
    gap: 64px;
    align-items: center;
}

@media (max-width: 992px) {
    .chem-detail .pf-feature-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.chem-detail .pf-feature-media {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
}

.chem-detail .pf-feature-media img {
    width: 100%;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.chem-detail .pf-feature-media .img-badge {
    position: absolute;
    bottom: 1.2rem;
    left: 1.2rem;
    background: var(--red);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    padding: .3rem .75rem;
    border-radius: 3px;
}

.chem-detail .pf-feature-copy p {
    margin-bottom: 1rem;
}

.chem-detail .pf-feature-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
    margin-top: 1.8rem;
}

@media (max-width: 520px) {
    .chem-detail .pf-feature-points {
        grid-template-columns: 1fr;
    }
}

.chem-detail .pf-pt {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
}

.chem-detail .pf-pt-icon {
    width: 32px;
    height: 32px;
    background: rgba(217, 28, 28, .1);
    border: 1px solid rgba(217, 28, 28, .25);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    flex-shrink: 0;
}

.chem-detail .pf-pt-text strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
}

.chem-detail .pf-pt-text span {
    font-size: 15px;
    color: var(--steel);
    line-height: 1.4;
}

.chem-detail .sec-light .pf-pt-text strong {
    color: #101214;
}

.chem-detail .sec-light .pf-pt-text span {
    color: #5b6470;
}

.chem-detail .pf-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-top: 1.7rem;
}

.chem-detail .pf-chip {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: #fff;
    border: 1px solid #E3E6E9;
    border-radius: 20px;
    padding: .36rem .85rem;
    font-size: 15px;
    font-weight: 700;
    color: #101214;
    box-shadow: 0 2px 8px rgba(16, 18, 20, .04);
}

.chem-detail .pf-chip i {
    color: var(--red);
}

.chem-detail .feat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (max-width: 576px) {
    .chem-detail .feat-grid {
        grid-template-columns: 1fr;
    }
}

.chem-detail .feat-item {
    display: flex;
    gap: .7rem;
    align-items: flex-start;
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: 6px;
    padding: .9rem 1.1rem;
}

.chem-detail .feat-item i {
    color: var(--red);
    margin-top: .25rem;
    flex-shrink: 0;
}

.chem-detail .feat-item span {
    font-size: 15px;
    color: #e6e9ea;
    line-height: 1.4;
}

.chem-detail .sec-light .feat-item {
    background: #fff;
    border-color: #E3E6E9;
}

.chem-detail .sec-light .feat-item span {
    color: #3a3f45;
}

.chem-detail .dir-step {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--hairline);
}

.chem-detail .dir-step:last-child {
    border-bottom: none;
}

.chem-detail .dir-num {
    width: 34px;
    height: 34px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
}

.chem-detail .dir-step p {
    margin: 0;
    padding-top: .35rem;
}

.chem-detail .sec-light .dir-step {
    border-color: #E3E6E9;
}

.chem-detail .dilution-box {
    background: var(--surface);
    border: 1.5px dashed var(--hairline);
    border-radius: 8px;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.chem-detail .dilution-box span {
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--steel);
}

.chem-detail .dilution-box strong {
    font-size: 25.6px;
    font-weight: 900;
    color: var(--red);
}

.chem-detail .sec-light .dilution-box {
    background: #fff;
    border-color: #E3E6E9;
}

.chem-detail .note-box {
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--hairline);
    border-radius: 8px;
    padding: 1.1rem 1.3rem;
    margin-top: 1.2rem;
    font-size: 15px;
    line-height: 1.55;
}

.chem-detail .note-box strong {
    color: #fff;
}

.chem-detail .sec-light .note-box {
    background: #fff;
    border-color: #E3E6E9;
}

.chem-detail .precaution-box {
    background: rgba(217, 28, 28, .06);
    border: 1px solid rgba(217, 28, 28, .25);
    border-radius: 8px;
    padding: 1.6rem 1.7rem;
}

.chem-detail .precaution-box h4 {
    color: var(--red);
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.chem-detail .precaution-box ul {
    margin: 0;
    padding-left: 1.2rem;
}

.chem-detail .precaution-box li {
    font-size: 15px;
    margin-bottom: .5rem;
    line-height: 1.5;
}

.chem-detail .sec-light .precaution-box {
    background: rgba(217, 28, 28, .04);
    border-color: rgba(217, 28, 28, .2);
}

.chem-detail .sec-light .precaution-box li {
    color: #5b6470;
}

.chem-detail .bestfor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 768px) {
    .chem-detail .bestfor-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.chem-detail .bestfor-item {
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: 8px;
    padding: 1.4rem 1rem;
}

.chem-detail .bestfor-item i {
    font-size: 24px;
    color: var(--red);
    margin-bottom: .6rem;
    display: block;
}

.chem-detail .bestfor-item span {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    color: #e6e9ea;
}

.chem-detail .sec-light .bestfor-item {
    background: #fff;
    border-color: #E3E6E9;
    box-shadow: 0 6px 20px rgba(16, 18, 20, .05);
}

.chem-detail .sec-light .bestfor-item span {
    color: #101214;
}

.chem-detail .avail-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
    border: 1px dashed var(--hairline);
    border-radius: 8px;
    padding: 1.2rem;
    flex-wrap: wrap;
}

.chem-detail .avail-strip strong {
    font-size: 15px;
    text-transform: uppercase;
    color: var(--steel);
    width: 100%;
    text-align: center;
    margin-bottom: .3rem;
}

.chem-detail .avail-strip span {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.chem-detail .avail-strip i {
    color: var(--red);
}

.chem-detail .sec-light .avail-strip {
    border-color: #D8DCE1;
}

.chem-detail .sec-light .avail-strip strong {
    color: #5b6470;
}

.chem-detail .sec-light .avail-strip span {
    color: #101214;
}

.chem-detail .ba-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 576px) {
    .chem-detail .ba-wrap {
        grid-template-columns: 1fr;
    }
}

.chem-detail .ba-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--hairline);
    aspect-ratio: 4/3;
}

.chem-detail .ba-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chem-detail .ba-item.after img {
    filter: saturate(1.15) brightness(1.05);
}

.chem-detail .ba-tag {
    position: absolute;
    top: .6rem;
    left: .6rem;
    background: var(--red);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    padding: .28rem .65rem;
    border-radius: 3px;
    z-index: 2;
}

.chem-detail .sec-light .ba-item {
    border-color: #E3E6E9;
}

.chem-detail .pf-faq-item {
    border-bottom: 1px solid var(--hairline);
}

.chem-detail .pf-faq-item:last-child {
    border-bottom: none;
}

.chem-detail .pf-faq-q {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.3rem 0;
    cursor: pointer;
    text-align: left;
}

.chem-detail .pf-faq-q span {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
}

.chem-detail .pf-faq-q i {
    color: var(--red);
    transition: transform .25s;
    flex-shrink: 0;
}

.chem-detail .pf-faq-item.open .pf-faq-q i {
    transform: rotate(45deg);
}

.chem-detail .pf-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.chem-detail .pf-faq-item.open .pf-faq-a {
    max-height: 320px;
}

.chem-detail .pf-faq-a-inner {
    padding-bottom: 1.3rem;
    font-size: 15px;
    line-height: 1.7;
    color: var(--steel);
}

/* END SHARED: Professional Chemistry Product Detail Components */


/* =====================================================
   PAGE: Tools & Accessories (tools-and-accessories)
===================================================== */
.tools-accessories .cat-jump {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tools-accessories .cat-jump a {
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--hairline);
    color: var(--steel);
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    padding: .6rem 1.3rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all .2s;
}

.tools-accessories .cat-jump a:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

.tools-accessories .sec-light .cat-jump a {
    background: #fff;
    border-color: #E3E6E9;
    color: #5b6470;
}

.tools-accessories .sec-light .cat-jump a:hover {
    background: var(--red);
    color: #fff;
}

.tools-accessories .cat-head {
    margin-bottom: 2.5rem;
}

.tools-accessories .cat-head .cat-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 2px solid var(--red);
    border-radius: 50%;
    color: var(--red);
    font-weight: 900;
    font-size: 15px;
    margin-right: .7rem;
}

.tools-accessories .cat-head h2 {
    display: inline;
    vertical-align: middle;
}

.tools-accessories .cat-head p {
    margin-top: .8rem;
    max-width: 75ch;
}

.tools-accessories .sec-light .cat-head .cat-num {
    color: var(--red);
}

.tools-accessories .tool-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem;
}

@media (max-width: 1100px) {
    .tools-accessories .tool-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .tools-accessories .tool-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .tools-accessories .tool-grid {
        grid-template-columns: 1fr;
    }
}

.tools-accessories .tool-card {
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all .3s cubic-bezier(.16, 1, .3, 1);
}

.tools-accessories .tool-card:hover {
    border-color: rgba(217, 28, 28, .35);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .45);
}

.tools-accessories .tool-card__media {
    aspect-ratio: 1/1;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: .6rem;
}

.tools-accessories .tool-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .5s ease;
}

.tools-accessories .tool-card:hover .tool-card__media img {
    transform: scale(1.06);
}

.tools-accessories .tool-card__body {
    padding: 1.1rem 1.2rem 1.3rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tools-accessories .tool-card__tag {
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--red);
    display: block;
    margin-bottom: .35rem;
}

.tools-accessories .tool-card h3 {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: .45rem;
    line-height: 1.25;
    color: #fff;
    font-weight: 700;
}

.tools-accessories .tool-card p {
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

.tools-accessories .sec-light .tool-card {
    background: #fff;
    border-color: #E3E6E9;
    box-shadow: 0 6px 20px rgba(16, 18, 20, .05);
}

.tools-accessories .sec-light .tool-card__media {
    background: #fafbfc;
    border-bottom: 1px solid #E3E6E9;
}

.tools-accessories .sec-light .tool-card h3 {
    color: #101214;
}

.tools-accessories .sec-light .tool-card p {
    color: #5b6470;
}
/* END PAGE: Tools & Accessories */


/* =====================================================
   PAGE: Carbon Tint (carbon-tint)
===================================================== */
.carbon-tint .split-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 900px) {
    .carbon-tint .split-2 {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.carbon-tint .split-media img {
    width: 100%;
    border-radius: 8px;
    display: block;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
}

.carbon-tint .split-copy .eyebrow--red {
    color: var(--red);
}

.carbon-tint .tech-spec {
    background: var(--surface-2);
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
}

.carbon-tint .section-heading {
    text-align: center;
    margin-bottom: 2.5rem;
}

.carbon-tint .tech-spec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 900px) {
    .carbon-tint .tech-spec-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.carbon-tint .tech-spec-cell {
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: 8px;
    padding: 1.3rem 1.4rem;
    text-align: center;
}

.carbon-tint .tech-spec-cell span {
    display: block;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--steel);
    margin-bottom: .4rem;
}

.carbon-tint .tech-spec-cell strong {
    display: block;
    font-size: 17px;
    font-weight: 800;
    color: #fff;
}

.carbon-tint .pp-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3rem;
}

@media (max-width: 900px) {
    .carbon-tint .pp-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .carbon-tint .pp-feature-grid {
        grid-template-columns: 1fr;
    }
}

.carbon-tint .pp-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: 8px;
    padding: 1.4rem 1.3rem;
}

.carbon-tint .pp-feature__icon {
    width: 40px;
    height: 40px;
    background: rgba(217, 28, 28, .1);
    border: 1px solid rgba(217, 28, 28, .25);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    flex-shrink: 0;
}

.carbon-tint .pp-feature h3 {
    font-size: 17px;
    text-transform: uppercase;
    margin-bottom: .4rem;
    color: #fff;
    font-weight: 700;
}

.carbon-tint .pp-feature p {
    margin: 0;
}

.carbon-tint .why-uae {
    background: var(--surface-2);
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
}

.carbon-tint .why-uae__grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2.5rem;
}

@media (max-width: 900px) {
    .carbon-tint .why-uae__grid {
        grid-template-columns: 1fr;
    }
}

.carbon-tint .why-uae__head h2 {
    max-width: 16ch;
}

.carbon-tint .why-uae__cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2rem;
}

@media (max-width: 560px) {
    .carbon-tint .why-uae__cols {
        grid-template-columns: 1fr;
    }
}

.carbon-tint .why-uae__item h4 {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: .5rem;
    color: #fff;
    font-weight: 700;
}

.carbon-tint .why-uae__item p {
    margin: 0;
}

.carbon-tint .partner-band-sec {
    padding: 0 0 5.5rem;
}

.carbon-tint .partner-band {
    background: linear-gradient(135deg, var(--red) 0%, #8f0f0f 100%);
    border-radius: 10px;
    padding: 3rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.carbon-tint .partner-band__text h2 {
    color: #fff;
    margin-bottom: .5rem;
}

.carbon-tint .partner-band__text p {
    color: rgba(255, 255, 255, .82);
    margin: 0;
    max-width: 55ch;
}

.carbon-tint .lead-strip {
    background: var(--surface);
    border-top: 1px solid var(--hairline);
    padding: 2.2rem 0;
}

.carbon-tint .lead-strip .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.carbon-tint .lead-strip__text {
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
}

.carbon-tint .btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    padding: .82rem 1.7rem;
    border-radius: 4px;
    text-decoration: none;
    transition: .2s ease;
    cursor: pointer;
}

.carbon-tint .btn--red {
    background: var(--red);
    border: 1.5px solid var(--red);
    color: #fff;
}

.carbon-tint .btn--red:hover {
    background: var(--red-dim);
    border-color: var(--red-dim);
}

.carbon-tint .btn--white {
    background: #fff;
    border: 1.5px solid #fff;
    color: var(--red);
}

.carbon-tint .btn--white:hover {
    background: transparent;
    color: #fff;
}
/* END PAGE: Carbon Tint */

/* =====================================================
   PAGE: Printable Colour PPF (printable-color-ppf)
===================================================== */
.printable-color-ppf .split-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 900px) {
    .printable-color-ppf .split-2 {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.printable-color-ppf .split-media img {
    width: 100%;
    border-radius: 8px;
    display: block;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
}

.printable-color-ppf .split-copy .eyebrow--red {
    color: var(--red);
}

.printable-color-ppf .tech-spec {
    background: var(--surface-2);
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
}

.printable-color-ppf .section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.printable-color-ppf .tech-spec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

@media (max-width: 900px) {
    .printable-color-ppf .tech-spec-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.printable-color-ppf .tech-spec-cell {
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: 8px;
    padding: 21px 22px;
    text-align: center;
}

.printable-color-ppf .tech-spec-cell span {
    display: block;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--steel);
    margin-bottom: 6px;
}

.printable-color-ppf .tech-spec-cell strong {
    display: block;
    font-size: 17px;
    font-weight: 800;
    color: #fff;
}

.printable-color-ppf .pp-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 21px;
}

@media (max-width: 900px) {
    .printable-color-ppf .pp-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .printable-color-ppf .pp-feature-grid {
        grid-template-columns: 1fr;
    }
}

.printable-color-ppf .pp-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: 8px;
    padding: 22px 21px;
}

.printable-color-ppf .pp-feature__icon {
    width: 40px;
    height: 40px;
    background: rgba(217, 28, 28, .1);
    border: 1px solid rgba(217, 28, 28, .25);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    flex-shrink: 0;
}

.printable-color-ppf .pp-feature h3 {
    font-size: 17px;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: #fff;
    font-weight: 700;
}

.printable-color-ppf .pp-feature p {
    margin: 0;
}

.printable-color-ppf .why-uae {
    background: var(--surface-2);
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
}

.printable-color-ppf .why-uae__grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

@media (max-width: 900px) {
    .printable-color-ppf .why-uae__grid {
        grid-template-columns: 1fr;
    }
}

.printable-color-ppf .why-uae__head h2 {
    max-width: 16ch;
}

.printable-color-ppf .why-uae__cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 32px;
}

@media (max-width: 560px) {
    .printable-color-ppf .why-uae__cols {
        grid-template-columns: 1fr;
    }
}

.printable-color-ppf .why-uae__item h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 700;
}

.printable-color-ppf .why-uae__item p {
    margin: 0;
}

.printable-color-ppf .partner-band-sec {
    padding: 0 0 88px;
}

.printable-color-ppf .partner-band {
    background: linear-gradient(135deg, var(--red) 0%, #8f0f0f 100%);
    border-radius: 10px;
    padding: 48px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.printable-color-ppf .partner-band__text h2 {
    color: #fff;
    margin-bottom: 8px;
}

.printable-color-ppf .partner-band__text p {
    color: rgba(255, 255, 255, .82);
    margin: 0;
    max-width: 55ch;
}

.printable-color-ppf .lead-strip {
    background: var(--surface);
    border-top: 1px solid var(--hairline);
    padding: 35px 0;
}

.printable-color-ppf .lead-strip .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.printable-color-ppf .lead-strip__text {
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
}

.printable-color-ppf .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 13px 27px;
    border-radius: 4px;
    text-decoration: none;
    transition: .2s ease;
    cursor: pointer;
}

.printable-color-ppf .btn--red {
    background: var(--red);
    border: 1.5px solid var(--red);
    color: #fff;
}

.printable-color-ppf .btn--red:hover {
    background: var(--red-dim);
    border-color: var(--red-dim);
}

.printable-color-ppf .btn--white {
    background: #fff;
    border: 1.5px solid #fff;
    color: var(--red);
}

.printable-color-ppf .btn--white:hover {
    background: transparent;
    color: #fff;
}
/* END PAGE: Printable Colour PPF */
