/*==============================================================
 RAEES IMPORT & EXPORT
 PRODUCT DETAILS
 Ultra Premium Design System
 Version: 1.0

 Used By:
 - epsom-salt.php
 - arabic-gum.php
 - tyre-crumb.php
 - cashew-shell.php
 - areca-nut.php
==============================================================*/


/*==============================================================
 01. PAGE VARIABLES
==============================================================*/

.product-detail-page {

    --pd-navy: #071b17;
    --pd-navy-soft: #0b2922;

    --pd-green: #0d5b46;
    --pd-green-dark: #084334;
    --pd-green-light: #16785d;

    --pd-gold: #c89a43;
    --pd-gold-light: #e4bd6b;
    --pd-gold-soft: #f7edd8;

    --pd-white: #ffffff;

    --pd-bg: #f7f9f7;
    --pd-bg-soft: #f1f6f3;

    --pd-text: #18221f;
    --pd-text-soft: #63706b;

    --pd-border: rgba(8, 67, 52, 0.12);

    --pd-shadow-sm:
        0 12px 35px rgba(7, 27, 23, 0.08);

    --pd-shadow:
        0 24px 70px rgba(7, 27, 23, 0.12);

    --pd-shadow-lg:
        0 35px 100px rgba(7, 27, 23, 0.18);

    --pd-radius-sm: 14px;
    --pd-radius: 22px;
    --pd-radius-lg: 32px;

    --pd-transition:
        all 0.35s cubic-bezier(.2, .7, .3, 1);
}


/*==============================================================
 02. BASE
==============================================================*/

.product-detail-main {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--pd-white);
}

.product-detail-main *,
.product-detail-main *::before,
.product-detail-main *::after {
    box-sizing: border-box;
}

.product-detail-main img {
    max-width: 100%;
}

.product-detail-main a {
    text-decoration: none;
}

.product-detail-main h1,
.product-detail-main h2,
.product-detail-main h3,
.product-detail-main p {
    margin-top: 0;
}


/*==============================================================
 03. PRODUCT HERO
==============================================================*/

.pd-hero {
    position: relative;
    isolation: isolate;

    min-height: 720px;

    padding:
        clamp(135px, 12vw, 180px)
        0
        clamp(80px, 8vw, 120px);

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #061914 0%,
            #092b22 48%,
            #0b3a2c 100%
        );

    color: var(--pd-white);
}


/*--------------------------------------------------------------
 HERO BACKGROUND
--------------------------------------------------------------*/

.pd-hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.pd-hero-background::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 16% 20%,
            rgba(200, 154, 67, 0.13),
            transparent 30%
        ),
        radial-gradient(
            circle at 88% 70%,
            rgba(24, 129, 97, 0.18),
            transparent 34%
        );
}

.pd-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
}

.pd-hero-glow-one {
    width: 520px;
    height: 520px;

    top: -260px;
    right: -100px;

    background:
        radial-gradient(
            circle,
            rgba(200, 154, 67, 0.16),
            transparent 68%
        );
}

.pd-hero-glow-two {
    width: 460px;
    height: 460px;

    left: -220px;
    bottom: -220px;

    background:
        radial-gradient(
            circle,
            rgba(28, 142, 108, 0.18),
            transparent 70%
        );
}

.pd-hero-grid {
    position: absolute;
    inset: 0;

    opacity: 0.055;

    background-image:
        linear-gradient(
            rgba(255,255,255,.5) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.5) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.85),
            transparent
        );
}


/*==============================================================
 04. BREADCRUMB
==============================================================*/

.pd-breadcrumb {
    position: relative;
    z-index: 3;

    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 11px;

    margin-bottom: 42px;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: .02em;
}

.pd-breadcrumb a {
    color: rgba(255,255,255,.66);
    transition: var(--pd-transition);
}

.pd-breadcrumb a:hover {
    color: var(--pd-gold-light);
}

.pd-breadcrumb i {
    font-size: 9px;
    color: rgba(255,255,255,.35);
}

.pd-breadcrumb span {
    color: var(--pd-gold-light);
}


/*==============================================================
 05. HERO LAYOUT
==============================================================*/

.pd-hero-layout {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, .93fr)
        minmax(0, 1.07fr);

    align-items: center;

    gap: clamp(55px, 7vw, 100px);
}


/*==============================================================
 06. PRODUCT VISUAL
==============================================================*/

.pd-product-visual {
    position: relative;
    width: 100%;
    max-width: 570px;
}

