.lj-page {
    --orange: #FAA61A;
    --orange-dark: #d88900;
    --black: #171717;
    --dark: #242424;
    --text: #555;
    --light: #f7f7f7;
    --border: #e6e6e6;
    --white: #fff;

    font-family: 'Poppins', sans-serif;
    color: var(--black);
    background: #fff;
    overflow: hidden;
}

.lj-page *,
.lj-page *::before,
.lj-page *::after {
    box-sizing: border-box;
}

.lj-page h1,
.lj-page h2,
.lj-page h3,
.lj-page h4 {
    font-family: fantasy;
    font-weight: 400;
    margin-top: 0;
}

.lj-page p,
.lj-page li,
.lj-page td,
.lj-page th {
    font-family: 'Poppins', sans-serif;
}

.lj-container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   HERO
   ========================================================= */

.lj-hero {
    width: 100%;
    min-height: 690px;
    position: relative;
    display: flex;
    align-items: center;
/*     background:
        radial-gradient(
            circle at 82% 45%,
            rgba(250,166,26,.15),
            rgba(250,166,26,.04) 32%,
            transparent 60%
        ),
        #fff; */
}

.lj-hero::before {
    content: "";
    position: absolute;
    width: 540px;
    height: 540px;
    right: -230px;
    top: -210px;
    border-radius: 50%;
    border: 80px solid rgba(250,166,26,.09);
}

.lj-hero::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    left: -170px;
    bottom: -180px;
    border-radius: 50%;
    background: rgba(250,166,26,.07);
}

.lj-hero-inner {
    position: relative;
    z-index: 2;

    width: min(1300px, calc(100% - 50px));
    min-height: 690px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 60% 25%;
    align-items: center;
}

.lj-hero-content {
    padding: 50px 0;
}

.lj-label {
    display: inline-flex;
    align-items: center;

    padding: 9px 18px;

    background: var(--orange);
    color: #fff;

    border-radius: 50px;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    margin-bottom: 25px;
}

.lj-hero h1 {
    margin: 0;

    font-size: clamp(55px, 7vw, 96px);
    line-height: .9;

    color: var(--black);
}

.lj-hero h1 span {
    display: block;
    color: var(--orange);
}

.lj-model {
    margin-top: 25px;

    font-size: 21px;
    font-weight: 600;
}

