

/* ============================================================
   GLOBAL REFRIGERATION PRODUCT PAGE
   Prefix: grp-
   Completely isolated from existing website classes
============================================================ */

.grp-page,
.grp-page * {
    box-sizing: border-box;
}

.grp-page {
    --grp-navy: #071c2c;
    --grp-navy-light: #0c2b40;
    --grp-yellow: #f7b500;
    --grp-yellow-dark: #e8a900;
    --grp-text: #18222b;
    --grp-muted: #687681;
    --grp-line: #e4e9ed;
    --grp-soft: #f5f7f8;
    --grp-white: #ffffff;

    font-family: "Manrope", Arial, sans-serif;
    color: var(--grp-text);
    background: #fff;
}

.grp-container {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
}


/* ============================================================
   BREADCRUMB
============================================================ */

.grp-breadcrumb {
    position: relative;
    overflow: hidden;
    padding: 74px 79px 78px;
    background:
        linear-gradient(
            90deg,
            rgba(7,28,44,.98) 0%,
            rgba(7,28,44,.94) 48%,
            rgba(7,28,44,.76) 100%
        ),
        url('img/choose-us-bg.png') center/cover no-repeat;
}

.grp-breadcrumb::before {
    content: "";
    position: absolute;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 50%;
    right: 5%;
    top: -180px;
}

.grp-breadcrumb::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 32%;
    height: 5px;
    background: var(--grp-yellow);
}

.grp-breadcrumb-inner {
    position: relative;
    z-index: 2;
}

.grp-breadcrumb-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
    color: var(--grp-yellow);
    font-size: 11px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.grp-breadcrumb-label::before {
    content: "";
    width: 26px;
    height: 3px;
    background: var(--grp-yellow);
}

.grp-breadcrumb h1 {
        margin: 0 0 15px;
    max-width: 760px;
    color: #fff;
    font-size: clamp(34px, 4.5vw, 38px); 
    line-height: 1.05;
    /* letter-spacing: -2px; */
    font-weight: 800;
}

.grp-breadcrumb h1 span {
    color: var(--grp-yellow);
}

.grp-breadcrumb-path {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0;
    color: rgba(255,255,255,.68);
    font-size: 13px;
}

.grp-breadcrumb-path a {
    color: #fff;
    text-decoration: none;
    transition: .25s ease;
}

.grp-breadcrumb-path a:hover {
    color: var(--grp-yellow);
}

.grp-breadcrumb-separator {
    color: var(--grp-yellow);
}


/* ============================================================
   PAGE LAYOUT
============================================================ */

.grp-main {
    padding: 72px 0 85px;
}

.grp-layout {
    display: grid;
    grid-template-columns: 315px minmax(0, 1fr);
    gap: 45px;
    align-items: start;
}


/* ============================================================
   SIDEBAR
============================================================ */

.grp-sidebar {
    position: sticky;
    top: 105px;
    left:74px;
}

.grp-sidebar-box {
    border: 1px solid var(--grp-line);
    background: #fff;
}

.grp-sidebar-heading {
       position: relative;
    padding: 24px 24px 21px;
    background: var(--grp-navy);
    border-radius: 10px 10px 0px 0px;
}

.grp-sidebar-heading::after {
    content: "";
    position: absolute;
    left: 24px;
    bottom: 0;
    width: 45px;
    height: 3px;
    background: var(--grp-yellow);
}

.grp-sidebar-heading small {
    display: block;
    margin-bottom: 5px;
    color: var(--grp-yellow);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.3px;
}

.grp-sidebar-heading h2 {
    margin: 0;
    color: #fff;
    font-size: 21px;
    line-height: 1.25;
    font-weight: 750;
}


/* ============================================================
   PRODUCT ACCORDION
============================================================ */

.grp-accordion-item {
    border-bottom: 1px solid var(--grp-line);
}

.grp-accordion-item:last-child {
    border-bottom: 0;
}

.grp-accordion-trigger {
    appearance: none;
    border: 0;
    width: 100%;
    padding: 17px 19px;
    background: #fff;
    color: var(--grp-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    text-align: left;
    font: inherit;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 750;
    transition: .25s ease;
}

.grp-accordion-trigger:hover,
.grp-accordion-item.grp-open > .grp-accordion-trigger {
    background: #fff9e8;
    color: var(--grp-navy);
}

.grp-accordion-trigger-text {
    display: flex;
    align-items: center;
    gap: 11px;
}

.grp-accordion-number {
    color: var(--grp-yellow-dark);
    font-size: 10px;
    font-weight: 800;
}

.grp-accordion-icon {
    flex: 0 0 25px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--grp-soft);
    display: grid;
    place-items: center;
    transition: .25s ease;
}