.pd-image-frame {
    position: relative;

    padding: 15px;

    overflow: hidden;

    border:
        1px solid
        rgba(255,255,255,.14);

    border-radius: 34px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.12),
            rgba(255,255,255,.045)
        );

    box-shadow:
        0 45px 100px rgba(0,0,0,.30);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.pd-image-frame::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -70px;
    right: -70px;

    border-radius: 50%;

    background:
        rgba(200,154,67,.12);

    filter: blur(10px);
}


/*--------------------------------------------------------------
 IMAGE TOP
--------------------------------------------------------------*/

.pd-image-top {
    position: relative;
    z-index: 3;

    min-height: 55px;

    padding: 8px 9px 13px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 15px;
}

.pd-product-category {
    display: inline-flex;
    align-items: center;

    min-height: 35px;

    padding: 8px 14px;

    border:
        1px solid
        rgba(228,189,107,.25);

    border-radius: 50px;

    background:
        rgba(200,154,67,.11);

    color: var(--pd-gold-light);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .1em;
    text-transform: uppercase;
}

.pd-product-number {
    color: rgba(255,255,255,.55);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .12em;
}


/*--------------------------------------------------------------
 IMAGE
--------------------------------------------------------------*/

.pd-image-wrap {
    position: relative;

    height: clamp(350px, 35vw, 465px);

    overflow: hidden;

    border-radius: 24px;

    background: #edf2ef;
}

.pd-image-wrap::after {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            to top,
            rgba(5,26,21,.15),
            transparent 30%
        );
}

.pd-image-wrap img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .8s
        cubic-bezier(.2,.7,.3,1);
}

.pd-image-frame:hover .pd-image-wrap img {
    transform: scale(1.045);
}


/*--------------------------------------------------------------
 IMAGE BOTTOM
--------------------------------------------------------------*/

.pd-image-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding: 17px 10px 5px;
}

.pd-image-bottom span {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: rgba(255,255,255,.68);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: .04em;
}

.pd-image-bottom i {
    color: var(--pd-gold-light);
}


/*--------------------------------------------------------------
 FLOATING BADGE
--------------------------------------------------------------*/

.pd-floating-badge {
    position: absolute;

    right: -32px;
    bottom: 55px;

    z-index: 5;

    display: flex;
    align-items: center;

    gap: 13px;

    min-width: 225px;

    padding: 15px 17px;

    border:
        1px solid
        rgba(255,255,255,.13);

    border-radius: 18px;

    background:
        rgba(7,27,23,.88);

    box-shadow:
        0 20px 55px rgba(0,0,0,.25);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.pd-floating-badge > span {
    flex: 0 0 45px;

    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            var(--pd-gold),
            var(--pd-gold-light)
        );

    color: var(--pd-navy);

    font-size: 17px;
}

.pd-floating-badge div {
    min-width: 0;
}

.pd-floating-badge small {
    display: block;

    margin-bottom: 2px;

    color: rgba(255,255,255,.48);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: .11em;
    text-transform: uppercase;
}

.pd-floating-badge strong {
    display: block;

    color: var(--pd-white);

    font-size: 12px;
    font-weight: 700;

    line-height: 1.35;
}


/*==============================================================
 07. HERO CONTENT
==============================================================*/

.pd-hero-content {
    position: relative;
    z-index: 3;
}

.pd-kicker,
.pd-section-kicker,
.pd-final-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--pd-gold);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .16em;
    text-transform: uppercase;
}

.pd-kicker::before,
.pd-section-kicker::before,
.pd-final-kicker::before {
    content: "";

    width: 30px;
    height: 1px;

    background: currentColor;
}

.pd-hero-content h1 {
    max-width: 760px;

    margin:
        17px 0
        14px;

    color: var(--pd-white);

    font-size:
        clamp(48px, 6vw, 82px);

    font-weight: 700;

    line-height: .98;

    letter-spacing: -.045em;
}

.pd-hero-content h1 span {
    color: var(--pd-gold-light);
}

.pd-title-line {
    display: flex;
    align-items: center;

    margin-bottom: 25px;
}

.pd-title-line span {
    display: inline-flex;
    align-items: center;

    min-height: 36px;

    padding: 8px 15px;

    border:
        1px solid
        rgba(255,255,255,.13);

    border-radius: 50px;

    background:
        rgba(255,255,255,.065);

    color: rgba(255,255,255,.78);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .08em;
    text-transform: uppercase;
}

.pd-hero-description {
    max-width: 680px;

    margin-bottom: 30px;

    color: rgba(255,255,255,.68);

    font-size: 15px;
    line-height: 1.9;
}

.pd-hero-description strong {
    color: rgba(255,255,255,.93);
    font-weight: 700;
}


/*==============================================================
 08. QUICK INFO
==============================================================*/

.pd-quick-info {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 12px;

    max-width: 690px;

    margin-bottom: 31px;
}