.lj-hero-image {
    position: relative;

    min-height: 600px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.lj-image-circle {
    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background: #fff;

    box-shadow:
        0 30px 90px rgba(0,0,0,.08),
        inset 0 0 0 1px rgba(250,166,26,.14);
}

.lj-hero-image img {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 730px;

    height: auto;

    object-fit: contain;

    filter: drop-shadow(0 25px 25px rgba(0,0,0,.14));

    transition: transform .45s ease;
}

.lj-hero-image:hover img {
    transform: scale(1.025);
}


/* =========================================================
   REMARK
   ========================================================= */

.lj-remark {
    background: var(--orange);
    padding: 24px 0;
}

.lj-remark-inner {
    display: flex;
    align-items: center;
    gap: 25px;
}

.lj-remark-title {
    flex-shrink: 0;

    color: #fff;

    font-family: fantasy;
    font-size: 26px;
}

.lj-remark-text {
    margin: 0;

    color: #fff;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   SECTION COMMON
   ========================================================= */

.lj-section {
    padding: 95px 0;
}

.lj-section.gray {
    background: var(--light);
}

.lj-section.dark {
    background: var(--black);
    color: #fff;
}

.lj-heading {
    max-width: 850px;

    margin: 0 auto 55px;

    text-align: center;
}

.lj-heading-label {
    display: block;

    margin-bottom: 12px;

    color: var(--orange-dark);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.lj-heading h2 {
    margin: 0 0 15px;

    font-size: clamp(40px, 5vw, 62px);
    line-height: .98;
}

.lj-heading p {
    margin: 0;

    color: var(--text);

    font-size: 14px;
    line-height: 1.8;
}

.lj-dark-heading p {
    color: #ccc;
}


/* =========================================================
   HAND PALLET TRUCK CONTENT
   ========================================================= */

.lj-content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.lj-content-card {
    position: relative;

    padding: 32px;

    background: #fff;

    border: 1px solid var(--border);
    border-radius: 12px;

    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.lj-content-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 5px;
    height: 0;

    background: var(--orange);

    transition: height .3s ease;
}

.lj-content-card:hover {
    transform: translateY(-5px);

    border-color: var(--orange);

    box-shadow: 0 20px 45px rgba(0,0,0,.08);
}

.lj-content-card:hover::before {
    height: 100%;
}

.lj-number {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 50%;

    background: rgba(250,166,26,.13);

    color: var(--orange-dark);

    font-family: fantasy;
    font-size: 22px;
}

.lj-content-card h3 {
    margin: 0 0 12px;

    font-size: 29px;
}

.lj-content-card p {
    margin: 0;

    color: var(--text);

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   OPTIONS
   ========================================================= */

.lj-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.lj-option {
    padding: 32px;

    background: #fff;

    border: 1px solid var(--border);
    border-radius: 12px;

    transition: .3s ease;
}

.lj-option:hover {
    border-color: var(--orange);
    box-shadow: 0 18px 45px rgba(0,0,0,.07);
    transform: translateY(-4px);
}

.lj-option-no {
    color: var(--orange);

    font-family: fantasy;
    font-size: 44px;

    line-height: 1;

    margin-bottom: 15px;
}

.lj-option h3 {
    margin: 0 0 15px;

    font-size: 29px;
}

.lj-option p {
    margin: 0 0 12px;

    color: var(--text);

    font-size: 14px;
    line-height: 1.8;
}

.lj-option ul {
    margin: 12px 0 0;
    padding-left: 20px;
}

.lj-option li {
    margin-bottom: 8px;

    color: var(--text);

    font-size: 14px;
    line-height: 1.6;
}

.lj-option li::marker {
    color: var(--orange);
}


/* =========================================================
   TECHNICAL SPECIFICATIONS
   ========================================================= */

.lj-spec-section {
    padding: 100px 0;

    background: #f7f7f7;
}

.lj-spec-table-wrap {
    width: 100%;

    overflow-x: auto;

    border-radius: 14px;

    background: #fff;

    box-shadow: 0 18px 55px rgba(0,0,0,.08);
}

.lj-spec-table {
    width: 100%;

    min-width: 1000px;

    border-collapse: collapse;

    background: #fff;
}

.lj-spec-table th {
    padding: 19px 20px;

    background: var(--black);
    color: #fff;

    text-align: left;

    font-size: 13px;
    font-weight: 600;

    border-right: 1px solid #333;
}

.lj-spec-table th:first-child {
    width: 38%;
}

.lj-spec-table td {
    padding: 16px 20px;

    border-bottom: 1px solid #e9e9e9;

    color: #555;

    font-size: 13px;

    vertical-align: middle;
}

.lj-spec-table tr:nth-child(even) td {
    background: #fafafa;
}

.lj-spec-table tbody tr:hover td {
    background: #fff4df;
}

.lj-spec-table td:first-child {
    color: #222;
    font-weight: 600;
}

.lj-spec-reference {
    color: var(--orange-dark) !important;

    font-weight: 600;

    white-space: nowrap;
}

.lj-spec-value {
    color: #333 !important;

    font-weight: 500;

    white-space: nowrap;
}


/* =========================================================
   SPECIFICATION NOTE
   ========================================================= */

.lj-spec-note {
    margin-top: 18px;

    display: flex;
    align-items: center;
    gap: 10px;

    color: #666;

    font-size: 13px;
}

.lj-spec-note strong {
    color: #222;
}


/* =========================================================
   PUMP / HANDLE / WHEEL
   ========================================================= */

.lj-equipment {
    padding: 90px 0;

    background: var(--black);

    color: #fff;
}

.lj-equipment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 25px;
}

.lj-equipment-card {
    padding: 35px;

    background: #202020;

    border: 1px solid #363636;
    border-radius: 13px;
}

.lj-equipment-card h3 {
    margin: 0 0 22px;

    color: var(--orange);

    font-size: 30px;
}

.lj-equipment-line {
    padding: 14px 0;

    border-bottom: 1px solid #363636;

    color: #ddd;

    font-size: 14px;

    line-height: 1.7;
}

.lj-equipment-line:last-child {
    border-bottom: 0;
}

.lj-equipment-line strong {
    color: #fff;
}


/* =========================================================
   COMPLIANCE
   ========================================================= */

.lj-compliance {
    padding: 70px 0;

    background: #fff6e6;
}

.lj-compliance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 22px;
}

.lj-compliance-card {
    padding: 30px;

    background: #fff;

    border: 1px solid rgba(250,166,26,.35);

    border-radius: 12px;
}

.lj-compliance-card h3 {
    margin: 0 0 10px;

    font-size: 27px;
}

.lj-compliance-card p {
    margin: 0;

    color: var(--text);

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .lj-hero-inner {
        grid-template-columns: 1fr 1fr;
    }

    .lj-hero h1 {
        font-size: 70px;
    }

    .lj-image-circle {
        width: 410px;
        height: 410px;
    }

}


@media (max-width: 900px) {

    .lj-hero {
        min-height: auto;
        padding: 55px 0 20px;
    }

    .lj-hero-inner {
        grid-template-columns: 1fr;

        min-height: auto;

        text-align: center;
    }

    .lj-hero-content {
        padding: 10px 0;
    }

    .lj-hero-image {
        min-height: 430px;
    }

    .lj-content-grid,
    .lj-options-grid {
        grid-template-columns: 1fr 1fr;
    }

    .lj-equipment-grid,
    .lj-compliance-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 767px) {

    .lj-container {
        width: calc(100% - 30px);
    }

    .lj-hero-inner {
        width: calc(100% - 30px);
    }

    .lj-hero h1 {
        font-size: 54px;
    }

    .lj-model {
        font-size: 18px;
    }

    .lj-hero-image {
        min-height: 330px;
    }

    .lj-image-circle {
        width: 285px;
        height: 285px;
    }

    .lj-remark-inner {
        display: block;
    }

    .lj-remark-title {
        margin-bottom: 8px;
    }

    .lj-section,
    .lj-spec-section,
    .lj-equipment {
        padding: 65px 0;
    }

    .lj-heading {
        margin-bottom: 35px;
    }

    .lj-content-grid,
    .lj-options-grid {
        grid-template-columns: 1fr;
    }

    .lj-content-card,
    .lj-option,
    .lj-equipment-card {
        padding: 25px;
    }

}


@media (max-width: 480px) {

    .lj-hero h1 {
        font-size: 45px;
    }

    .lj-label {
        font-size: 10px;
        padding: 8px 13px;
    }

    .lj-hero-image {
        min-height: 280px;
    }

    .lj-image-circle {
        width: 230px;
        height: 230px;
    }

    .lj-heading h2 {
        font-size: 39px;
    }

    .lj-content-card h3,
    .lj-option h3 {
        font-size: 25px;
    }

}

.lj-compliance {
    padding: 65px 0;
    background: #fff8eb;
}

.lj-container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

/*  next page csss*/

/* =========================================================
   HAND PALLET WEIGHING TRUCK
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;500;600;700&display=swap');

.pwt-page {
    --orange: #FAA61A;
    --orange-dark: #d98900;
    --black: #171717;
    --dark: #232323;
    --text: #555;
    --muted: #777;
    --light: #f7f7f7;
    --border: #e6e6e6;
    --white: #fff;

    font-family: 'Poppins', sans-serif;
    color: var(--black);
    background: #fff;
    overflow: hidden;
}

.pwt-page *,
.pwt-page *::before,
.pwt-page *::after {
    box-sizing: border-box;
}

.pwt-page h1,
.pwt-page h2,
.pwt-page h3,
.pwt-page h4 {
    font-family: fantasy;
    font-weight: 400;
}

.pwt-page p,
.pwt-page li,
.pwt-page td,
.pwt-page th {
    font-family: 'Poppins', sans-serif;
}

.pwt-container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   HERO
   ========================================================= */

.pwt-hero {
    width: 100%;
    min-height: 680px;

    position: relative;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 82% 48%,
            rgba(250,166,26,.16),
            rgba(250,166,26,.04) 32%,
            transparent 62%
        ),
        #fff;
}

.pwt-hero::before {
    content: "";

    position: absolute;

    width: 540px;
    height: 540px;

    right: -220px;
    top: -210px;

    border-radius: 50%;

    border: 80px solid rgba(250,166,26,.08);
}

.pwt-hero::after {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    left: -190px;
    bottom: -200px;

    border-radius: 50%;

    background: rgba(250,166,26,.06);
}

.pwt-hero-inner {
    width: min(1300px, calc(100% - 50px));

    min-height: 680px;

    margin: 0 auto;

    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 60% 25%;

    align-items: center;
}

.pwt-hero-content {
    padding: 50px 0;
}

.pwt-label {
    display: inline-flex;
    align-items: center;

    padding: 9px 18px;

    background: var(--orange);
    color: #fff;

    border-radius: 50px;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    margin-bottom: 25px;
}

.pwt-hero h1 {
    margin: 0;

    font-size: clamp(50px, 6.8vw, 92px);
    line-height: .9;

    color: var(--black);
}

.pwt-hero h1 span {
    display: block;
    color: var(--orange);
}

.pwt-model {
    margin-top: 28px;

    display: inline-block;

    font-size: 20px;
    font-weight: 600;

    color: #333;
}

.pwt-model strong {
    color: var(--orange-dark);
}

.pwt-hero-image {
    min-height: 600px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

.pwt-image-circle {
    width: 500px;
    height: 500px;

    position: absolute;

    border-radius: 50%;

    background: #fff;

    box-shadow:
        0 30px 90px rgba(0,0,0,.08),
        inset 0 0 0 1px rgba(250,166,26,.15);
}

.pwt-hero-image img {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 730px;

    height: auto;

    object-fit: contain;

    filter: drop-shadow(0 25px 28px rgba(0,0,0,.14));

    transition: transform .4s ease;
}

.pwt-hero-image:hover img {
    transform: scale(1.025);
}


/* =========================================================
   MODEL STRIP
   ========================================================= */

.pwt-model-strip {
    background: var(--orange);

    padding: 25px 0;
}

.pwt-model-strip-inner {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 45px;

    flex-wrap: wrap;
}

.pwt-model-box {
    display: flex;
    align-items: center;
    gap: 12px;

    color: #fff;
}

.pwt-model-box span {
    font-size: 13px;
    opacity: .85;
}

.pwt-model-box strong {
    font-family: fantasy;

    font-size: 27px;
    font-weight: 400;
}


/* =========================================================
   COMMON SECTION
   ========================================================= */

.pwt-section {
    padding: 95px 0;
}

.pwt-section.gray {
    background: var(--light);
}

.pwt-heading {
    max-width: 850px;

    margin: 0 auto 55px;

    text-align: center;
}

.pwt-heading-label {
    display: block;

    margin-bottom: 12px;

    color: var(--orange-dark);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.pwt-heading h2 {
    margin: 0 0 15px;

    font-size: clamp(40px, 5vw, 62px);
    line-height: .98;
}

.pwt-heading p {
    margin: 0;

    color: var(--text);

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   TECHNICAL SPECIFICATIONS
   ========================================================= */

.pwt-spec-section {
    padding: 100px 0;

    background: #f7f7f7;
}

.pwt-spec-table-wrap {
    width: 100%;

    overflow-x: auto;

    border-radius: 14px;

    background: #fff;

    box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

.pwt-spec-table {
    width: 100%;

    min-width: 900px;

    border-collapse: collapse;

    background: #fff;
}

.pwt-spec-table th {
    padding: 20px;

    background: var(--black);

    color: #fff;

    text-align: left;

    font-size: 13px;
    font-weight: 600;

    border-right: 1px solid #333;
}

.pwt-spec-table th:first-child {
    width: 42%;
}

.pwt-spec-table td {
    padding: 16px 20px;

    border-bottom: 1px solid #e9e9e9;

    color: #555;

    font-size: 13px;

    vertical-align: middle;
}

.pwt-spec-table tbody tr:nth-child(even) td {
    background: #fafafa;
}

.pwt-spec-table tbody tr:hover td {
    background: #fff4df;
}

.pwt-spec-table td:first-child {
    color: #222;

    font-weight: 600;
}

.pwt-symbol {
    color: var(--orange-dark) !important;

    font-weight: 600;

    white-space: nowrap;
}

.pwt-value {
    color: #333 !important;

    font-weight: 500;

    white-space: nowrap;
}


/* =========================================================
   FUNCTIONS
   ========================================================= */

.pwt-functions {
    padding: 95px 0;

    background: #fff;
}

.pwt-functions-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;
}

.pwt-function-card {
    position: relative;

    padding: 32px;

    background: #fff;

    border: 1px solid var(--border);

    border-radius: 13px;

    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.pwt-function-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 5px;
    height: 0;

    background: var(--orange);

    transition: height .3s ease;
}

.pwt-function-card:hover {
    transform: translateY(-5px);

    border-color: var(--orange);

    box-shadow: 0 20px 45px rgba(0,0,0,.08);
}

.pwt-function-card:hover::before {
    height: 100%;
}

.pwt-function-number {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 50%;

    background: rgba(250,166,26,.13);

    color: var(--orange-dark);

    font-family: fantasy;

    font-size: 23px;
}

.pwt-function-card h3 {
    margin: 0 0 12px;

    font-size: 28px;
}

.pwt-function-card p {
    margin: 0;

    color: var(--text);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   PRODUCT DETAILS
   ========================================================= */

.pwt-details {
    padding: 95px 0;

    background: var(--black);

    color: #fff;
}

.pwt-dark-heading p {
    color: #ccc;
}

.pwt-details-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;
}

.pwt-detail-card {
    padding: 35px;

    background: #202020;

    border: 1px solid #373737;

    border-radius: 13px;

    transition: .3s ease;
}

.pwt-detail-card:hover {
    border-color: rgba(250,166,26,.65);

    transform: translateY(-4px);
}

.pwt-detail-card h3 {
    margin: 0 0 20px;

    color: var(--orange);

    font-size: 31px;
}

.pwt-detail-line {
    padding: 14px 0;

    border-bottom: 1px solid #363636;

    color: #ddd;

    font-size: 14px;

    line-height: 1.7;
}

.pwt-detail-line:last-child {
    border-bottom: 0;
}

.pwt-detail-line strong {
    color: #fff;
}


/* =========================================================
   PROVIDER / TECHNICAL DESCRIPTION
   ========================================================= */

.pwt-provider {
    padding: 90px 0;

    background: #fff6e6;
}

.pwt-provider-box {
    padding: 45px;

    background: #fff;

    border-radius: 15px;

    border: 1px solid rgba(250,166,26,.3);

    box-shadow: 0 18px 50px rgba(0,0,0,.06);
}

.pwt-provider-title {
    margin: 0 0 30px;

    color: var(--orange-dark);

    font-family: fantasy;

    font-size: 35px;
}

.pwt-provider-list {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.pwt-provider-item {
    padding: 22px;

    background: #fafafa;

    border-radius: 10px;

    border-left: 4px solid var(--orange);
}

.pwt-provider-item p {
    margin: 0;

    color: var(--text);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .pwt-hero-inner {
        grid-template-columns: 1fr 1fr;
    }

    .pwt-hero h1 {
        font-size: 68px;
    }

    .pwt-image-circle {
        width: 410px;
        height: 410px;
    }

}


@media (max-width: 900px) {

    .pwt-hero {
        min-height: auto;

        padding: 55px 0 20px;
    }

    .pwt-hero-inner {
        grid-template-columns: 1fr;

        min-height: auto;

        text-align: center;
    }

    .pwt-hero-content {
        padding: 10px 0;
    }

    .pwt-hero-image {
        min-height: 430px;
    }

    .pwt-functions-grid,
    .pwt-details-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pwt-provider-list {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 767px) {

    .pwt-container {
        width: calc(100% - 30px);
    }

    .pwt-hero-inner {
        width: calc(100% - 30px);
    }

    .pwt-hero h1 {
        font-size: 53px;
    }

    .pwt-hero-image {
        min-height: 340px;
    }

    .pwt-image-circle {
        width: 290px;
        height: 290px;
    }

    .pwt-model-strip-inner {
        gap: 18px;

        justify-content: flex-start;
    }

    .pwt-model-box {
        width: 100%;

        justify-content: center;
    }

    .pwt-section,
    .pwt-spec-section,
    .pwt-functions,
    .pwt-details,
    .pwt-provider {
        padding: 65px 0;
    }

    .pwt-heading {
        margin-bottom: 35px;
    }

    .pwt-functions-grid,
    .pwt-details-grid {
        grid-template-columns: 1fr;
    }

    .pwt-function-card,
    .pwt-detail-card,
    .pwt-provider-box {
        padding: 25px;
    }

}


@media (max-width: 480px) {

    .pwt-hero h1 {
        font-size: 44px;
    }

    .pwt-hero-image {
        min-height: 285px;
    }

    .pwt-image-circle {
        width: 235px;
        height: 235px;
    }

    .pwt-heading h2 {
        font-size: 39px;
    }

    .pwt-function-card h3,
    .pwt-detail-card h3 {
        font-size: 25px;
    }

    .pwt-provider-title {
        font-size: 29px;
    }

}
/* clodse next page css */


/* fdgsdfgsdg */

/* =========================================================
   LIFT JET - DRUM LIFTER & TILTER
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

.lj-drum-page {
    --orange: #FAA61A;
    --orange-dark: #df8d00;
    --black: #111111;
    --dark: #191919;
    --gray: #666666;
    --light: #f7f7f7;
    --border: #dedede;
    --white: #ffffff;

    width: 100%;
    overflow: hidden;
    background: #fff;
    color: var(--black);
    font-family: 'Poppins', sans-serif;
}

.lj-drum-page *,
.lj-drum-page *::before,
.lj-drum-page *::after {
    box-sizing: border-box;
}

.lj-drum-page img {
    max-width: 100%;
    display: block;
}

.lj-drum-page h1,
.lj-drum-page h2,
.lj-drum-page h3,
.lj-drum-page th {
    font-family: fantasy;
    font-weight: 400;
}

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


/* =========================================================
   HERO SECTION
========================================================= */

.lj-hero {
    width: 100%;
    min-height: 680px;
    position: relative;
    overflow: hidden;



    display: flex;
    align-items: center;
}

.lj-hero::before {
    content: "";
    position: absolute;

    width: 620px;
    height: 620px;

    right: -260px;
    top: -230px;

    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
}



.lj-hero::after {
    content: "";
    position: absolute;

    width: 420px;
    height: 420px;

    left: -230px;
    bottom: -240px;

    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
}

.lj-hero-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 45% 55%;

    align-items: center;
    min-height: 680px;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.lj-hero-content {
    padding: 60px 0;
}

.lj-pdf-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 9px 18px;

    border-radius: 50px;

    background: rgba(0,0,0,.14);
    border: 1px solid rgba(255,255,255,.3);

    color: #fff;

    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;

    letter-spacing: .5px;

    margin-bottom: 25px;
}

.lj-pdf-badge span {
    width: 8px;
    height: 8px;

    background: #fff;
    border-radius: 50%;
}

.lj-hero h1 {
    color: #090707;
    font-size: clamp(52px, 6vw, 88px);
    line-height: .92;
    margin: 0 0 25px;
}

.lj-hero-model {
    color: #111;

    font-family: 'Poppins', sans-serif;

    font-size: 24px;
    font-weight: 500;
}

.lj-hero-model strong {
    font-size: 38px;
    font-weight: 800;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.lj-hero-image {
    min-height: 580px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 35px;
}

.lj-hero-image-box {
    width: 100%;
    max-width: 650px;

    min-height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    background: rgba(255,255,255,.16);

    border: 1px solid rgba(255,255,255,.35);

    border-radius: 30px;

    backdrop-filter: blur(4px);

    box-shadow:
        0 30px 80px rgba(0,0,0,.16);
}

.lj-hero-image-box img {
    width: 100%;
    max-height: 500px;

    object-fit: contain;

    filter: drop-shadow(
        0 25px 25px rgba(0,0,0,.22)
    );
}


/* =========================================================
   BLACK INFO BAR
========================================================= */

.lj-info-bar {
    background: #111;
    padding: 25px 0;

    color: #fff;
}

.lj-info-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.lj-info-title {
    color: var(--orange);

    font-family: fantasy;

    font-size: 34px;
}

.lj-info-items {
    display: flex;
    align-items: center;

    gap: 35px;

    flex-wrap: wrap;
}

.lj-info-item {
    font-size: 13px;
    color: #ddd;
}

.lj-info-item strong {
    color: #fff;
    font-weight: 700;
}


/* =========================================================
   COMMON SECTION
========================================================= */

.lj-section {
    padding: 90px 0;
}

.lj-section-light {
    background: #f7f7f7;
}

.lj-section-heading {
    text-align: center;
    margin-bottom: 55px;
}

.lj-section-heading .lj-eyebrow {
    display: inline-block;

    color: var(--orange-dark);

    font-family: 'Poppins', sans-serif;

    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 2px;

    margin-bottom: 10px;
}

.lj-section-heading h2 {
    color: #111;

    font-size: clamp(42px, 5vw, 62px);

    line-height: 1;

    margin: 0;
}

.lj-section-heading::after {
    content: "";

    display: block;

    width: 70px;
    height: 4px;

    background: var(--orange);

    margin: 20px auto 0;
}


/* =========================================================
   DESCRIPTION / INTRO
========================================================= */

.lj-intro-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 65px;

    align-items: center;
}

.lj-intro-card {
    position: relative;

    padding: 45px;

    background: #111;

    color: #fff;

    border-radius: 25px;

    overflow: hidden;

    box-shadow:
        0 25px 60px rgba(0,0,0,.12);
}

.lj-intro-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -80px;
    top: -80px;

    border-radius: 50%;

    border: 1px solid rgba(250,166,26,.35);
}

.lj-intro-card h3 {
    color: var(--orange);

    font-size: 48px;

    line-height: 1;

    margin: 0 0 15px;
}

.lj-intro-card .lj-model-name {
    font-size: 20px;
    margin-bottom: 28px;
}

.lj-intro-card .lj-model-name strong {
    color: #fff;
    font-size: 32px;
}

.lj-intro-copy {
    font-size: 16px;

    line-height: 1.8;

    color: #ddd;
}

.lj-intro-copy strong {
    color: #fff;
}


/* =========================================================
   DRUM INFORMATION
========================================================= */

.lj-drum-info {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;

    margin-top: 30px;
}

.lj-drum-info-card {
    padding: 25px 20px;

    border: 1px solid #ddd;

    background: #fff;

    border-radius: 18px;

    text-align: center;

    transition: all .3s ease;
}

.lj-drum-info-card:hover {
    transform: translateY(-5px);

    border-color: var(--orange);

    box-shadow:
        0 15px 35px rgba(0,0,0,.08);
}

.lj-drum-info-card .label {
    display: block;

    color: #777;

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 8px;
}

.lj-drum-info-card .value {
    color: #111;

    font-size: 25px;

    font-weight: 700;
}


/* =========================================================
   DESCRIPTION FEATURES
========================================================= */

.lj-description-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}

.lj-description-card {
    position: relative;

    padding: 30px;

    background: #fff;

    border: 1px solid #e1e1e1;

    border-radius: 20px;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.lj-description-card:hover {
    transform: translateY(-6px);

    border-color: var(--orange);

    box-shadow:
        0 20px 40px rgba(0,0,0,.09);
}

.lj-description-card.full {
    grid-column: 1 / -1;
}

.lj-description-number {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--orange);

    color: #111;

    border-radius: 50%;

    font-size: 14px;
    font-weight: 800;

    margin-bottom: 18px;
}

.lj-description-card h3 {
    font-family: 'Poppins', sans-serif;

    font-size: 20px;

    font-weight: 700;

    margin: 0 0 12px;

    color: #111;
}

.lj-description-card p {
    margin: 0;

    color: #666;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   SPECIFICATION TABLE
========================================================= */

.lj-spec-wrapper {
    background: #fff;

    border-radius: 24px;

    border: 1px solid #ddd;

    overflow: hidden;

    box-shadow:
        0 20px 55px rgba(0,0,0,.07);
}

.lj-spec-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 24px 30px;

    background: #111;
}

.lj-spec-header h3 {
    color: var(--orange);

    font-size: 38px;

    margin: 0;
}

.lj-spec-pill {
    padding: 8px 17px;

    background: var(--orange);

    color: #111;

    border-radius: 50px;

    font-family: 'Poppins', sans-serif;

    font-size: 12px;

    font-weight: 700;
}

.lj-table-scroll {
    width: 100%;

    overflow-x: auto;

    -webkit-overflow-scrolling: touch;
}

.lj-spec-table {
    width: 100%;

    min-width: 1250px;

    border-collapse: collapse;

    font-family: 'Poppins', sans-serif;

    font-size: 12px;
}

.lj-spec-table th {
    background: var(--orange);

    color: #111;

    border: 1px solid rgba(0,0,0,.15);

    padding: 13px 9px;

    text-align: center;

    white-space: nowrap;

    font-size: 13px;
}

.lj-spec-table td {
    padding: 13px 9px;

    border: 1px solid #ddd;

    text-align: center;

    white-space: nowrap;

    color: #333;
}

.lj-spec-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.lj-spec-table tbody tr:hover {
    background: #fff3d8;
}

.lj-spec-table td:first-child {
    font-weight: 700;
    color: #111;
}


/* =========================================================
   MODEL SECTION
========================================================= */

.lj-model-section {
    padding: 90px 0;
    background: #111;
}

.lj-model-section .lj-section-heading h2 {
    color: #fff;
}

.lj-model-section .lj-section-heading .lj-eyebrow {
    color: var(--orange);
}

.lj-models-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.lj-model-card {
    background: #1e1e1e;

    border: 1px solid #333;

    border-radius: 22px;

    padding: 35px 30px;

    text-align: center;

    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease;
}

.lj-model-card:hover {
    transform: translateY(-7px);

    border-color: var(--orange);

    background: #242424;
}

.lj-model-card-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: var(--orange);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #111;

    font-size: 22px;
    font-weight: 800;
}

.lj-model-card h3 {
    font-family: 'Poppins', sans-serif;

    color: #fff;

    font-size: 23px;

    font-weight: 700;

    margin: 0 0 10px;
}

.lj-model-card p {
    margin: 0;

    color: #bbb;

    font-size: 15px;
}

.lj-model-card p strong {
    color: var(--orange);
}


/* =========================================================
   UNIT NOTE
========================================================= */

.lj-unit-note {
    text-align: center;

    margin-top: 30px;

    color: #777;

    font-size: 13px;
}

.lj-unit-note strong {
    color: #111;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .lj-hero-grid {
        grid-template-columns: 1fr 1fr;
    }

    .lj-hero h1 {
        font-size: 65px;
    }

    .lj-intro-grid {
        gap: 35px;
    }

}

@media (max-width: 900px) {

    .lj-hero {
        min-height: auto;
    }

    .lj-hero-grid {
        grid-template-columns: 1fr;

        min-height: auto;

        text-align: center;
    }

    .lj-hero-content {
        padding: 75px 0 20px;
    }

    .lj-hero-image {
        min-height: auto;

        padding: 25px 0 70px;
    }

    .lj-hero-image-box {
        max-width: 600px;

        min-height: 430px;
    }

    .lj-info-inner {
        flex-direction: column;
        text-align: center;
    }

    .lj-info-items {
        justify-content: center;
    }

    .lj-intro-grid {
        grid-template-columns: 1fr;
    }

    .lj-models-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 767px) {

    .lj-container {
        width: 90%;
    }

    .lj-section {
        padding: 60px 0;
    }

    .lj-hero h1 {
        font-size: 52px;
    }

    .lj-hero-model {
        font-size: 20px;
    }

    .lj-hero-model strong {
        font-size: 31px;
    }

    .lj-hero-image-box {
        min-height: 350px;

        padding: 20px;

        border-radius: 22px;
    }

    .lj-hero-image-box img {
        max-height: 340px;
    }

    .lj-info-title {
        font-size: 28px;
    }

    .lj-info-items {
        gap: 15px;
        flex-direction: column;
    }

    .lj-section-heading {
        margin-bottom: 40px;
    }

    .lj-section-heading h2 {
        font-size: 42px;
    }

    .lj-intro-card {
        padding: 30px 25px;
    }

    .lj-intro-card h3 {
        font-size: 40px;
    }

    .lj-drum-info {
        grid-template-columns: 1fr;
    }

    .lj-description-grid {
        grid-template-columns: 1fr;
    }

    .lj-description-card.full {
        grid-column: auto;
    }

    .lj-spec-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .lj-models-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 480px) {

    .lj-hero-content {
        padding-top: 55px;
    }

    .lj-hero h1 {
        font-size: 43px;
    }

    .lj-hero-image {
        padding-bottom: 50px;
    }

    .lj-hero-image-box {
        min-height: 285px;
    }

    .lj-hero-image-box img {
        max-height: 270px;
    }

    .lj-section-heading h2 {
        font-size: 36px;
    }

    .lj-spec-header {
        padding: 20px;
    }

    .lj-spec-header h3 {
        font-size: 30px;
    }

}


/* =========================================================
   WORDPRESS / ELEMENTOR SAFETY
========================================================= */

.lj-drum-page p:last-child {
    margin-bottom: 0;
}

.lj-drum-page a {
    text-decoration: none;
}



.chet-page {
    --orange: #FAA61A;
    --orange-dark: #d88900;
    --black: #171717;
    --dark: #232323;
    --dark-2: #2c2c2c;
    --text: #555;
    --muted: #777;
    --light: #f7f7f7;
    --border: #e5e5e5;
    --white: #fff;

    font-family: 'Poppins', sans-serif;
    color: var(--black);
    background: #fff;
    overflow: hidden;
}

.chet-page *,
.chet-page *::before,
.chet-page *::after {
    box-sizing: border-box;
}

.chet-page h1,
.chet-page h2,
.chet-page h3,
.chet-page h4 {
    font-family: fantasy;
    font-weight: 400;
}

.chet-page p,
.chet-page li,
.chet-page td,
.chet-page th {
    font-family: 'Poppins', sans-serif;
}

.chet-container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   HERO
   ========================================================= */

.chet-hero {
    position: relative;

    width: 100%;
    min-height: 700px;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 78% 48%,
            rgba(250,166,26,.17),
            rgba(250,166,26,.04) 30%,
            transparent 62%
        ),
        #fff;
}