.grp-accordion-icon::before,
.grp-accordion-icon::after {
    content: "";
    position: absolute;
    width: 9px;
    height: 1.5px;
    background: var(--grp-navy);
}

.grp-accordion-icon {
    position: relative;
}

.grp-accordion-icon::after {
    transform: rotate(90deg);
    transition: .25s ease;
}

.grp-open .grp-accordion-icon {
    background: var(--grp-yellow);
}

.grp-open .grp-accordion-icon::after {
    transform: rotate(0);
}

.grp-accordion-panel {
    display: none;
    padding: 4px 17px 14px 44px;
    background: #fff;
}

.grp-open > .grp-accordion-panel {
    display: block;
}

.grp-accordion-panel a {
    position: relative;
    display: block;
    padding: 9px 5px 9px 14px;
    border-bottom: 1px dashed #e7eaec;
    color: #66737c;
    text-decoration: none;
    font-size: 13.5px;
    line-height: 1.45;
    transition: .2s ease;
}

.grp-accordion-panel a:last-child {
    border-bottom: 0;
}

.grp-accordion-panel a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15px;
    width: 5px;
    height: 5px;
    border: 1.5px solid var(--grp-yellow-dark);
    transform: rotate(45deg);
}

.grp-accordion-panel a:hover,
.grp-accordion-panel a.grp-current-product {
    color: var(--grp-navy);
    font-weight: 700;
    padding-left: 18px;
}

.grp-accordion-panel a.grp-current-product {
    color: #b87e00;
}


/* ============================================================
   SIDEBAR CONTACT CARD
============================================================ */

.grp-help-card {
    position: relative;
    overflow: hidden;
    margin-top: 24px;
    padding: 29px 25px;
    background: var(--grp-navy);
    color: #fff;
}

.grp-help-card::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    right: -85px;
    top: -80px;
    border: 25px solid rgba(247,181,0,.1);
    border-radius: 50%;
}

.grp-help-icon {
    position: relative;
    z-index: 2;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--grp-yellow);
}

.grp-help-icon svg {
    width: 21px;
    height: 21px;
    fill: var(--grp-navy);
}

.grp-help-card small {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 7px;
    color: var(--grp-yellow);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 800;
}

.grp-help-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 10px;
    color: #fff;
    font-size: 20px;
    line-height: 1.25;
}

.grp-help-card p {
    position: relative;
    z-index: 2;
    margin: 0 0 21px;
    color: rgba(255,255,255,.7);
    font-size: 12px;
    line-height: 1.7;
}

.grp-help-phone {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 15px;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
}

.grp-help-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 43px;
    padding: 0 17px;
    background: var(--grp-yellow);
    color: var(--grp-navy);
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    transition: .25s ease;
}

.grp-help-btn:hover {
    background: #fff;
}


/* ============================================================
   PRODUCT CONTENT
============================================================ */

.grp-content {
    min-width: 0;
}

.grp-product-intro {
    /*display: grid;*/
    grid-template-columns: minmax(0, 1.02fr) minmax(300px, .98fr);
    gap: 35px;
    align-items: center;
    margin-bottom: 44px;
}

.grp-product-image {
    position: relative;
    /*min-height: 410px;*/
    padding: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        linear-gradient(145deg, #f3f5f6, #fff);
    border: 1px solid var(--grp-line);
}

.grp-product-image::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    left: -70px;
    bottom: -70px;
    border-radius: 50%;
    background: rgba(247,181,0,.11);
}

.grp-product-image::after {
    content: "GLOBAL";
    position: absolute;
    right: -15px;
    top: 30px;
    color: rgba(7,28,44,.035);
    font-size: 72px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -5px;
    transform: rotate(90deg);
}

.grp-product-image img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    max-height: 360px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform .45s ease;
}

.grp-product-image:hover img {
    transform: scale(1.035);
}

.grp-product-summary {
    padding: 25px 0;
}

.grp-eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 12px;
    color: #9a6c00;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.grp-eyebrow::before {
    content: "";
    width: 24px;
    height: 3px;
    background: var(--grp-yellow);
}