.pd-quick-info > div {
    min-height: 96px;

    padding: 16px;

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius: 17px;

    background:
        rgba(255,255,255,.055);

    transition: var(--pd-transition);
}

.pd-quick-info > div:hover {
    border-color:
        rgba(228,189,107,.30);

    background:
        rgba(255,255,255,.085);

    transform: translateY(-3px);
}

.pd-quick-info > div > span {
    display: block;

    margin-bottom: 8px;

    color: var(--pd-gold-light);

    font-size: 14px;
}

.pd-quick-info small {
    display: block;

    margin-bottom: 3px;

    color: rgba(255,255,255,.43);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .1em;
    text-transform: uppercase;
}

.pd-quick-info strong {
    display: block;

    color: rgba(255,255,255,.90);

    font-size: 11px;
    font-weight: 700;

    line-height: 1.4;
}


/*==============================================================
 09. HERO BUTTONS
==============================================================*/

.pd-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 20px;
}

.pd-primary-btn,
.pd-secondary-btn,
.pd-summary-btn,
.pd-final-btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 52px;

    padding: 13px 22px;

    border-radius: 12px;

    font-size: 12px;
    font-weight: 700;

    line-height: 1.2;

    transition: var(--pd-transition);
}

.pd-primary-btn {
    overflow: hidden;

    border:
        1px solid
        var(--pd-gold);

    background:
        linear-gradient(
            135deg,
            var(--pd-gold),
            var(--pd-gold-light)
        );

    color: var(--pd-navy);
}

.pd-primary-btn::before {
    content: "";

    position: absolute;

    width: 50px;
    height: 150px;

    left: -80px;
    top: -45px;

    background:
        rgba(255,255,255,.35);

    transform: rotate(25deg);

    transition: .6s ease;
}

.pd-primary-btn:hover::before {
    left: 120%;
}

.pd-primary-btn:hover {
    color: var(--pd-navy);

    transform: translateY(-3px);

    box-shadow:
        0 16px 35px
        rgba(200,154,67,.20);
}

.pd-secondary-btn {
    border:
        1px solid
        rgba(255,255,255,.15);

    background:
        rgba(255,255,255,.06);

    color: rgba(255,255,255,.86);
}

.pd-secondary-btn:hover {
    border-color:
        rgba(228,189,107,.32);

    background:
        rgba(255,255,255,.10);

    color: var(--pd-gold-light);

    transform: translateY(-3px);
}

.pd-hero-note {
    display: flex;
    align-items: flex-start;

    gap: 9px;

    max-width: 620px;

    margin-bottom: 0;

    color: rgba(255,255,255,.45);

    font-size: 10px;
    line-height: 1.65;
}

.pd-hero-note i {
    margin-top: 3px;

    color: var(--pd-gold);
}


/*==============================================================
 10. COMMON SECTION HEADINGS
==============================================================*/

.pd-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 50px;

    margin-bottom: 50px;
}

.pd-section-heading > div {
    max-width: 640px;
}

.pd-section-heading > p {
    max-width: 500px;

    margin-bottom: 5px;

    color: var(--pd-text-soft);

    font-size: 13px;
    line-height: 1.8;
}

.pd-section-heading h2,
.pd-centered-heading h2,
.pd-applications-heading h2,
.pd-process-heading h2 {
    margin:
        12px 0
        0;

    color: var(--pd-navy);

    font-size:
        clamp(34px, 4vw, 52px);

    font-weight: 700;

    line-height: 1.08;

    letter-spacing: -.035em;
}

.pd-section-heading h2 span,
.pd-centered-heading h2 span,
.pd-applications-heading h2 span,
.pd-process-heading h2 span {
    color: var(--pd-green);
}

.pd-centered-heading {
    max-width: 760px;

    margin:
        0 auto
        50px;

    text-align: center;
}

.pd-centered-heading .pd-section-kicker {
    justify-content: center;
}

.pd-centered-heading p {
    max-width: 620px;

    margin:
        18px auto 0;

    color: var(--pd-text-soft);

    font-size: 13px;
    line-height: 1.8;
}


/*==============================================================
 11. PRODUCT OVERVIEW
==============================================================*/

.pd-overview-section {
    position: relative;

    padding:
        clamp(75px, 8vw, 120px)
        0;

    background: var(--pd-white);
}

.pd-overview-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.55fr)
        minmax(300px, .75fr);

    gap: clamp(40px, 6vw, 85px);

    align-items: start;
}

.pd-overview-content {
    position: relative;
}

.pd-overview-content > p {
    max-width: 830px;

    margin-bottom: 20px;

    color: var(--pd-text-soft);

    font-size: 14px;
    line-height: 1.9;
}