.chet-hero::before {
    content: "";

    position: absolute;

    width: 570px;
    height: 570px;

    right: -250px;
    top: -230px;

    border-radius: 50%;

    border: 85px solid rgba(250,166,26,.08);
}

.chet-hero::after {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    left: -210px;
    bottom: -210px;

    border-radius: 50%;

    background: rgba(250,166,26,.06);
}

.chet-hero-inner {
    width: min(1300px, calc(100% - 50px));

    min-height: 700px;

    margin: 0 auto;

    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: 47% 53%;

    align-items: center;
}

.chet-hero-content {
    padding: 50px 0;
}

.chet-badge {
    display: inline-flex;
    align-items: center;

    padding: 10px 22px;

    background: var(--orange);

    color: #fff;

    border-radius: 50px;

    font-size: 17px;
    font-weight: 700;

    letter-spacing: .5px;

    margin-bottom: 28px;
}

.chet-hero h1 {
    margin: 0;

    color: var(--black);

    font-size: clamp(50px, 6.5vw, 90px);

    line-height: .92;
}

.chet-hero h1 span {
    display: block;

    color: var(--orange);
}

.chet-subtitle {
    margin-top: 25px;

    color: #333;

    font-size: 20px;
    font-weight: 600;
}

.chet-hero-visual {
    min-height: 600px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

.chet-visual-circle {
    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background: #fff;

    box-shadow:
        0 30px 90px rgba(0,0,0,.08),
        inset 0 0 0 1px rgba(250,166,26,.18);
}

.chet-hoist-visual {
    position: relative;
    z-index: 2;

    width: 300px;
    min-height: 420px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/*
 * Product image was not supplied as a separate image file/URL.
 * The visual below keeps the hero premium without inventing
 * an external image URL.
 */

.chet-hoist-top {
    position: relative;

    width: 260px;
    height: 95px;

    background: var(--orange);

    border-radius: 14px 14px 20px 20px;

    box-shadow:
        0 18px 35px rgba(0,0,0,.14);

    border: 5px solid #e49a12;
}

.chet-hoist-top::before {
    content: "";

    position: absolute;

    width: 85px;
    height: 35px;

    right: 28px;
    top: 25px;

    background: #292929;

    border-radius: 5px;
}

.chet-display {
    position: absolute;

    right: 38px;
    top: 33px;

    width: 60px;
    height: 20px;

    background: #101010;

    border-radius: 3px;
}

.chet-motor {
    width: 190px;
    height: 105px;

    margin-top: 0;

    background: #f3a30d;

    border-radius: 12px 12px 28px 28px;

    border: 4px solid #db9000;

    box-shadow:
        0 15px 25px rgba(0,0,0,.12);
}

.chet-chain {
    position: relative;

    width: 18px;
    height: 145px;

    background:
        repeating-linear-gradient(
            to bottom,
            #555 0,
            #555 5px,
            #ddd 5px,
            #ddd 10px
        );

    border-radius: 10px;
}

.chet-hook {
    position: relative;

    width: 60px;
    height: 65px;

    margin-top: -5px;
}

.chet-hook::before {
    content: "";

    position: absolute;

    width: 40px;
    height: 48px;

    left: 10px;
    top: 0;

    border: 8px solid #555;

    border-top: 0;

    border-radius: 0 0 25px 25px;
}

.chet-hook::after {
    content: "";

    position: absolute;

    width: 17px;
    height: 17px;

    left: 21px;
    bottom: 3px;

    border-radius: 50%;

    background: var(--orange);
}


/* =========================================================
   CAPACITY STRIP
   ========================================================= */

.chet-capacity-strip {
    padding: 25px 0;

    background: var(--orange);
}

.chet-capacity-inner {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 60px;

    flex-wrap: wrap;
}

.chet-capacity-item {
    display: flex;

    align-items: center;

    gap: 12px;

    color: #fff;
}

.chet-capacity-item span {
    font-size: 13px;

    opacity: .85;
}

.chet-capacity-item strong {
    font-family: fantasy;

    font-size: 28px;

    font-weight: 400;
}


/* =========================================================
   COMMON SECTION
   ========================================================= */

.chet-section {
    padding: 95px 0;
}

.chet-section.gray {
    background: var(--light);
}

.chet-heading {
    max-width: 900px;

    margin: 0 auto 55px;

    text-align: center;
}

.chet-heading-label {
    display: block;

    margin-bottom: 12px;

    color: var(--orange-dark);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.chet-heading h2 {
    margin: 0 0 15px;

    font-size: clamp(40px, 5vw, 62px);

    line-height: .98;
}

.chet-heading p {
    margin: 0;

    color: var(--text);

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================================
   FEATURES
   ========================================================= */

.chet-feature-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;
}

.chet-feature-card {
    position: relative;

    padding: 34px;

    background: #fff;

    border: 1px solid var(--border);

    border-radius: 14px;

    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.chet-feature-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 5px;
    height: 0;

    background: var(--orange);

    transition: height .3s ease;
}

.chet-feature-card:hover {
    transform: translateY(-5px);

    border-color: var(--orange);

    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.chet-feature-card:hover::before {
    height: 100%;
}

.chet-feature-number {
    width: 47px;
    height: 47px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    background: rgba(250,166,26,.13);

    border-radius: 50%;

    color: var(--orange-dark);

    font-family: fantasy;

    font-size: 23px;
}

.chet-feature-card h3 {
    margin: 0 0 12px;

    font-size: 28px;
}

.chet-feature-card p {
    margin: 0;

    color: var(--text);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   TECHNICAL PARAMETERS
   ========================================================= */

.chet-table-section {
    padding: 100px 0;

    background: #f6f6f6;
}

.chet-table-wrap {
    width: 100%;

    overflow-x: auto;

    border-radius: 14px;

    background: #fff;

    box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

.chet-table {
    width: 100%;

    min-width: 1500px;

    border-collapse: collapse;

    background: #fff;
}

.chet-table th {
    padding: 15px 11px;

    background: var(--black);

    color: #fff;

    border-right: 1px solid #373737;

    text-align: center;

    font-size: 11px;

    font-weight: 600;

    line-height: 1.35;
}

.chet-table td {
    padding: 12px 10px;

    border-bottom: 1px solid #e8e8e8;

    color: #555;

    text-align: center;

    font-size: 11px;

    white-space: nowrap;
}

.chet-table tbody tr:nth-child(even) td {
    background: #fafafa;
}

.chet-table tbody tr:hover td {
    background: #fff4df;
}

.chet-table td:first-child {
    color: #222;

    font-weight: 600;
}

.chet-table td:nth-child(2) {
    color: var(--orange-dark);

    font-weight: 600;
}


/* =========================================================
   DIMENSIONS
   ========================================================= */

.chet-dimensions {
    padding: 100px 0;

    background: #fff;
}

.chet-drawing-box {
    margin-bottom: 55px;

    padding: 35px;

    min-height: 320px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #f0f4f7,
            #e5ebef
        );

    border-radius: 15px;

    border: 1px solid #dde3e7;
}

.chet-drawing {
    position: relative;

    width: 500px;

    height: 300px;

    max-width: 100%;
}

/* Simplified engineering-style drawing */

.chet-drawing-body {
    position: absolute;

    left: 180px;
    top: 70px;

    width: 130px;
    height: 150px;

    border: 3px solid #888;

    background: rgba(255,255,255,.35);

    border-radius: 8px;
}

.chet-drawing-top {
    position: absolute;

    left: 140px;
    top: 35px;

    width: 210px;
    height: 55px;

    border: 3px solid #888;

    border-radius: 6px;
}

.chet-drawing-chain {
    position: absolute;

    left: 240px;
    top: 215px;

    width: 14px;
    height: 55px;

    border-left: 3px dashed #777;
}

.chet-drawing-hook {
    position: absolute;

    left: 225px;
    top: 260px;

    width: 45px;
    height: 35px;

    border: 4px solid #777;

    border-top: 0;

    border-radius: 0 0 20px 20px;
}

.chet-drawing-label {
    position: absolute;

    color: #666;

    font-size: 13px;

    font-weight: 600;
}

.chet-label-a {
    top: 8px;
    left: 230px;
}

.chet-label-h {
    left: 100px;
    top: 140px;
}

.chet-label-b {
    top: 60px;
    right: 75px;
}

.chet-label-d {
    bottom: 5px;
    left: 230px;
}


/* =========================================================
   SIZE SPECIFICATION
   ========================================================= */

.chet-size-table-wrap {
    width: 100%;

    overflow-x: auto;

    border-radius: 14px;

    box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

.chet-size-table {
    width: 100%;

    min-width: 1300px;

    border-collapse: collapse;

    background: #fff;
}

.chet-size-table th {
    padding: 15px 9px;

    background: var(--black);

    color: #fff;

    text-align: center;

    font-size: 11px;

    border-right: 1px solid #373737;
}

.chet-size-table td {
    padding: 11px 8px;

    border-bottom: 1px solid #e8e8e8;

    text-align: center;

    color: #555;

    font-size: 11px;

    white-space: nowrap;
}

.chet-size-table tr:nth-child(even) td {
    background: #fafafa;
}

.chet-size-table tbody tr:hover td {
    background: #fff4df;
}

.chet-size-table td:first-child {
    color: #222;

    font-weight: 600;
}

.chet-size-table td:nth-child(2) {
    color: var(--orange-dark);

    font-weight: 600;
}


/* =========================================================
   SINGLE SPEED
   ========================================================= */

.chet-single-speed {
    display: inline-block;

    padding: 8px 18px;

    margin-bottom: 20px;

    background: var(--orange);

    color: #fff;

    border-radius: 30px;

    font-size: 12px;

    font-weight: 700;

    font-style: italic;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .chet-hero-inner {
        grid-template-columns: 1fr 1fr;
    }

    .chet-hero h1 {
        font-size: 68px;
    }

    .chet-visual-circle {
        width: 410px;
        height: 410px;
    }

}


@media (max-width: 900px) {

    .chet-hero {
        min-height: auto;

        padding: 55px 0 25px;
    }

    .chet-hero-inner {
        grid-template-columns: 1fr;

        min-height: auto;

        text-align: center;
    }

    .chet-hero-content {
        padding: 10px 0;
    }

    .chet-hero-visual {
        min-height: 440px;
    }

    .chet-feature-grid {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 767px) {

    .chet-container {
        width: calc(100% - 30px);
    }

    .chet-hero-inner {
        width: calc(100% - 30px);
    }

    .chet-hero h1 {
        font-size: 52px;
    }

    .chet-badge {
        font-size: 14px;
    }

    .chet-hero-visual {
        min-height: 350px;
    }

    .chet-visual-circle {
        width: 290px;
        height: 290px;
    }

    .chet-hoist-top {
        width: 210px;
    }

    .chet-motor {
        width: 155px;
    }

    .chet-capacity-inner {
        gap: 18px;
    }

    .chet-capacity-item {
        width: 100%;

        justify-content: center;
    }

    .chet-section,
    .chet-table-section,
    .chet-dimensions {
        padding: 65px 0;
    }

    .chet-heading {
        margin-bottom: 35px;
    }

    .chet-feature-grid {
        grid-template-columns: 1fr;
    }

    .chet-feature-card {
        padding: 25px;
    }

    .chet-drawing-box {
        padding: 20px;
    }

}


@media (max-width: 480px) {

    .chet-hero h1 {
        font-size: 43px;
    }

    .chet-hero-visual {
        min-height: 300px;
    }

    .chet-visual-circle {
        width: 235px;
        height: 235px;
    }

    .chet-hoist-top {
        width: 170px;
        height: 70px;
    }

    .chet-motor {
        width: 130px;
        height: 85px;
    }

    .chet-chain {
        height: 105px;
    }

    .chet-hook {
        transform: scale(.8);
    }

    .chet-heading h2 {
        font-size: 39px;
    }

}

/* =========================================
   LJ OPTIONS - PREMIUM BOX DESIGN
========================================= */

.lj-options-section {
    width: 100%;
    padding: 50px 0 70px;
    background: #f4f6f8;
}

.lj-options-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}


/* =========================================
   MAIN OPTION BOX
========================================= */

.lj-option-group {
    background: #ffffff;
    border: 1px solid #e2e5e8;
    border-radius: 12px;
    padding: 28px 30px 32px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}


/* =========================================
   HEADING
========================================= */

.lj-option-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    margin-bottom: 8px;
    border-bottom: 2px solid #e5e7eb;
}

.lj-option-heading h3 {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 21px;
    font-weight: 700;
    color: #151515;
    line-height: 1.3;
}


/* =========================================
   WHEEL GRID
========================================= */

.lj-wheel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-top: 20px;
}

.lj-wheel-item {
    background: #f7f8fa;
    border: 1px solid #e4e7eb;
    border-radius: 10px;
    padding: 15px 12px 14px;
    text-align: center;
    transition: all 0.3s ease;
}

.lj-wheel-item:hover {
    transform: translateY(-5px);
    background: #ffffff;
    border-color: #cfd4da;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.09);
}


/* Image Area */

.lj-wheel-image {
    width: 100%;
    height: 155px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

.lj-wheel-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.35s ease;
}

.lj-wheel-item:hover .lj-wheel-image img {
    transform: scale(1.06);
}


/* Label */

.lj-wheel-item p {
    margin: 14px 0 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #222222;
}


/* =========================================
   HANDLE BOX
========================================= */

.lj-handle-group {
    margin-bottom: 0;
}

.lj-handle-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding-top: 20px;
}

.lj-handle-item {
    background: #f7f8fa;
    border: 1px solid #e4e7eb;
    border-radius: 10px;
    padding: 18px 20px 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.lj-handle-item:hover {
    transform: translateY(-5px);
    background: #ffffff;
    border-color: #cfd4da;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.09);
}


/* Handle Image */

.lj-handle-image {
    width: 100%;
    height: 175px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

.lj-handle-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.35s ease;
}

.lj-handle-item:hover .lj-handle-image img {
    transform: scale(1.04);
}


/* Handle Text */

.lj-handle-item p {
    margin: 15px 0 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: #222222;
}

.lj-handle-item p strong {
    font-weight: 700;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .lj-wheel-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lj-handle-grid {
        gap: 18px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .lj-options-section {
        padding: 30px 0 45px;
    }

    .lj-options-container {
        padding: 0 12px;
    }

    .lj-option-group {
        padding: 20px 15px 22px;
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .lj-option-heading {
        padding-bottom: 11px;
    }

    .lj-option-heading h3 {
        font-size: 18px;
    }

    .lj-wheel-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding-top: 15px;
    }

    .lj-wheel-item {
        padding: 10px 8px 12px;
        border-radius: 8px;
    }

    .lj-wheel-image {
        height: 105px;
    }

    .lj-wheel-item p {
        font-size: 12px;
        margin-top: 10px;
    }

    .lj-handle-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        padding-top: 15px;
    }

    .lj-handle-item {
        padding: 12px;
    }

    .lj-handle-image {
        height: 135px;
    }

    .lj-handle-item p {
        font-size: 12px;
        margin-top: 10px;
    }

}

.page-template button {
    background-color: #faa61a;
    border: 1px solid #000000;
}


/* =========================================================
   HAND PALLET WEIGHING TRUCK
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;500;600;700&display=swap');

.pwt-page {
    --orange: #FAA61A;
    --orange-dark: #d98900;
    --black: #171717;
    --dark: #232323;
    --text: #555;
    --muted: #777;
    --light: #f7f7f7;
    --border: #e6e6e6;
    --white: #fff;

    font-family: 'Poppins', sans-serif;
    color: var(--black);
    background: #fff;
    overflow: hidden;
}

.pwt-page *,
.pwt-page *::before,
.pwt-page *::after {
    box-sizing: border-box;
}

.pwt-page h1,
.pwt-page h2,
.pwt-page h3,
.pwt-page h4 {
    font-family: fantasy;
    font-weight: 400;
}

.pwt-page p,
.pwt-page li,
.pwt-page td,
.pwt-page th {
    font-family: 'Poppins', sans-serif;
}

.pwt-container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   HERO
   ========================================================= */

.pwt-hero {
    width: 100%;
    min-height: 680px;

    position: relative;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 82% 48%,
            rgba(250,166,26,.16),
            rgba(250,166,26,.04) 32%,
            transparent 62%
        ),
        #fff;
}

.pwt-hero::before {
    content: "";

    position: absolute;

    width: 540px;
    height: 540px;

    right: -220px;
    top: -210px;

    border-radius: 50%;

    border: 80px solid rgba(250,166,26,.08);
}

.pwt-hero::after {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    left: -190px;
    bottom: -200px;

    border-radius: 50%;

    background: rgba(250,166,26,.06);
}

.pwt-hero-inner {
    width: min(1300px, calc(100% - 50px));

    min-height: 680px;

    margin: 0 auto;

    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 65%  28%;

    align-items: center;
}

.pwt-hero-content {
    padding: 50px 0;
}

.pwt-label {
    display: inline-flex;
    align-items: center;

    padding: 9px 18px;

    background: var(--orange);
    color: #fff;

    border-radius: 50px;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    margin-bottom: 25px;
}

.pwt-hero h1 {
    margin: 0;

    font-size: clamp(50px, 6.8vw, 92px);
    line-height: .9;

    color: var(--black);
}

.pwt-hero h1 span {
    display: block;
    color: var(--orange);
}

.pwt-model {
    margin-top: 28px;

    display: inline-block;

    font-size: 20px;
    font-weight: 600;

    color: #333;
}

.pwt-model strong {
    color: var(--orange-dark);
}

.pwt-hero-image {
    min-height: 600px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

.pwt-image-circle {
    width: 500px;
    height: 500px;

    position: absolute;

    border-radius: 50%;

    background: #fff;

    box-shadow:
        0 30px 90px rgba(0,0,0,.08),
        inset 0 0 0 1px rgba(250,166,26,.15);
}

.pwt-hero-image img {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 730px;

    height: auto;

    object-fit: contain;

    filter: drop-shadow(0 25px 28px rgba(0,0,0,.14));

    transition: transform .4s ease;
}

.pwt-hero-image:hover img {
    transform: scale(1.025);
}


/* =========================================================
   MODEL STRIP
   ========================================================= */

.pwt-model-strip {
    background: var(--orange);

    padding: 25px 0;
}

.pwt-model-strip-inner {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 45px;

    flex-wrap: wrap;
}

.pwt-model-box {
    display: flex;
    align-items: center;
    gap: 12px;

    color: #fff;
}

.pwt-model-box span {
    font-size: 13px;
    opacity: .85;
}

.pwt-model-box strong {
    font-family: fantasy;

    font-size: 27px;
    font-weight: 400;
}


/* =========================================================
   COMMON SECTION
   ========================================================= */

.pwt-section {
    padding: 95px 0;
}

.pwt-section.gray {
    background: var(--light);
}

.pwt-heading {
    max-width: 850px;

    margin: 0 auto 55px;

    text-align: center;
}

.pwt-heading-label {
    display: block;

    margin-bottom: 12px;

    color: var(--orange-dark);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.pwt-heading h2 {
    margin: 0 0 15px;

    font-size: clamp(40px, 5vw, 62px);
    line-height: .98;
}

.pwt-heading p {
    margin: 0;

    color: var(--text);

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   TECHNICAL SPECIFICATIONS
   ========================================================= */

.pwt-spec-section {
    padding: 100px 0;

    background: #f7f7f7;
}

.pwt-spec-table-wrap {
    width: 100%;

    overflow-x: auto;

    border-radius: 14px;

    background: #fff;

    box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

.pwt-spec-table {
    width: 100%;

    min-width: 900px;

    border-collapse: collapse;

    background: #fff;
}

.pwt-spec-table th {
    padding: 20px;

    background: var(--black);

    color: #fff;

    text-align: left;

    font-size: 13px;
    font-weight: 600;

    border-right: 1px solid #333;
}

.pwt-spec-table th:first-child {
    width: 42%;
}

.pwt-spec-table td {
    padding: 16px 20px;

    border-bottom: 1px solid #e9e9e9;

    color: #555;

    font-size: 13px;

    vertical-align: middle;
}

.pwt-spec-table tbody tr:nth-child(even) td {
    background: #fafafa;
}

.pwt-spec-table tbody tr:hover td {
    background: #fff4df;
}

.pwt-spec-table td:first-child {
    color: #222;

    font-weight: 600;
}

.pwt-symbol {
    color: var(--orange-dark) !important;

    font-weight: 600;

    white-space: nowrap;
}

.pwt-value {
    color: #333 !important;

    font-weight: 500;

    white-space: nowrap;
}


/* =========================================================
   FUNCTIONS
   ========================================================= */

.pwt-functions {
    padding: 95px 0;

    background: #fff;
}

.pwt-functions-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;
}

.pwt-function-card {
    position: relative;

    padding: 32px;

    background: #fff;

    border: 1px solid var(--border);

    border-radius: 13px;

    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.pwt-function-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 5px;
    height: 0;

    background: var(--orange);

    transition: height .3s ease;
}

.pwt-function-card:hover {
    transform: translateY(-5px);

    border-color: var(--orange);

    box-shadow: 0 20px 45px rgba(0,0,0,.08);
}

.pwt-function-card:hover::before {
    height: 100%;
}

.pwt-function-number {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 50%;

    background: rgba(250,166,26,.13);

    color: var(--orange-dark);

    font-family: fantasy;

    font-size: 23px;
}

.pwt-function-card h3 {
    margin: 0 0 12px;

    font-size: 28px;
}

.pwt-function-card p {
    margin: 0;

    color: var(--text);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   PRODUCT DETAILS
   ========================================================= */

.pwt-details {
    padding: 95px 0;

    background: var(--black);

    color: #fff;
}

.pwt-dark-heading p {
    color: #ccc;
}

.pwt-details-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;
}

.pwt-detail-card {
    padding: 35px;

    background: #202020;

    border: 1px solid #373737;

    border-radius: 13px;

    transition: .3s ease;
}

.pwt-detail-card:hover {
    border-color: rgba(250,166,26,.65);

    transform: translateY(-4px);
}

.pwt-detail-card h3 {
    margin: 0 0 20px;

    color: var(--orange);

    font-size: 31px;
}

.pwt-detail-line {
    padding: 14px 0;

    border-bottom: 1px solid #363636;

    color: #ddd;

    font-size: 14px;

    line-height: 1.7;
}

.pwt-detail-line:last-child {
    border-bottom: 0;
}

.pwt-detail-line strong {
    color: #fff;
}


/* =========================================================
   PROVIDER / TECHNICAL DESCRIPTION
   ========================================================= */

.pwt-provider {
    padding: 90px 0;

    background: #fff6e6;
}

.pwt-provider-box {
    padding: 45px;

    background: #fff;

    border-radius: 15px;

    border: 1px solid rgba(250,166,26,.3);

    box-shadow: 0 18px 50px rgba(0,0,0,.06);
}

.pwt-provider-title {
    margin: 0 0 30px;

    color: var(--orange-dark);

    font-family: fantasy;

    font-size: 35px;
}

.pwt-provider-list {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.pwt-provider-item {
    padding: 22px;

    background: #fafafa;

    border-radius: 10px;

    border-left: 4px solid var(--orange);
}

.pwt-provider-item p {
    margin: 0;

    color: var(--text);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .pwt-hero-inner {
        grid-template-columns: 1fr 1fr;
    }

    .pwt-hero h1 {
        font-size: 68px;
    }

    .pwt-image-circle {
        width: 410px;
        height: 410px;
    }

}


@media (max-width: 900px) {

    .pwt-hero {
        min-height: auto;

        padding: 55px 0 20px;
    }

    .pwt-hero-inner {
        grid-template-columns: 1fr;

        min-height: auto;

        text-align: center;
    }

    .pwt-hero-content {
        padding: 10px 0;
    }

    .pwt-hero-image {
        min-height: 430px;
    }

    .pwt-functions-grid,
    .pwt-details-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pwt-provider-list {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 767px) {

    .pwt-container {
        width: calc(100% - 30px);
    }

    .pwt-hero-inner {
        width: calc(100% - 30px);
    }

    .pwt-hero h1 {
        font-size: 53px;
    }

    .pwt-hero-image {
        min-height: 340px;
    }

    .pwt-image-circle {
        width: 290px;
        height: 290px;
    }

    .pwt-model-strip-inner {
        gap: 18px;

        justify-content: flex-start;
    }

    .pwt-model-box {
        width: 100%;

        justify-content: center;
    }

    .pwt-section,
    .pwt-spec-section,
    .pwt-functions,
    .pwt-details,
    .pwt-provider {
        padding: 65px 0;
    }

    .pwt-heading {
        margin-bottom: 35px;
    }

    .pwt-functions-grid,
    .pwt-details-grid {
        grid-template-columns: 1fr;
    }

    .pwt-function-card,
    .pwt-detail-card,
    .pwt-provider-box {
        padding: 25px;
    }

}


@media (max-width: 480px) {

    .pwt-hero h1 {
        font-size: 44px;
    }

    .pwt-hero-image {
        min-height: 285px;
    }

    .pwt-image-circle {
        width: 235px;
        height: 235px;
    }

    .pwt-heading h2 {
        font-size: 39px;
    }

    .pwt-function-card h3,
    .pwt-detail-card h3 {
        font-size: 25px;
    }

    .pwt-provider-title {
        font-size: 29px;
    }

}