.grp-product-summary h2 {
    margin: 0 0 16px;
    color: var(--grp-navy);
    font-size: clamp(30px, 2vw, 44px);
    line-height: 1.08;
    letter-spacing: -1.4px;
    font-weight: 800;
}

.grp-product-summary h2 span {
    color: var(--grp-yellow-dark);
}

.grp-product-summary p {
    margin: 0 0 15px;
    color: var(--grp-muted);
    font-size: 14px;
    line-height: 1.8;
}

.grp-mini-features {
    margin: 23px 0 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
}

.grp-mini-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--grp-soft);
    color: #34434d;
    font-size: 13px;
    font-weight: 700;
}

.grp-mini-feature span {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    background: var(--grp-yellow);
    color: var(--grp-navy);
    font-size: 12px;
    font-weight: 900;
}

.grp-summary-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.grp-primary-btn,
.grp-outline-btn {
    min-height: 45px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    transition: .25s ease;
}

.grp-primary-btn {
    background: var(--grp-yellow);
    color: var(--grp-navy);
}

.grp-primary-btn:hover {
    background: var(--grp-navy);
    color: #fff;
}

.grp-outline-btn {
    border: 1px solid #d9dfe3;
    color: var(--grp-navy);
    background: #fff;
}

.grp-outline-btn:hover {
    border-color: var(--grp-navy);
}


/* ============================================================
   CONTENT TYPOGRAPHY
============================================================ */

.grp-text-section {
    margin-top: 42px;
}

.grp-text-section:first-of-type {
    margin-top: 0;
}

.grp-section-heading {
    margin-bottom: 16px;
}

.grp-section-heading small {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #9a6c00;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.grp-section-heading small::before {
    content: "";
    width: 22px;
    height: 2px;
    background: var(--grp-yellow);
}

.grp-section-heading h2 {
    margin: 0;
    color: var(--grp-navy);
    font-size: clamp(24px, 2.6vw, 32px);
    line-height: 1.2;
    letter-spacing: -.8px;
}

.grp-text-section p {
       margin: 0 0 15px;
    color: #27261d;
    font-size: 15.5px;
    line-height: 1.85;
    letter-spacing: 0.5px;
}


/* ============================================================
   HIGHLIGHT BOX
============================================================ */

.grp-highlight {
    position: relative;
    margin: 30px 0;
    padding: 24px 27px 24px 31px;
    border-left: 4px solid var(--grp-yellow);
    background: #f7f9fa;
}

.grp-highlight p {
    margin: 0;
    color: #394953;
    font-size: 14px;
    line-height: 1.8;
}


/* ============================================================
   APPLICATIONS
============================================================ */

.grp-applications {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 22px;
}

.grp-application {
    min-height: 100px;
    padding: 19px;
    border: 1px solid var(--grp-line);
    background: #fff;
    transition: .25s ease;
}

.grp-application:hover {
    border-color: var(--grp-yellow);
    transform: translateY(-2px);
}

.grp-application-number {
    display: block;
    margin-bottom: 12px;
    color: var(--grp-yellow-dark);
    font-size: 10px;
    font-weight: 800;
}

.grp-application strong {
    display: block;
    margin-bottom: 4px;
    color: var(--grp-navy);
    font-size: 15px;
}

.grp-application p {
    margin: 0;
    font-size: 11px;
    line-height: 1.55;
}


/* ============================================================
   SPECIFICATION TABLE
============================================================ */

.grp-spec-wrap {
    margin-top: 22px;
    border: 1px solid var(--grp-line);
    overflow: hidden;
}

.grp-spec-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    border-bottom: 1px solid var(--grp-line);
}

.grp-spec-row:last-child {
    border-bottom: 0;
}

.grp-spec-label,
.grp-spec-value {
      padding: 15px 18px;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.54px;
}

.grp-spec-label {
    background: var(--grp-navy);
    color: #fff;
    font-weight: 700;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.grp-spec-value {
    color: #56636c;
    background: #fff;
}

.grp-spec-row:nth-child(even) .grp-spec-value {
    background: #f8f9fa;
}


/* ============================================================
   FEATURES
============================================================ */

.grp-feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px 24px;
    margin-top: 20px;
}

.grp-feature-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding-bottom: 13px;
    border-bottom: 1px solid var(--grp-line);
}