.pd-overview-content .pd-lead-text {
    color: var(--pd-text);

    font-size: 17px;
    font-weight: 500;

    line-height: 1.8;
}


/*--------------------------------------------------------------
 IMPORTANT NOTE
--------------------------------------------------------------*/

.pd-important-note {
    display: flex;
    align-items: flex-start;

    gap: 16px;

    max-width: 820px;

    margin-top: 32px;

    padding: 22px;

    border:
        1px solid
        rgba(13,91,70,.13);

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #f5faf7,
            #ffffff
        );
}

.pd-note-icon {
    flex: 0 0 44px;

    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    background:
        rgba(13,91,70,.09);

    color: var(--pd-green);

    font-size: 16px;
}

.pd-important-note strong {
    display: block;

    margin-bottom: 5px;

    color: var(--pd-navy);

    font-size: 13px;
}

.pd-important-note p {
    margin: 0;

    color: var(--pd-text-soft);

    font-size: 12px;
    line-height: 1.7;
}


/*==============================================================
 12. SUMMARY CARD
==============================================================*/

.pd-summary-card {
    position: relative;

    overflow: hidden;

    padding: 28px;

    border:
        1px solid
        var(--pd-border);

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f5f9f7
        );

    box-shadow: var(--pd-shadow-sm);
}

.pd-summary-card::before {
    content: "";

    position: absolute;

    width: 160px;
    height: 160px;

    top: -90px;
    right: -80px;

    border-radius: 50%;

    background:
        rgba(200,154,67,.12);
}

.pd-summary-label {
    position: relative;

    display: inline-block;

    margin-bottom: 22px;

    color: var(--pd-green);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .13em;
    text-transform: uppercase;
}

.pd-summary-row {
    position: relative;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    gap: 20px;

    padding: 15px 0;

    border-bottom:
        1px solid
        rgba(7,27,23,.08);
}

.pd-summary-row span {
    color: var(--pd-text-soft);

    font-size: 11px;
    line-height: 1.5;
}

.pd-summary-row strong {
    max-width: 58%;

    color: var(--pd-navy);

    font-size: 11px;
    font-weight: 700;

    line-height: 1.5;
    text-align: right;
}

.pd-summary-btn {
    width: 100%;

    margin-top: 22px;

    border:
        1px solid
        var(--pd-green);

    background:
        var(--pd-green);

    color: var(--pd-white);
}

.pd-summary-btn:hover {
    border-color:
        var(--pd-green-dark);

    background:
        var(--pd-green-dark);

    color: var(--pd-white);

    transform: translateY(-2px);

    box-shadow:
        0 14px 30px
        rgba(13,91,70,.18);
}


/*==============================================================
 13. FEATURES
==============================================================*/

.pd-features-section {
    position: relative;

    padding:
        clamp(75px, 8vw, 115px)
        0;

    background:
        linear-gradient(
            180deg,
            var(--pd-bg-soft),
            #ffffff
        );
}

.pd-features-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}

.pd-feature-card {
    position: relative;

    min-height: 290px;

    padding: 28px 24px;

    overflow: hidden;

    border:
        1px solid
        var(--pd-border);

    border-radius: 22px;

    background: var(--pd-white);

    box-shadow:
        0 8px 30px
        rgba(7,27,23,.045);

    transition: var(--pd-transition);
}

.pd-feature-card::before {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--pd-green),
            var(--pd-gold)
        );

    transform: scaleX(0);
    transform-origin: left;

    transition: var(--pd-transition);
}

.pd-feature-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(13,91,70,.18);

    box-shadow: var(--pd-shadow);
}

.pd-feature-card:hover::before {
    transform: scaleX(1);
}

.pd-feature-number {
    position: absolute;

    top: 19px;
    right: 21px;

    color: rgba(7,27,23,.12);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: .1em;
}

.pd-feature-icon {
    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    margin-bottom: 26px;

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            rgba(13,91,70,.10),
            rgba(200,154,67,.10)
        );

    color: var(--pd-green);

    font-size: 19px;

    transition: var(--pd-transition);
}

.pd-feature-card:hover .pd-feature-icon {
    background: var(--pd-green);
    color: var(--pd-white);

    transform: rotate(-4deg) scale(1.04);
}

.pd-feature-card h3 {
    margin-bottom: 12px;

    color: var(--pd-navy);

    font-size: 16px;
    font-weight: 700;

    line-height: 1.35;
}

.pd-feature-card p {
    margin-bottom: 0;

    color: var(--pd-text-soft);

    font-size: 12px;
    line-height: 1.8;
}


/*==============================================================
 14. APPLICATIONS
==============================================================*/

.pd-applications-section {
    position: relative;

    padding:
        clamp(80px, 9vw, 125px)
        0;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #061a15,
            #0b3328
        );

    color: var(--pd-white);
}

.pd-applications-section::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -250px;
    top: -240px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(200,154,67,.12),
            transparent 70%
        );
}

.pd-applications-layout {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, .8fr)
        minmax(0, 1.2fr);

    gap: clamp(55px, 8vw, 110px);

    align-items: center;
}

.pd-applications-heading h2 {
    color: var(--pd-white);
}

.pd-applications-heading h2 span {
    color: var(--pd-gold-light);
}

.pd-applications-heading p {
    max-width: 500px;

    margin:
        22px 0
        25px;

    color: rgba(255,255,255,.60);

    font-size: 13px;
    line-height: 1.85;
}

.pd-text-link {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    color: var(--pd-gold-light);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .03em;

    transition: var(--pd-transition);
}

.pd-text-link:hover {
    color: var(--pd-white);
    gap: 14px;
}


/*--------------------------------------------------------------
 APPLICATION GRID
--------------------------------------------------------------*/

.pd-applications-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 14px;
}

.pd-application-item {
    position: relative;

    display: flex;
    align-items: flex-start;

    gap: 16px;

    min-height: 160px;

    padding: 22px;

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius: 18px;

    background:
        rgba(255,255,255,.055);

    transition: var(--pd-transition);
}

.pd-application-item:hover {
    border-color:
        rgba(228,189,107,.25);

    background:
        rgba(255,255,255,.085);

    transform: translateY(-4px);
}

.pd-application-item > span {
    flex: 0 0 37px;

    width: 37px;
    height: 37px;

    display: grid;
    place-items: center;

    border:
        1px solid
        rgba(228,189,107,.24);

    border-radius: 11px;

    background:
        rgba(200,154,67,.09);

    color: var(--pd-gold-light);

    font-size: 10px;
    font-weight: 800;
}

.pd-application-item strong {
    display: block;

    margin:
        2px 0
        8px;

    color: var(--pd-white);

    font-size: 13px;
    font-weight: 700;
}

.pd-application-item p {
    margin: 0;

    color: rgba(255,255,255,.52);

    font-size: 11px;
    line-height: 1.75;
}


/*==============================================================
 15. REQUIREMENTS
==============================================================*/

.pd-requirements-section {
    padding:
        clamp(75px, 8vw, 115px)
        0;

    background: var(--pd-white);
}

.pd-requirements-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}

.pd-requirement-card {
    position: relative;

    min-height: 260px;

    padding: 29px 24px;

    overflow: hidden;

    border:
        1px solid
        var(--pd-border);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f7faf8
        );

    transition: var(--pd-transition);
}

.pd-requirement-card > span {
    position: absolute;

    top: 21px;
    right: 22px;

    color: rgba(7,27,23,.11);

    font-size: 12px;
    font-weight: 800;
}

.pd-requirement-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(200,154,67,.28);

    box-shadow: var(--pd-shadow-sm);
}

.pd-requirement-icon {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    margin-bottom: 23px;

    border-radius: 15px;

    background:
        rgba(200,154,67,.12);

    color: #9b722b;

    font-size: 17px;
}

.pd-requirement-card h3 {
    margin-bottom: 11px;

    color: var(--pd-navy);

    font-size: 15px;
    font-weight: 700;
}

.pd-requirement-card p {
    margin-bottom: 0;

    color: var(--pd-text-soft);

    font-size: 11px;
    line-height: 1.8;
}


/*==============================================================
 16. PROCESS
==============================================================*/

.pd-process-section {
    position: relative;

    padding:
        clamp(75px, 8vw, 115px)
        0;

    background: var(--pd-bg-soft);
}

.pd-process-layout {
    display: grid;

    grid-template-columns:
        minmax(0, .72fr)
        minmax(0, 1.28fr);

    gap: clamp(50px, 8vw, 110px);

    align-items: start;
}

.pd-process-heading {
    position: sticky;
    top: 120px;
}

.pd-process-heading p {
    max-width: 430px;

    margin:
        20px 0
        0;

    color: var(--pd-text-soft);

    font-size: 13px;
    line-height: 1.8;
}


/*--------------------------------------------------------------
 PROCESS STEPS
--------------------------------------------------------------*/

.pd-process-steps {
    position: relative;
}

.pd-process-steps::before {
    content: "";

    position: absolute;

    left: 25px;
    top: 30px;
    bottom: 30px;

    width: 1px;

    background:
        linear-gradient(
            to bottom,
            var(--pd-gold),
            rgba(13,91,70,.18)
        );
}