.grp-feature-check {
    flex: 0 0 25px;
    width: 25px;
    height: 25px;
    margin-top: 1px;
    display: grid;
    place-items: center;
    background: var(--grp-yellow);
    color: var(--grp-navy);
    font-size: 12px;
    font-weight: 900;
}

.grp-feature-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--grp-navy);
    font-size: 13.5px;
}

.grp-feature-item p {
    margin: 0;
    font-size: 11px;
    line-height: 1.55;
}


/* ============================================================
   BOTTOM CONTACT STRIP
============================================================ */

.grp-contact-strip {
    position: relative;
    overflow: hidden;
    margin-top: 55px;
    padding: 33px 36px;
    background: var(--grp-navy);
}

.grp-contact-strip::before {
    content: "";
    position: absolute;
    right: -35px;
    top: -70px;
    width: 230px;
    height: 230px;
    border: 38px solid rgba(247,181,0,.09);
    border-radius: 50%;
}

.grp-contact-strip-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.grp-contact-strip-copy {
    max-width: 580px;
}

.grp-contact-strip-copy small {
    display: block;
    margin-bottom: 7px;
    color: var(--grp-yellow);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.grp-contact-strip-copy h2 {
    margin: 0 0 8px;
    color: #fff;
    font-size: clamp(22px, 2.5vw, 31px);
    line-height: 1.2;
}

.grp-contact-strip-copy p {
    margin: 0;
    color: rgba(255,255,255,.65);
    font-size: 12px;
    line-height: 1.65;
}

.grp-contact-actions {
    flex: 0 0 auto;
    display: flex;
    gap: 9px;
}

.grp-contact-call,
.grp-contact-whatsapp {
    min-height: 45px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    transition: .25s ease;
}

.grp-contact-call {
    background: var(--grp-yellow);
    color: var(--grp-navy);
}

.grp-contact-whatsapp {
    border: 1px solid rgba(255,255,255,.28);
    color: #fff;
}

.grp-contact-call:hover {
    background: #fff;
}

.grp-contact-whatsapp:hover {
    border-color: var(--grp-yellow);
    color: var(--grp-yellow);
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1050px) {

    .grp-layout {
        grid-template-columns: 270px minmax(0, 1fr);
        gap: 28px;
    }

    .grp-product-intro {
        grid-template-columns: 1fr;
    }

    .grp-product-image {
        min-height: 360px;
    }

    .grp-applications {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* ============================================================
   MOBILE / SMALL TABLET
============================================================ */

@media (max-width: 820px) {

    .grp-container {
        width: min(100% - 30px, 1240px);
    }

    .grp-breadcrumb {
        padding: 55px 0 58px;
    }

    .grp-breadcrumb h1 {
        letter-spacing: -1px;
    }

    .grp-main {
        padding: 45px 0 60px;
    }

    .grp-layout {
        display: flex;
        flex-direction: column;
    }

    .grp-sidebar {
        position: static;
        width: 100%;
    }

    .grp-content {
        width: 100%;
    }

    .grp-product-intro {
        gap: 25px;
        margin-bottom: 35px;
    }

    .grp-contact-strip-inner {
        align-items: flex-start;
        flex-direction: column;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 580px) {

    .grp-container {
        width: calc(100% - 24px);
    }

    .grp-breadcrumb {
        padding: 44px 0 47px;
    }

    .grp-breadcrumb-label {
        font-size: 9px;
    }

    .grp-breadcrumb h1 {
        font-size: 34px;
    }

    .grp-breadcrumb-path {
        font-size: 11px;
    }

    .grp-main {
        padding-top: 32px;
    }

    .grp-product-image {
        min-height: 290px;
        padding: 25px;
    }

    .grp-product-image img {
        max-height: 270px;
    }

    .grp-mini-features,
    .grp-feature-list,
    .grp-applications {
        grid-template-columns: 1fr;
    }

    .grp-spec-row {
        grid-template-columns: 1fr;
    }

    .grp-spec-label,
    .grp-spec-value {
        padding: 12px 14px;
    }

    .grp-spec-label {
        border-bottom: 0;
    }

    .grp-summary-actions {
        flex-direction: column;
    }

    .grp-primary-btn,
    .grp-outline-btn {
        width: 100%;
    }

    .grp-contact-strip {
        padding: 27px 22px;
    }

    .grp-contact-actions {
        width: 100%;
        flex-direction: column;
    }

    .grp-contact-call,
    .grp-contact-whatsapp {
        width: 100%;
    }

}