.pd-process-step {
    position: relative;

    display: flex;
    align-items: flex-start;

    gap: 22px;

    padding:
        0 0
        34px;
}

.pd-process-step:last-child {
    padding-bottom: 0;
}

.pd-process-number {
    position: relative;
    z-index: 2;

    flex: 0 0 51px;

    width: 51px;
    height: 51px;

    display: grid;
    place-items: center;

    border:
        5px solid
        var(--pd-bg-soft);

    border-radius: 50%;

    background: var(--pd-green);

    color: var(--pd-white);

    box-shadow:
        0 8px 20px
        rgba(13,91,70,.16);

    font-size: 10px;
    font-weight: 800;
}

.pd-process-step > div {
    flex: 1;

    min-height: 105px;

    padding: 22px 24px;

    border:
        1px solid
        var(--pd-border);

    border-radius: 18px;

    background: var(--pd-white);

    transition: var(--pd-transition);
}

.pd-process-step > div:hover {
    transform: translateX(5px);

    border-color:
        rgba(13,91,70,.20);

    box-shadow: var(--pd-shadow-sm);
}

.pd-process-step strong {
    display: block;

    margin-bottom: 7px;

    color: var(--pd-navy);

    font-size: 14px;
    font-weight: 700;
}

.pd-process-step p {
    margin: 0;

    color: var(--pd-text-soft);

    font-size: 11px;
    line-height: 1.75;
}


/*==============================================================
 17. RELATED PRODUCTS
==============================================================*/

.pd-related-section {
    padding:
        clamp(75px, 8vw, 120px)
        0;

    background: var(--pd-white);
}

.pd-view-all {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    flex-shrink: 0;

    margin-bottom: 8px;

    color: var(--pd-green);

    font-size: 11px;
    font-weight: 700;

    transition: var(--pd-transition);
}

.pd-view-all:hover {
    color: var(--pd-gold);
    gap: 13px;
}

.pd-related-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}

.pd-related-card {
    position: relative;

    overflow: hidden;

    border:
        1px solid
        var(--pd-border);

    border-radius: 22px;

    background: var(--pd-white);

    color: inherit;

    box-shadow:
        0 8px 25px
        rgba(7,27,23,.045);

    transition: var(--pd-transition);
}

.pd-related-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(13,91,70,.18);

    box-shadow: var(--pd-shadow);
}

.pd-related-image {
    position: relative;

    height: 215px;

    overflow: hidden;

    background: var(--pd-bg-soft);
}

.pd-related-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(7,27,23,.12),
            transparent 50%
        );

    pointer-events: none;
}

.pd-related-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .65s
        cubic-bezier(.2,.7,.3,1);
}

.pd-related-card:hover
.pd-related-image img {
    transform: scale(1.07);
}

.pd-related-content {
    padding: 21px;
}

.pd-related-content > span {
    display: block;

    margin-bottom: 7px;

    color: var(--pd-gold);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .11em;
    text-transform: uppercase;
}

.pd-related-content h3 {
    margin-bottom: 14px;

    color: var(--pd-navy);

    font-size: 17px;
    font-weight: 700;
}

.pd-related-content strong {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: var(--pd-green);

    font-size: 10px;
    font-weight: 700;

    transition: var(--pd-transition);
}

.pd-related-card:hover
.pd-related-content strong {
    gap: 12px;
    color: var(--pd-gold);
}


/*==============================================================
 18. DISCLAIMER
==============================================================*/

.pd-disclaimer-section {
    padding:
        0 0
        clamp(65px, 7vw, 95px);

    background: var(--pd-white);
}

.pd-disclaimer-box {
    display: flex;
    align-items: flex-start;

    gap: 18px;

    padding: 24px 26px;

    border:
        1px solid
        rgba(200,154,67,.22);

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            #fffaf0,
            #ffffff
        );
}

.pd-disclaimer-box > span {
    flex: 0 0 43px;

    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    background:
        rgba(200,154,67,.12);

    color: #9b722b;

    font-size: 16px;
}

.pd-disclaimer-box strong {
    display: block;

    margin-bottom: 5px;

    color: var(--pd-navy);

    font-size: 12px;
    font-weight: 700;
}

.pd-disclaimer-box p {
    max-width: 1000px;

    margin: 0;

    color: var(--pd-text-soft);

    font-size: 10px;
    line-height: 1.8;
}


/*==============================================================
 19. FINAL CTA
==============================================================*/

.pd-final-section {
    position: relative;

    padding:
        0 0
        clamp(75px, 8vw, 110px);

    background: var(--pd-white);
}

.pd-final-card {
    position: relative;

    display: grid;

    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 25px;

    overflow: hidden;

    padding:
        clamp(30px, 4vw, 50px);

    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            #061a15 0%,
            #0b392c 100%
        );

    box-shadow:
        0 30px 80px
        rgba(7,27,23,.18);
}

.pd-final-card::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -140px;
    top: -170px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(200,154,67,.18),
            transparent 68%
        );
}

.pd-final-card::after {
    content: "";

    position: absolute;

    width: 240px;
    height: 240px;

    left: -140px;
    bottom: -160px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(26,136,103,.22),
            transparent 70%
        );
}

.pd-final-icon,
.pd-final-content,
.pd-final-action {
    position: relative;
    z-index: 2;
}

.pd-final-icon {
    width: 70px;
    height: 70px;

    display: grid;
    place-items: center;

    border:
        1px solid
        rgba(228,189,107,.25);

    border-radius: 20px;

    background:
        rgba(200,154,67,.10);

    color: var(--pd-gold-light);

    font-size: 24px;
}

.pd-final-content h2 {
    margin:
        8px 0
        9px;

    color: var(--pd-white);

    font-size:
        clamp(27px, 3vw, 40px);

    font-weight: 700;

    line-height: 1.08;

    letter-spacing: -.03em;
}

.pd-final-content h2 span {
    color: var(--pd-gold-light);
}

.pd-final-content p {
    max-width: 650px;

    margin-bottom: 0;

    color: rgba(255,255,255,.56);

    font-size: 11px;
    line-height: 1.75;
}

.pd-final-btn {
    min-width: 190px;

    border:
        1px solid
        var(--pd-gold);

    background:
        linear-gradient(
            135deg,
            var(--pd-gold),
            var(--pd-gold-light)
        );

    color: var(--pd-navy);

    white-space: nowrap;
}

.pd-final-btn:hover {
    color: var(--pd-navy);

    transform: translateY(-3px);

    box-shadow:
        0 15px 35px
        rgba(200,154,67,.18);
}


/*==============================================================
 20. FOCUS / ACCESSIBILITY
==============================================================*/

.pd-primary-btn:focus-visible,
.pd-secondary-btn:focus-visible,
.pd-summary-btn:focus-visible,
.pd-final-btn:focus-visible,
.pd-view-all:focus-visible,
.pd-text-link:focus-visible,
.pd-related-card:focus-visible,
.pd-breadcrumb a:focus-visible {
    outline:
        3px solid
        rgba(228,189,107,.55);

    outline-offset: 4px;
}


/*==============================================================
 21. LARGE DESKTOP
==============================================================*/

@media (min-width: 1400px) {

    .pd-hero-layout {
        gap: 105px;
    }

    .pd-product-visual {
        max-width: 590px;
    }

    .pd-related-image {
        height: 230px;
    }

}


/*==============================================================
 22. LAPTOP
==============================================================*/

@media (max-width: 1199.98px) {

    .pd-hero {
        min-height: auto;
    }

    .pd-hero-layout {
        gap: 55px;
    }

    .pd-floating-badge {
        right: -15px;
    }

    .pd-features-grid,
    .pd-requirements-grid,
    .pd-related-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .pd-feature-card,
    .pd-requirement-card {
        min-height: 245px;
    }

    .pd-related-image {
        height: 260px;
    }

}


/*==============================================================
 23. TABLET
==============================================================*/

@media (max-width: 991.98px) {

    .pd-hero {
        padding-top: 135px;
    }

    .pd-hero-layout {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .pd-product-visual {
        max-width: 650px;
        margin: 0 auto;
    }

    .pd-image-wrap {
        height: 500px;
    }

    .pd-hero-content {
        max-width: 760px;
    }

    .pd-section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .pd-section-heading > p {
        max-width: 700px;
    }

    .pd-overview-layout {
        grid-template-columns: 1fr;
    }

    .pd-summary-card {
        max-width: 650px;
    }

    .pd-applications-layout,
    .pd-process-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .pd-process-heading {
        position: static;
    }

    .pd-final-card {
        grid-template-columns:
            auto 1fr;

        gap: 20px;
    }

    .pd-final-action {
        grid-column: 1 / -1;
    }

}


/*==============================================================
 24. MOBILE / TABLET
==============================================================*/

@media (max-width: 767.98px) {

    .pd-hero {
        padding:
            120px 0
            75px;
    }

    .pd-breadcrumb {
        margin-bottom: 30px;

        font-size: 11px;
    }

    .pd-hero-layout {
        gap: 52px;
    }

    .pd-image-frame {
        padding: 11px;
        border-radius: 26px;
    }

    .pd-image-wrap {
        height: 390px;
        border-radius: 19px;
    }

    .pd-floating-badge {
        right: 15px;
        bottom: 47px;

        min-width: 205px;
    }

    .pd-hero-content h1 {
        font-size:
            clamp(43px, 13vw, 62px);
    }

    .pd-hero-description {
        font-size: 14px;
    }

    .pd-quick-info {
        grid-template-columns: 1fr;
    }

    .pd-quick-info > div {
        min-height: 78px;
    }

    .pd-features-grid,
    .pd-requirements-grid,
    .pd-related-grid {
        grid-template-columns: 1fr;
    }

    .pd-feature-card,
    .pd-requirement-card {
        min-height: auto;
    }

    .pd-applications-grid {
        grid-template-columns: 1fr;
    }

    .pd-application-item {
        min-height: auto;
    }

    .pd-related-image {
        height: 310px;
    }

    .pd-final-card {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .pd-final-icon {
        width: 62px;
        height: 62px;
    }

    .pd-final-action {
        grid-column: auto;
    }

}


/*==============================================================
 25. SMALL MOBILE
==============================================================*/

@media (max-width: 575.98px) {

    .pd-hero {
        padding:
            110px 0
            65px;
    }

    .pd-breadcrumb {
        gap: 8px;
    }

    .pd-image-top {
        min-height: 48px;
    }

    .pd-product-category {
        min-height: 31px;

        padding: 6px 10px;

        font-size: 9px;
    }

    .pd-product-number {
        font-size: 10px;
    }

    .pd-image-wrap {
        height: 315px;
    }

    .pd-image-bottom {
        gap: 8px;

        padding-top: 14px;
    }

    .pd-image-bottom span {
        font-size: 9px;
    }

    .pd-floating-badge {
        position: relative;

        right: auto;
        bottom: auto;

        width: calc(100% - 20px);
        min-width: 0;

        margin:
            -12px auto
            0;

        border-radius: 15px;
    }

    .pd-hero-content h1 {
        margin-top: 14px;
    }

    .pd-title-line {
        margin-bottom: 20px;
    }

    .pd-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .pd-primary-btn,
    .pd-secondary-btn {
        width: 100%;
    }

    .pd-section-heading h2,
    .pd-centered-heading h2,
    .pd-applications-heading h2,
    .pd-process-heading h2 {
        font-size:
            clamp(31px, 10vw, 40px);
    }

    .pd-overview-content .pd-lead-text {
        font-size: 15px;
    }

    .pd-important-note {
        padding: 18px;

        gap: 13px;
    }

    .pd-note-icon {
        flex-basis: 40px;

        width: 40px;
        height: 40px;
    }

    .pd-summary-card {
        padding: 22px 19px;
    }

    .pd-summary-row {
        gap: 12px;
    }

    .pd-summary-row strong {
        max-width: 62%;
    }

    .pd-feature-card,
    .pd-requirement-card {
        padding: 25px 21px;
    }

    .pd-application-item {
        padding: 19px;
    }

    .pd-process-steps::before {
        left: 20px;
    }

    .pd-process-step {
        gap: 14px;
    }

    .pd-process-number {
        flex-basis: 41px;

        width: 41px;
        height: 41px;

        border-width: 4px;

        font-size: 9px;
    }

    .pd-process-step > div {
        min-height: 0;

        padding: 19px;
    }

    .pd-related-image {
        height: 260px;
    }

    .pd-disclaimer-box {
        padding: 20px;

        gap: 13px;
    }

    .pd-disclaimer-box > span {
        flex-basis: 39px;

        width: 39px;
        height: 39px;
    }

    .pd-final-card {
        padding: 27px 22px;

        border-radius: 22px;
    }

    .pd-final-btn {
        width: 100%;
        min-width: 0;
    }

}


/*==============================================================
 26. EXTRA SMALL MOBILE
==============================================================*/

@media (max-width: 390px) {

    .pd-image-wrap {
        height: 275px;
    }

    .pd-image-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .pd-hero-content h1 {
        font-size: 42px;
    }

    .pd-summary-row {
        flex-direction: column;
        gap: 5px;
    }

    .pd-summary-row strong {
        max-width: 100%;
        text-align: left;
    }

    .pd-application-item {
        gap: 12px;
    }

    .pd-process-step {
        gap: 10px;
    }

    .pd-process-step > div {
        padding: 17px 15px;
    }

}


/*==============================================================
 27. REDUCED MOTION
==============================================================*/

@media (prefers-reduced-motion: reduce) {

    .product-detail-main *,
    .product-detail-main *::before,
    .product-detail-main *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

}


/*==============================================================
 END
 RAEES IMPORT & EXPORT
 PRODUCT DETAILS
==============================================================*/