/* =========================================================
   DALTON — TANGGA MULTIFUNGSI
   STEP 1
   FOUNDATION + HEADER + HERO
========================================================= */


/* =========================================================
   01. VARIABLES
========================================================= */

:root {

    --orange: #ff6a00;
    --orange-dark: #dc5700;
    --orange-light: #fff3e8;

    --dark: #17212b;
    --dark-soft: #26333f;

    --text: #1b2732;
    --muted: #66727d;

    --white: #ffffff;
    --bg: #f5f7f9;
    --border: #dce3e8;

    --green: #15945a;

    --container: 1180px;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;

    --shadow-sm:
        0 4px 14px rgba(18, 30, 40, .06);

    --shadow-md:
        0 12px 30px rgba(18, 30, 40, .10);

    --shadow-lg:
        0 24px 60px rgba(18, 30, 40, .14);
}


/* =========================================================
   02. RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    margin: 0;

    font-family:
        "Segoe UI",
        Inter,
        Arial,
        sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
}


img {
    display: block;
    max-width: 100%;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
textarea,
select {
    font-family: inherit;
}


/* =========================================================
   03. GLOBAL CONTAINER
========================================================= */

.section-container,
.header-container,
.footer-container {

    width:
        min(
            calc(100% - 48px),
            var(--container)
        );

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   04. HEADER
========================================================= */

.site-header {

    position: relative;

    z-index: 1000;

    width: 100%;

    background:
        rgba(255, 255, 255, .96);

    border-bottom:
        1px solid var(--border);

    backdrop-filter:
        blur(14px);

    -webkit-backdrop-filter:
        blur(14px);
}


/* =========================================================
   HEADER CONTAINER
========================================================= */

.header-container {

    min-height: 68px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 28px;
}


/* =========================================================
   BRAND / LOGO
========================================================= */

.brand {

    display: flex;

    align-items: center;

    justify-content: flex-start;

    width: 145px;
    height: 42px;

    flex: 0 0 145px;

    overflow: hidden;

    text-decoration: none;
}


/* =========================================================
   LOGO IMAGE
========================================================= */

.brand-logo {

    display: block;

    width: 135px !important;
    height: 40px !important;

    max-width: 135px !important;
    max-height: 40px !important;

    min-width: 0 !important;
    min-height: 0 !important;

    object-fit: contain !important;

    object-position: left center;

    margin: 0 !important;
    padding: 0 !important;

    border: 0;

    transition:
        transform .25s ease;
}


/* =========================================================
   LOGO HOVER
========================================================= */

.brand:hover .brand-logo {

    transform: scale(1.02);
}


/* =========================================================
   HAPUS BRAND LAMA
========================================================= */

.brand-mark,
.brand-text {

    display: none !important;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .header-container {

        gap: 20px;
    }

    .brand {

        width: 125px;
        height: 38px;

        flex: 0 0 125px;
    }

    .brand-logo {

        width: 120px !important;
        height: 36px !important;

        max-width: 120px !important;
        max-height: 36px !important;
    }

}


@media (max-width: 600px) {

    .header-container {

        min-height: 62px;

        gap: 14px;
    }

    .brand {

        width: 110px;
        height: 34px;

        flex: 0 0 110px;
    }

    .brand-logo {

        width: 105px !important;
        height: 32px !important;

        max-width: 105px !important;
        max-height: 32px !important;
    }

}

/* =========================================================
   NAVIGATION
========================================================= */

.main-navigation {

    display: flex;

    align-items: center;

    gap: 28px;

    margin-left: auto;

    margin-right: 12px;
}


.main-navigation a {

    position: relative;

    padding: 5px 0;

    color: #56636d;

    font-size: 11px;

    font-weight: 600;

    transition:
        color .25s ease;
}


.main-navigation a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -5px;

    width: 0;

    height: 2px;

    border-radius: 20px;

    background: var(--orange);

    transition:
        width .25s ease;
}


.main-navigation a:hover {

    color: var(--orange);
}


.main-navigation a:hover::after {

    width: 100%;
}


/* =========================================================
   HEADER CONTACT
========================================================= */

.header-contact {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 36px;

    padding:
        0 15px;

    border-radius: 7px;

    background: var(--dark);

    color: var(--white);

    font-size: 10px;

    font-weight: 700;

    transition:
        background .25s ease,
        transform .25s ease;
}


.header-contact:hover {

    background: var(--orange);

    transform:
        translateY(-1px);
}


/* =========================================================
   05. HERO
========================================================= */

.product-hero {

    position: relative;

    overflow: hidden;

    background:

        linear-gradient(
            135deg,
            #f8fafb 0%,
            #ffffff 55%,
            #f1f4f6 100%
        );

    border-bottom:
        1px solid var(--border);
}


/* Technical pattern */

.product-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    opacity: .55;

    background-image:

        radial-gradient(
            #d8dfe4 1px,
            transparent 1px
        );

    background-size: 16px 16px;

    mask-image:

        linear-gradient(
            to right,
            black 0%,
            transparent 75%
        );
}


/* =========================================================
   HERO CONTAINER
========================================================= */

.hero-container {

    position: relative;

    z-index: 2;

    width:
        min(
            calc(100% - 48px),
            var(--container)
        );

    min-height: 570px;

    margin:
        0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, .9fr)
        minmax(420px, 1.1fr);

    align-items: center;

    gap: 65px;

    padding:
        70px 0;
}


/* =========================================================
   06. HERO VISUAL
========================================================= */

.hero-visual {

    position: relative;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;
}


.hero-image-frame {

    position: relative;

    width: 100%;

    max-width: 550px;

    min-height: 400px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    padding: 24px;

    border:
        1px solid #dce3e8;

    border-radius:
        var(--radius-lg);

    background:

        linear-gradient(
            145deg,
            #eef2f4,
            #ffffff
        );

    box-shadow:
        var(--shadow-lg);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}


.hero-image-frame:hover {

    transform:
        translateY(-5px);

    box-shadow:
        0 30px 70px
        rgba(18, 30, 40, .17);
}


.hero-image-frame img {

    width: 100%;

    height: 400px;

    object-fit: contain;

    position: relative;

    z-index: 1;
}


/* =========================================================
   PRODUCT BADGE
========================================================= */

.product-badge {

    position: absolute;

    top: 18px;

    left: 18px;

    z-index: 5;

    display: inline-flex;

    align-items: center;

    padding:
        6px 10px;

    border-radius: 6px;

    background:
        var(--orange);

    color:
        var(--white);

    font-size: 9px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .5px;

    box-shadow:
        0 6px 16px
        rgba(255, 106, 0, .22);
}


/* =========================================================
   IMAGE CAPTION
========================================================= */

.hero-image-caption {

    width: 100%;

    max-width: 550px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding:
        12px 4px 0;
}


.hero-image-caption span {

    color: #87929b;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1px;
}


.hero-image-caption strong {

    color: var(--dark);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .4px;
}


/* =========================================================
   07. HERO CONTENT
========================================================= */

.hero-content {

    max-width: 590px;
}


/* =========================================================
   EYEBROW
========================================================= */

.eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin-bottom: 16px;

    padding:
        6px 11px;

    border:
        1px solid #ffd1af;

    border-radius: 999px;

    background:
        var(--orange-light);

    color:
        var(--orange-dark);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.eyebrow::before {

    content: "";

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background:
        var(--orange);
}


/* =========================================================
   HERO TITLE
========================================================= */

.hero-content h1 {

    max-width: 650px;

    margin-bottom: 16px;

    color: var(--dark);

    font-size:
        clamp(
            40px,
            5vw,
            62px
        );

    line-height:
        .98;

    letter-spacing:
        -2.5px;

    font-weight:
        850;
}


/* =========================================================
   HERO META
========================================================= */

.hero-meta {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 17px;

    color:
        #66727c;

    font-size: 11px;

    font-weight: 500;
}


.hero-meta strong {

    color:
        var(--dark);

    font-weight: 750;
}


.meta-divider {

    color:
        #b8c0c6;

    font-weight: 700;
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-description {

    max-width: 570px;

    margin-bottom: 22px;

    color:
        var(--muted);

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   08. HERO HIGHLIGHTS
========================================================= */

.hero-highlights {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 27px;
}


.hero-highlight {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding:
        7px 10px;

    border:
        1px solid var(--border);

    border-radius: 7px;

    background:
        rgba(255,255,255,.85);

    color:
        #52606a;

    font-size: 10px;

    font-weight: 650;

    box-shadow:
        0 2px 8px
        rgba(20,30,40,.03);
}


.highlight-check {

    width: 16px;
    height: 16px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        #e7f8ef;

    color:
        var(--green);

    font-size: 9px;

    font-weight: 900;
}


/* =========================================================
   09. HERO ACTIONS
========================================================= */

.hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}


.btn {

    min-height: 43px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding:
        0 19px;

    border-radius: 8px;

    font-size: 11px;

    font-weight: 750;

    transition:
        all .25s ease;
}


/* Primary */

.btn-primary {

    background:
        var(--orange);

    color:
        var(--white);

    box-shadow:
        0 7px 18px
        rgba(255,106,0,.20);
}


.btn-primary:hover {

    background:
        var(--orange-dark);

    transform:
        translateY(-2px);

    box-shadow:
        0 11px 25px
        rgba(255,106,0,.27);
}


/* Outline */

.btn-outline {

    background:
        var(--white);

    color:
        var(--dark);

    border:
        1px solid #cfd8de;
}


.btn-outline:hover {

    border-color:
        var(--orange);

    color:
        var(--orange);

    transform:
        translateY(-2px);

    box-shadow:
        var(--shadow-sm);
}


/* =========================================================
   10. TABLET
========================================================= */

@media (max-width: 950px) {

    .main-navigation {

        display: none;
    }


    .hero-container {

        grid-template-columns: 1fr;

        gap: 45px;

        padding:
            55px 0;
    }


    .hero-content {

        order: 1;

        max-width: 700px;
    }


    .hero-visual {

        order: 2;
    }


    .hero-image-frame {

        max-width: 620px;
    }

}


/* =========================================================
   11. MOBILE
========================================================= */

@media (max-width: 600px) {

    .section-container,
    .header-container,
    .footer-container,
    .hero-container {

        width:
            calc(100% - 28px);
    }


    .header-container {

        min-height: 60px;
    }


    .brand-mark {

        width: 29px;
        height: 29px;

        font-size: 11px;
    }


    .brand-text {

        font-size: 11px;
    }


    .header-contact {

        min-height: 33px;

        padding:
            0 11px;

        font-size: 9px;
    }


    .hero-container {

        padding:
            40px 0;

        gap: 35px;
    }


    .hero-content h1 {

        font-size: 41px;

        letter-spacing:
            -1.8px;
    }


    .hero-description {

        font-size: 13px;
    }


    .hero-highlights {

        flex-direction: column;

        align-items: flex-start;
    }


    .hero-actions {

        flex-direction: column;
    }


    .hero-actions .btn {

        width: 100%;
    }


    .hero-image-frame {

        min-height: 300px;

        padding: 15px;

        border-radius:
            15px;
    }


    .hero-image-frame img {

        height: 300px;
    }


    .hero-image-caption {

        padding-top: 9px;
    }

}





/* =========================================================
   DALTON — TANGGA MULTIFUNGSI
   STYLE CSS — STEP 2
   PROBLEM + ADVANTAGES
========================================================= */


/* =========================================================
   12. GENERIC SECTION LABEL
========================================================= */

.section-label {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin-bottom: 12px;

    color: var(--orange);

    font-size: 9px;

    font-weight: 850;

    text-transform: uppercase;

    letter-spacing: 1.2px;
}


.section-label::before {

    content: "";

    width: 18px;

    height: 2px;

    border-radius: 10px;

    background:
        var(--orange);
}


/* =========================================================
   13. PRODUCT PROBLEM SECTION
========================================================= */

.product-problem {

    position: relative;

    padding:
        105px 0;

    background:
        var(--white);

    overflow: hidden;
}


/* Decorative vertical line */

.product-problem::after {

    content: "";

    position: absolute;

    top: 0;

    right: 12%;

    width: 1px;

    height: 100%;

    background:
        linear-gradient(
            to bottom,
            transparent,
            #e8edf0,
            transparent
        );

    opacity: .7;
}


/* =========================================================
   PROBLEM LAYOUT
========================================================= */

.problem-layout {

    display: grid;

    grid-template-columns:
        minmax(260px, .75fr)
        minmax(0, 1.25fr);

    gap: 85px;

    align-items: start;

    margin-top: 25px;
}


/* =========================================================
   PROBLEM HEADING
========================================================= */

.problem-heading h2 {

    max-width: 390px;

    color:
        var(--dark);

    font-size:
        clamp(
            30px,
            4vw,
            46px
        );

    line-height:
        1.05;

    letter-spacing:
        -1.8px;

    font-weight:
        850;
}


.problem-heading h2 span {

    color:
        var(--orange);
}


/* =========================================================
   PROBLEM CONTENT
========================================================= */

.problem-content {

    max-width: 650px;

    padding-top: 5px;
}


.problem-lead {

    margin-bottom: 17px;

    color:
        var(--dark);

    font-size:
        18px;

    line-height:
        1.65;

    font-weight:
        700;
}


.problem-content p:not(.problem-lead) {

    color:
        var(--muted);

    font-size:
        14px;

    line-height:
        1.8;
}


/* =========================================================
   14. ADVANTAGES SECTION
========================================================= */

.advantages-section {

    position: relative;

    padding:
        110px 0;

    background:
        var(--bg);

    border-top:
        1px solid #edf1f3;

    border-bottom:
        1px solid #e7ecef;

    overflow: hidden;
}


/* Background technical decoration */

.advantages-section::before {

    content: "";

    position: absolute;

    width: 420px;

    height: 420px;

    right: -170px;

    top: -170px;

    border-radius: 50%;

    border:
        1px solid #e0e6ea;

    opacity: .55;
}


.advantages-section::after {

    content: "";

    position: absolute;

    width: 260px;

    height: 260px;

    right: -90px;

    top: -90px;

    border-radius: 50%;

    border:
        1px solid #e4e9ec;

    opacity: .7;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {

    max-width: 680px;

    margin-bottom: 48px;
}


.section-heading h2 {

    color:
        var(--dark);

    font-size:
        clamp(
            30px,
            4vw,
            45px
        );

    line-height:
        1.05;

    letter-spacing:
        -1.7px;

    font-weight:
        850;

    margin-bottom: 14px;
}


.section-heading h2 span {

    color:
        var(--orange);
}


.section-heading > p {

    max-width: 600px;

    color:
        var(--muted);

    font-size:
        13px;

    line-height:
        1.75;
}


/* =========================================================
   15. ADVANTAGES GRID
========================================================= */

.advantages-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 16px;
}


/* =========================================================
   ADVANTAGE CARD
========================================================= */

.advantage-card {

    position: relative;

    min-height: 215px;

    padding:
        25px 23px;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-md);

    background:
        var(--white);

    box-shadow:
        var(--shadow-sm);

    overflow: hidden;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}


.advantage-card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 3px;

    height: 0;

    background:
        var(--orange);

    transition:
        height .3s ease;
}


.advantage-card:hover {

    transform:
        translateY(-6px);

    border-color:
        #cfd8de;

    box-shadow:
        var(--shadow-md);
}


.advantage-card:hover::before {

    height: 100%;
}


/* =========================================================
   ADVANTAGE NUMBER
========================================================= */

.advantage-number {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 30px;

    height: 30px;

    margin-bottom: 20px;

    border-radius: 8px;

    background:
        var(--orange-light);

    color:
        var(--orange);

    font-size: 10px;

    font-weight: 850;

    letter-spacing: .5px;
}


/* =========================================================
   ADVANTAGE ICON
========================================================= */

.advantage-icon {

    width: 38px;

    height: 38px;

    display: grid;

    place-items: center;

    margin-bottom: 18px;

    border-radius: 10px;

    background:
        #f1f4f6;

    color:
        var(--dark);

    font-size: 16px;
}


/* =========================================================
   ADVANTAGE TITLE
========================================================= */

.advantage-card h3 {

    margin-bottom: 8px;

    color:
        var(--dark);

    font-size:
        15px;

    line-height:
        1.3;

    font-weight:
        800;

    letter-spacing:
        -.3px;
}


/* =========================================================
   ADVANTAGE DESCRIPTION
========================================================= */

.advantage-card p {

    color:
        var(--muted);

    font-size:
        11px;

    line-height:
        1.7;
}


/* =========================================================
   16. IF SCRIPT USES DIFFERENT CARD CLASS
========================================================= */

.advantages-grid .feature-card {

    position: relative;

    min-height: 215px;

    padding:
        25px 23px;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-md);

    background:
        var(--white);

    box-shadow:
        var(--shadow-sm);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.advantages-grid .feature-card:hover {

    transform:
        translateY(-6px);

    box-shadow:
        var(--shadow-md);
}


/* =========================================================
   17. TABLET
========================================================= */

@media (max-width: 900px) {

    .product-problem {

        padding:
            80px 0;
    }


    .problem-layout {

        grid-template-columns:
            1fr;

        gap:
            30px;
    }


    .problem-heading h2 {

        max-width:
            650px;
    }


    .advantages-section {

        padding:
            85px 0;
    }


    .advantages-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   18. MOBILE
========================================================= */

@media (max-width: 600px) {

    .product-problem {

        padding:
            65px 0;
    }


    .product-problem::after {

        display:
            none;
    }


    .problem-layout {

        gap:
            22px;

        margin-top:
            15px;
    }


    .problem-heading h2 {

        font-size:
            31px;

        letter-spacing:
            -1.2px;
    }


    .problem-lead {

        font-size:
            16px;
    }


    .problem-content p:not(.problem-lead) {

        font-size:
            12px;
    }


    .advantages-section {

        padding:
            70px 0;
    }


    .section-heading {

        margin-bottom:
            30px;
    }


    .section-heading h2 {

        font-size:
            31px;
    }


    .advantages-grid {

        grid-template-columns:
            1fr;

        gap:
            12px;
    }


    .advantage-card {

        min-height:
            auto;

        padding:
            21px;
    }

}




/* =========================================================
   DALTON — TANGGA MULTIFUNGSI
   STYLE CSS — STEP 3
   PRODUCT SPECIFICATION
========================================================= */


/* =========================================================
   19. SPECIFICATION SECTION
========================================================= */

.specification-section {

    position: relative;

    padding: 105px 0;

    background: var(--white);

    overflow: hidden;
}


/* Decorative orange line */

.specification-section::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--orange) 0%,
            var(--orange) 18%,
            transparent 18%,
            transparent 100%
        );
}


/* =========================================================
   SPEC HEADER
========================================================= */

.specification-header {

    display: grid;

    grid-template-columns:
        .7fr 1.3fr;

    gap: 70px;

    align-items: end;

    margin-bottom: 42px;
}


.specification-header h2 {

    max-width: 470px;

    color: var(--dark);

    font-size:
        clamp(
            30px,
            4vw,
            44px
        );

    line-height: 1.05;

    letter-spacing: -1.7px;

    font-weight: 850;
}


.specification-header p {

    max-width: 570px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================================
   20. SPECIFICATION TABLE WRAPPER
========================================================= */

.specification-table-wrapper {

    position: relative;

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-md);

    background:
        var(--white);

    box-shadow:
        var(--shadow-md);
}


/* =========================================================
   TABLE
========================================================= */

.specification-table {

    width: 100%;

    border-collapse: collapse;

    table-layout: fixed;
}


/* =========================================================
   TABLE HEADER
========================================================= */

.specification-table thead {

    background:
        var(--dark);
}


.specification-table th {

    padding:
        15px 20px;

    color:
        var(--white);

    font-size: 10px;

    font-weight: 800;

    text-align: left;

    letter-spacing: .5px;

    text-transform: uppercase;
}


.specification-table th:first-child {

    width: 35%;
}


/* =========================================================
   TABLE BODY
========================================================= */

.specification-table td {

    padding:
        15px 20px;

    border-bottom:
        1px solid #e7ecef;

    color:
        var(--muted);

    font-size: 12px;

    line-height: 1.5;

    vertical-align: middle;
}


.specification-table tr:last-child td {

    border-bottom:
        none;
}


/* Label column */

.specification-table td:first-child {

    color:
        var(--dark);

    font-weight:
        750;

    background:
        #f8fafb;
}


/* Value column */

.specification-table td:last-child {

    color:
        #4d5a64;

    font-weight:
        550;
}


/* =========================================================
   ROW HOVER
========================================================= */

.specification-table tbody tr {

    transition:
        background .2s ease;
}


.specification-table tbody tr:hover {

    background:
        #fff8f2;
}


.specification-table tbody tr:hover td:first-child {

    color:
        var(--orange);
}


/* =========================================================
   ORANGE VALUE EMPHASIS
========================================================= */

.specification-table td strong {

    color:
        var(--dark);

    font-weight:
        800;
}


.specification-table td .highlight {

    color:
        var(--orange);

    font-weight:
        800;
}


/* =========================================================
   21. SPECIFICATION QUICK CARDS
========================================================= */

.specification-quick {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 12px;

    margin-top: 18px;
}


.specification-quick-card {

    min-height:
        92px;

    padding:
        17px;

    border:
        1px solid var(--border);

    border-radius:
        11px;

    background:
        #f8fafb;

    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease;
}


.specification-quick-card:hover {

    transform:
        translateY(-3px);

    background:
        var(--white);

    border-color:
        #cbd5dc;

    box-shadow:
        var(--shadow-sm);
}


.specification-quick-card span {

    display: block;

    margin-bottom:
        5px;

    color:
        var(--muted);

    font-size:
        8px;

    font-weight:
        750;

    text-transform:
        uppercase;

    letter-spacing:
        .7px;
}


.specification-quick-card strong {

    display: block;

    color:
        var(--dark);

    font-size:
        14px;

    line-height:
        1.25;

    font-weight:
        800;
}


/* =========================================================
   22. SPECIFICATION BADGE
========================================================= */

.specification-badge {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    margin-bottom: 20px;

    padding:
        7px 10px;

    border-radius:
        6px;

    background:
        var(--orange-light);

    color:
        var(--orange-dark);

    font-size:
        9px;

    font-weight:
        800;

    text-transform:
        uppercase;

    letter-spacing:
        .7px;
}


.specification-badge::before {

    content: "";

    width:
        6px;

    height:
        6px;

    border-radius:
        50%;

    background:
        var(--orange);
}


/* =========================================================
   23. EMPTY / LOADING STATE
========================================================= */

.specification-table:empty {

    display:
        none;
}


.specification-loading {

    padding:
        40px;

    text-align:
        center;

    color:
        var(--muted);

    font-size:
        12px;
}


/* =========================================================
   24. TABLET
========================================================= */

@media (max-width: 900px) {

    .specification-section {

        padding:
            80px 0;
    }


    .specification-header {

        grid-template-columns:
            1fr;

        gap:
            20px;

        margin-bottom:
            32px;
    }


    .specification-quick {

        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   25. MOBILE
========================================================= */

@media (max-width: 600px) {

    .specification-section {

        padding:
            65px 0;
    }


    .specification-header h2 {

        font-size:
            31px;
    }


    .specification-header p {

        font-size:
            12px;
    }


    /*
       Table dibuat horizontal-scroll
       agar data tidak rusak di HP.
    */

    .specification-table-wrapper {

        overflow-x:
            auto;

        border-radius:
            11px;
    }


    .specification-table {

        min-width:
            560px;
    }


    .specification-table th,
    .specification-table td {

        padding:
            12px 14px;

        font-size:
            10px;
    }


    .specification-quick {

        grid-template-columns:
            1fr;

        gap:
            9px;
    }


    .specification-quick-card {

        min-height:
            auto;

        padding:
            14px;
    }

}




/* =========================================================
   DALTON — TANGGA MULTIFUNGSI
   STYLE CSS — STEP 4
   PRODUCT GALLERY / SHOWCASE
========================================================= */


/* =========================================================
   26. GALLERY SECTION
========================================================= */

.product-gallery {

    position: relative;

    padding: 110px 0;

    background:
        var(--bg);

    border-top:
        1px solid #e7ecef;

    border-bottom:
        1px solid #e7ecef;

    overflow: hidden;
}


/* Decorative background */

.product-gallery::before {

    content: "";

    position: absolute;

    left: -180px;

    bottom: -180px;

    width: 430px;

    height: 430px;

    border-radius: 50%;

    border:
        1px solid #e1e7eb;

    opacity: .65;
}


.product-gallery::after {

    content: "";

    position: absolute;

    left: -115px;

    bottom: -115px;

    width: 300px;

    height: 300px;

    border-radius: 50%;

    border:
        1px solid #e5eaed;

    opacity: .7;
}


/* =========================================================
   27. GALLERY HEADER
========================================================= */

.gallery-header {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 38px;
}


.gallery-header h2 {

    margin-top: 4px;

    color:
        var(--dark);

    font-size:
        clamp(
            30px,
            4vw,
            44px
        );

    line-height:
        1.05;

    letter-spacing:
        -1.7px;

    font-weight:
        850;
}


.gallery-header h2 span {

    color:
        var(--orange);
}


.gallery-header p {

    max-width:
        410px;

    color:
        var(--muted);

    font-size:
        12px;

    line-height:
        1.7;

    text-align:
        right;
}


/* =========================================================
   28. GALLERY LAYOUT
========================================================= */

.gallery-layout {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        110px minmax(0, 1fr);

    gap:
        18px;

    align-items:
        stretch;
}


/* =========================================================
   29. THUMBNAILS
========================================================= */

.gallery-thumbnails {

    display: flex;

    flex-direction: column;

    gap:
        10px;
}


/* Individual thumbnail */

.gallery-thumbnail {

    position: relative;

    width:
        110px;

    height:
        82px;

    padding:
        5px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        1px solid #d8e0e5;

    border-radius:
        9px;

    background:
        var(--white);

    overflow:
        hidden;

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease,
        opacity .25s ease;
}


.gallery-thumbnail img {

    width:
        100%;

    height:
        100%;

    object-fit:
        contain;

    border-radius:
        5px;
}


/* Hover */

.gallery-thumbnail:hover {

    border-color:
        #b9c5cc;

    transform:
        translateX(3px);

    box-shadow:
        var(--shadow-sm);
}


/* Active */

.gallery-thumbnail.active {

    border:
        2px solid var(--orange);

    box-shadow:
        0 5px 15px
        rgba(255, 106, 0, .14);

    opacity:
        1;
}


/* Active orange indicator */

.gallery-thumbnail.active::after {

    content: "";

    position: absolute;

    left: -1px;

    top: 50%;

    width: 3px;

    height: 28px;

    transform:
        translateY(-50%);

    border-radius:
        0 5px 5px 0;

    background:
        var(--orange);
}


/* =========================================================
   30. MAIN GALLERY FRAME
========================================================= */

.gallery-main {

    position: relative;

    min-height:
        480px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        25px;

    border:
        1px solid #dce3e8;

    border-radius:
        var(--radius-lg);

    background:
        linear-gradient(
            145deg,
            #eef2f4 0%,
            #ffffff 52%,
            #f3f6f7 100%
        );

    overflow:
        hidden;

    box-shadow:
        var(--shadow-lg);
}


/* Technical grid */

.gallery-main::before {

    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    opacity: .42;

    background-image:

        linear-gradient(
            rgba(190, 200, 207, .18) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(190, 200, 207, .18) 1px,
            transparent 1px
        );

    background-size:
        32px 32px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 85%
        );
}


/* Main image */

#mainProductImage {

    position: relative;

    z-index: 2;

    width:
        100%;

    height:
        470px;

    object-fit:
        contain;

    transition:
        opacity .25s ease,
        transform .4s ease;
}


.gallery-main:hover #mainProductImage {

    transform:
        scale(1.025);
}


/* =========================================================
   31. GALLERY LABEL
========================================================= */

.gallery-product-label {

    position: absolute;

    left:
        20px;

    bottom:
        18px;

    z-index:
        4;

    padding:
        7px 10px;

    border:
        1px solid rgba(255,255,255,.8);

    border-radius:
        6px;

    background:
        rgba(255,255,255,.88);

    color:
        var(--dark);

    font-size:
        9px;

    font-weight:
        800;

    letter-spacing:
        .5px;

    backdrop-filter:
        blur(10px);
}


/* =========================================================
   32. GALLERY CONTROLS
========================================================= */

.gallery-control {

    position:
        absolute;

    z-index:
        5;

    top:
        50%;

    width:
        38px;

    height:
        38px;

    display:
        grid;

    place-items:
        center;

    transform:
        translateY(-50%);

    border:
        1px solid #d7dfe4;

    border-radius:
        50%;

    background:
        rgba(255,255,255,.94);

    color:
        var(--dark);

    font-size:
        16px;

    box-shadow:
        0 5px 16px
        rgba(20,30,40,.09);

    transition:
        all .25s ease;
}


.gallery-control:hover {

    background:
        var(--orange);

    border-color:
        var(--orange);

    color:
        var(--white);

    transform:
        translateY(-50%)
        scale(1.06);
}


.gallery-control.prev {

    left:
        18px;
}


.gallery-control.next {

    right:
        18px;
}


/* =========================================================
   33. GALLERY COUNTER
========================================================= */

.gallery-counter {

    position:
        absolute;

    top:
        18px;

    right:
        18px;

    z-index:
        5;

    min-width:
        46px;

    padding:
        6px 9px;

    border-radius:
        6px;

    background:
        rgba(23,33,43,.84);

    color:
        var(--white);

    font-size:
        9px;

    font-weight:
        750;

    text-align:
        center;

    letter-spacing:
        .4px;
}


/* =========================================================
   34. IMAGE ZOOM EFFECT
========================================================= */

.gallery-main.zooming #mainProductImage {

    animation:
        galleryImageFade .25s ease;
}


@keyframes galleryImageFade {

    0% {
        opacity: .35;
        transform: scale(.985);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }

}


/* =========================================================
   35. GALLERY INFORMATION BAR
========================================================= */

.gallery-info {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;

    margin-top:
        15px;

    padding:
        14px 17px;

    border:
        1px solid var(--border);

    border-radius:
        10px;

    background:
        var(--white);

    box-shadow:
        var(--shadow-sm);
}


.gallery-info-left {

    display:
        flex;

    align-items:
        center;

    gap:
        9px;
}


.gallery-info-dot {

    width:
        8px;

    height:
        8px;

    border-radius:
        50%;

    background:
        var(--green);

    box-shadow:
        0 0 0 4px #e7f7ef;
}


.gallery-info-left span {

    color:
        #56636d;

    font-size:
        10px;

    font-weight:
        650;
}


.gallery-info-right {

    color:
        #87929a;

    font-size:
        9px;

    font-weight:
        600;
}


/* =========================================================
   36. TABLET
========================================================= */

@media (max-width: 850px) {

    .product-gallery {

        padding:
            85px 0;
    }


    .gallery-header {

        display:
            block;

        margin-bottom:
            28px;
    }


    .gallery-header p {

        margin-top:
            12px;

        text-align:
            left;
    }


    .gallery-layout {

        grid-template-columns:
            1fr;

        gap:
            14px;
    }


    .gallery-thumbnails {

        order:
            2;

        flex-direction:
            row;

        overflow-x:
            auto;

        padding-bottom:
            5px;
    }


    .gallery-thumbnail {

        flex:
            0 0 90px;

        width:
            90px;

        height:
            70px;
    }


    .gallery-thumbnail:hover {

        transform:
            translateY(-2px);
    }


    .gallery-thumbnail.active::after {

        left:
            50%;

        top:
            auto;

        bottom:
            -1px;

        width:
            28px;

        height:
            3px;

        transform:
            translateX(-50%);
    }


    .gallery-main {

        min-height:
            430px;

        order:
            1;
    }


    #mainProductImage {

        height:
            420px;
    }

}


/* =========================================================
   37. MOBILE
========================================================= */

@media (max-width: 600px) {

    .product-gallery {

        padding:
            65px 0;
    }


    .gallery-header h2 {

        font-size:
            31px;
    }


    .gallery-header p {

        font-size:
            11px;
    }


    .gallery-main {

        min-height:
            320px;

        padding:
            12px;

        border-radius:
            13px;
    }


    #mainProductImage {

        height:
            320px;
    }


    .gallery-control {

        width:
            32px;

        height:
            32px;

        font-size:
            13px;
    }


    .gallery-control.prev {

        left:
            10px;
    }


    .gallery-control.next {

        right:
            10px;
    }


    .gallery-counter {

        top:
            10px;

        right:
            10px;
    }


    .gallery-product-label {

        left:
            11px;

        bottom:
            11px;

        font-size:
            8px;
    }


    .gallery-thumbnail {

        flex-basis:
            78px;

        width:
            78px;

        height:
            60px;
    }


    .gallery-info {

        align-items:
            flex-start;

        flex-direction:
            column;

        gap:
            8px;
    }

}




/* =========================================================
   STEP 5
   PRODUCT DESCRIPTION
   SESUAI STRUKTUR HTML ASLI
========================================================= */


/* =========================================================
   DESCRIPTION SECTION
========================================================= */

.product-description-section {

    position: relative;

    padding: 100px 0;

    background:
        #ffffff;

    overflow: hidden;
}


/* =========================================================
   DESCRIPTION BOX
========================================================= */

.product-description-box {

    position: relative;

    width: 100%;

    max-width: 1080px;

    margin: 0 auto;

    padding: 55px 60px;

    border:
        1px solid #dfe5e9;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #fafbfc 100%
        );

    box-shadow:
        0 18px 45px
        rgba(20, 30, 40, 0.08);

    overflow: hidden;
}


/* Orange accent */

.product-description-box::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 5px;

    height: 100%;

    background:
        linear-gradient(
            to bottom,
            #ff6a00,
            #ff8b3d
        );
}


/* Decorative circle */

.product-description-box::after {

    content: "";

    position: absolute;

    right: -120px;

    top: -120px;

    width: 300px;

    height: 300px;

    border-radius: 50%;

    border:
        1px solid #edf0f2;

    pointer-events: none;
}


/* =========================================================
   DESCRIPTION TITLE
========================================================= */

.product-description-box h2 {

    position: relative;

    z-index: 2;

    margin-bottom: 15px;

    color:
        #17212b;

    font-size:
        clamp(
            28px,
            4vw,
            42px
        );

    line-height:
        1.08;

    letter-spacing:
        -1.5px;

    font-weight:
        850;
}


/* =========================================================
   SHORT INTRO
========================================================= */

.product-description-box > p {

    position: relative;

    z-index: 2;

    max-width:
        820px;

    margin-bottom:
        35px;

    color:
        #65727d;

    font-size:
        14px;

    line-height:
        1.8;
}


/* =========================================================
   DESCRIPTION CONTENT
========================================================= */

.product-description-content {

    position: relative;

    z-index: 2;

    max-width:
        900px;

    border-top:
        1px solid #e5eaed;

    padding-top:
        28px;
}


/* =========================================================
   PARAGRAPH
========================================================= */

.product-description-content p {

    position: relative;

    margin:
        0 0 22px;

    padding-left:
        20px;

    color:
        #56636d;

    font-size:
        13px;

    line-height:
        1.9;
}


/* Vertical orange line */

.product-description-content p::before {

    content: "";

    position: absolute;

    left: 0;

    top: 7px;

    width: 3px;

    height: 28px;

    border-radius: 10px;

    background:
        #e2e7ea;
}


/* First paragraph */

.product-description-content p:first-child {

    color:
        #27333e;

    font-size:
        15px;

    font-weight:
        600;
}


.product-description-content p:first-child::before {

    background:
        #ff6a00;
}


/* Last paragraph */

.product-description-content p:last-child {

    margin-bottom:
        0;
}


/* =========================================================
   DESCRIPTION HOVER
========================================================= */

.product-description-content p {

    transition:
        color .2s ease,
        transform .2s ease;
}


.product-description-content p:hover {

    color:
        #27333e;

    transform:
        translateX(3px);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .product-description-section {

        padding:
            65px 0;
    }


    .product-description-box {

        padding:
            35px 25px;

        border-radius:
            15px;
    }


    .product-description-box h2 {

        font-size:
            30px;
    }


    .product-description-box > p {

        font-size:
            12px;

        margin-bottom:
            25px;
    }


    .product-description-content {

        padding-top:
            22px;
    }


    .product-description-content p {

        padding-left:
            16px;

        font-size:
            12px;

        line-height:
            1.8;
    }


    .product-description-content p:first-child {

        font-size:
            13px;
    }

}




/* =========================================================
   DALTON TANGGA MULTIFUNGSI
   STEP 5 — PRODUCT DESCRIPTION
   SESUAI HTML AKTUAL
========================================================= */


/* =========================================================
   38. DESCRIPTION SECTION
========================================================= */

.description-section {

    position: relative;

    padding: 110px 0;

    background: #ffffff;

    overflow: hidden;
}


/* Decorative orange vertical accent */

.description-section::before {

    content: "";

    position: absolute;

    left: 0;

    top: 110px;

    width: 4px;

    height: 150px;

    border-radius: 0 6px 6px 0;

    background: #ff6a00;
}


/* =========================================================
   39. DESCRIPTION LAYOUT
========================================================= */

.description-layout {

    display: grid;

    grid-template-columns:
        minmax(250px, 0.72fr)
        minmax(0, 1.28fr);

    gap: 85px;

    align-items: start;
}


/* =========================================================
   40. LEFT DESCRIPTION SIDE
========================================================= */

.description-side {

    position: sticky;

    top: 100px;

    padding-top: 5px;
}


.description-side h2 {

    max-width: 390px;

    margin-top: 5px;

    color: #17212b;

    font-size:
        clamp(
            30px,
            4vw,
            46px
        );

    line-height: 1.04;

    letter-spacing: -1.8px;

    font-weight: 850;
}


.description-side h2 span {

    color: #ff6a00;
}


/* =========================================================
   41. RIGHT DESCRIPTION CONTENT
========================================================= */

.description-content {

    position: relative;

    max-width: 720px;

    padding:
        32px 0 5px 38px;

    border-left:
        1px solid #e0e6ea;
}


/* Orange vertical marker */

.description-content::before {

    content: "";

    position: absolute;

    left: -2px;

    top: 32px;

    width: 4px;

    height: 52px;

    border-radius: 8px;

    background: #ff6a00;
}


/* =========================================================
   42. DESCRIPTION TITLE
========================================================= */

#descriptionTitle {

    margin-bottom: 25px;

    color: #17212b;

    font-size:
        clamp(
            21px,
            2.5vw,
            30px
        );

    line-height: 1.2;

    letter-spacing: -.8px;

    font-weight: 800;
}


/* =========================================================
   43. DESCRIPTION TEXT
========================================================= */

.description-text {

    display: flex;

    flex-direction: column;

    gap: 0;
}


.description-text p {

    position: relative;

    margin: 0;

    padding:
        0 0 25px 23px;

    color: #5d6973;

    font-size: 13px;

    line-height: 1.9;
}


/* Paragraph marker */

.description-text p::before {

    content: "";

    position: absolute;

    left: 0;

    top: 8px;

    width: 3px;

    height: 25px;

    border-radius: 10px;

    background: #dfe5e9;
}


/* First paragraph */

.description-text p:first-child {

    color: #2b3741;

    font-size: 15px;

    font-weight: 600;
}


.description-text p:first-child::before {

    background: #ff6a00;
}


/* =========================================================
   44. PARAGRAPH HOVER
========================================================= */

.description-text p {

    transition:
        color .25s ease,
        transform .25s ease;
}


.description-text p:hover {

    color: #26333e;

    transform: translateX(3px);
}


/* =========================================================
   45. LAST PARAGRAPH
========================================================= */

.description-text p:last-child {

    padding-bottom: 0;
}


/* =========================================================
   46. DESCRIPTION DECORATIVE INFO
========================================================= */

.description-content::after {

    content: "DALTON • PRODUCT DETAIL";

    position: absolute;

    right: 0;

    bottom: -3px;

    color: #d9dfe3;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.2px;
}


/* =========================================================
   47. TABLET
========================================================= */

@media (max-width: 900px) {

    .description-section {

        padding: 85px 0;
    }


    .description-layout {

        grid-template-columns: 1fr;

        gap: 35px;
    }


    .description-side {

        position: static;
    }


    .description-side h2 {

        max-width: 650px;
    }


    .description-content {

        max-width: none;

        padding-left: 28px;
    }

}


/* =========================================================
   48. MOBILE
========================================================= */

@media (max-width: 600px) {

    .description-section {

        padding: 65px 0;
    }


    .description-section::before {

        top: 65px;

        height: 90px;
    }


    .description-layout {

        gap: 28px;
    }


    .description-side h2 {

        font-size: 31px;

        letter-spacing: -1.2px;
    }


    .description-content {

        padding:
            25px 0 0 19px;
    }


    .description-content::before {

        top: 25px;
    }


    #descriptionTitle {

        font-size: 21px;

        margin-bottom: 20px;
    }


    .description-text p {

        padding-left: 17px;

        padding-bottom: 20px;

        font-size: 12px;

        line-height: 1.8;
    }


    .description-text p:first-child {

        font-size: 13px;
    }


    .description-content::after {

        display: none;
    }

}



/* =========================================================
   DALTON TANGGA MULTIFUNGSI
   STEP 6 — APPLICATION + FEATURES
   SESUAI HTML AKTUAL
========================================================= */


/* =========================================================
   49. APPLICATION SECTION
========================================================= */

.application-section {

    position: relative;

    padding: 105px 0;

    background:
        #f5f7f9;

    border-top:
        1px solid #e5eaed;

    border-bottom:
        1px solid #e5eaed;

    overflow: hidden;
}


/* Decorative technical circles */

.application-section::before {

    content: "";

    position: absolute;

    right: -150px;

    top: -150px;

    width: 390px;

    height: 390px;

    border:
        1px solid #dfe5e9;

    border-radius: 50%;
}


.application-section::after {

    content: "";

    position: absolute;

    right: -85px;

    top: -85px;

    width: 260px;

    height: 260px;

    border:
        1px solid #e4e9ec;

    border-radius: 50%;
}


/* =========================================================
   50. APPLICATION HEADING
========================================================= */

.application-section .section-heading {

    position: relative;

    z-index: 2;

    max-width: 650px;

    margin-bottom: 42px;
}


.application-section .section-heading h2 {

    max-width: 600px;

    margin-bottom: 14px;

    color:
        #17212b;

    font-size:
        clamp(
            30px,
            4vw,
            45px
        );

    line-height:
        1.05;

    letter-spacing:
        -1.7px;

    font-weight:
        850;
}


.application-section .section-heading h2 span {

    color:
        #ff6a00;
}


/* =========================================================
   51. APPLICATION GRID
========================================================= */

.applications-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap:
        10px;
}


/* =========================================================
   52. APPLICATION CARD
========================================================= */

.application-card {

    position: relative;

    min-height:
        125px;

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        flex-end;

    padding:
        18px;

    border:
        1px solid #dce3e8;

    border-radius:
        12px;

    background:
        #ffffff;

    overflow:
        hidden;

    box-shadow:
        0 4px 14px
        rgba(20,30,40,.04);

    transition:
        transform .28s ease,
        border-color .28s ease,
        box-shadow .28s ease;
}


/* Number */

.application-card::before {

    content:
        attr(data-number);

    position:
        absolute;

    top:
        12px;

    right:
        13px;

    color:
        #e2e7ea;

    font-size:
        22px;

    font-weight:
        850;

    line-height:
        1;
}


/* Orange bottom line */

.application-card::after {

    content: "";

    position:
        absolute;

    left:
        0;

    bottom:
        0;

    width:
        0;

    height:
        3px;

    background:
        #ff6a00;

    transition:
        width .3s ease;
}


.application-card:hover {

    transform:
        translateY(-6px);

    border-color:
        #cfd8de;

    box-shadow:
        0 14px 30px
        rgba(20,30,40,.09);
}


.application-card:hover::after {

    width:
        100%;
}


/* =========================================================
   53. APPLICATION ICON
========================================================= */

.application-icon {

    width:
        34px;

    height:
        34px;

    display:
        grid;

    place-items:
        center;

    margin-bottom:
        13px;

    border-radius:
        9px;

    background:
        #fff3e8;

    color:
        #ff6a00;

    font-size:
        14px;

    font-weight:
        850;
}


/* =========================================================
   54. APPLICATION TITLE
========================================================= */

.application-card h3 {

    position:
        relative;

    z-index:
        2;

    color:
        #25313b;

    font-size:
        11px;

    line-height:
        1.35;

    font-weight:
        800;
}


/* =========================================================
   55. FALLBACK APPLICATION ITEM
   Jika script membuat div sederhana
========================================================= */

.applications-grid > div:not(.application-card) {

    position:
        relative;

    min-height:
        100px;

    display:
        flex;

    align-items:
        center;

    padding:
        18px;

    border:
        1px solid #dce3e8;

    border-radius:
        11px;

    background:
        #ffffff;

    color:
        #27333e;

    font-size:
        11px;

    font-weight:
        750;

    box-shadow:
        0 4px 14px
        rgba(20,30,40,.04);

    transition:
        all .25s ease;
}


.applications-grid > div:not(.application-card):hover {

    transform:
        translateY(-4px);

    border-color:
        #ffb27e;

    color:
        #ff6a00;

    box-shadow:
        0 12px 25px
        rgba(20,30,40,.08);
}


/* =========================================================
   56. FEATURES SECTION
========================================================= */

.features-section {

    position:
        relative;

    padding:
        110px 0;

    background:
        #ffffff;

    overflow:
        hidden;
}


/* =========================================================
   57. FEATURES HEADER
========================================================= */

.features-header {

    display:
        flex;

    align-items:
        flex-end;

    justify-content:
        space-between;

    gap:
        40px;

    margin-bottom:
        45px;
}


.features-header h2 {

    margin-top:
        5px;

    color:
        #17212b;

    font-size:
        clamp(
            30px,
            4vw,
            44px
        );

    line-height:
        1.05;

    letter-spacing:
        -1.7px;

    font-weight:
        850;
}


.features-header h2 span {

    color:
        #ff6a00;
}


.features-header > p {

    max-width:
        410px;

    color:
        #66727d;

    font-size:
        12px;

    line-height:
        1.75;

    text-align:
        right;
}


/* =========================================================
   58. FEATURES LIST
========================================================= */

.features-list {

    display:
        grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap:
        10px 16px;
}


/* =========================================================
   59. FEATURE ITEM
========================================================= */

.feature-item {

    position:
        relative;

    display:
        flex;

    align-items:
        flex-start;

    gap:
        15px;

    min-height:
        78px;

    padding:
        17px 19px;

    border:
        1px solid #e0e6ea;

    border-radius:
        11px;

    background:
        #fafbfc;

    transition:
        transform .25s ease,
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}


.feature-item:hover {

    transform:
        translateX(4px);

    border-color:
        #cfd8de;

    background:
        #ffffff;

    box-shadow:
        0 8px 22px
        rgba(20,30,40,.06);
}


/* =========================================================
   60. FEATURE CHECK
========================================================= */

.feature-check {

    flex:
        0 0 28px;

    width:
        28px;

    height:
        28px;

    display:
        grid;

    place-items:
        center;

    margin-top:
        1px;

    border-radius:
        8px;

    background:
        #e8f8ef;

    color:
        #15945a;

    font-size:
        12px;

    font-weight:
        900;
}


/* =========================================================
   61. FEATURE CONTENT
========================================================= */

.feature-content {

    flex:
        1;
}


.feature-content strong {

    display:
        block;

    margin-bottom:
        3px;

    color:
        #25313b;

    font-size:
        11px;

    line-height:
        1.4;

    font-weight:
        800;
}


.feature-content p {

    margin:
        0;

    color:
        #74808a;

    font-size:
        10px;

    line-height:
        1.6;
}


/* =========================================================
   62. FALLBACK FEATURE ITEM
========================================================= */

.features-list > div:not(.feature-item) {

    position:
        relative;

    min-height:
        65px;

    display:
        flex;

    align-items:
        center;

    padding:
        15px 18px 15px 48px;

    border:
        1px solid #e0e6ea;

    border-radius:
        10px;

    background:
        #fafbfc;

    color:
        #4e5b65;

    font-size:
        11px;

    font-weight:
        650;

    transition:
        all .25s ease;
}


.features-list > div:not(.feature-item)::before {

    content:
        "✓";

    position:
        absolute;

    left:
        17px;

    top:
        50%;

    width:
        24px;

    height:
        24px;

    display:
        grid;

    place-items:
        center;

    transform:
        translateY(-50%);

    border-radius:
        7px;

    background:
        #e8f8ef;

    color:
        #15945a;

    font-size:
        10px;

    font-weight:
        900;
}


.features-list > div:not(.feature-item):hover {

    transform:
        translateX(4px);

    border-color:
        #cfd8de;

    background:
        #ffffff;

    box-shadow:
        0 8px 20px
        rgba(20,30,40,.06);
}


/* =========================================================
   63. FEATURES PRODUCT NAME
========================================================= */

.features-product-name {

    display:
        flex;

    align-items:
        center;

    gap:
        8px;

    margin-top:
        20px;

    padding:
        12px 15px;

    border-top:
        1px solid #e5eaed;

    color:
        #7b8790;

    font-size:
        9px;
}


.features-product-name strong {

    color:
        #27333e;

    font-size:
        10px;

    font-weight:
        800;
}


/* =========================================================
   64. TABLET
========================================================= */

@media (max-width: 1000px) {

    .applications-grid {

        grid-template-columns:
            repeat(3, 1fr);
    }

}


@media (max-width: 850px) {

    .application-section {

        padding:
            85px 0;
    }


    .features-section {

        padding:
            85px 0;
    }


    .features-header {

        display:
            block;
    }


    .features-header > p {

        max-width:
            600px;

        margin-top:
            13px;

        text-align:
            left;
    }


    .applications-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   65. MOBILE
========================================================= */

@media (max-width: 600px) {

    .application-section {

        padding:
            65px 0;
    }


    .application-section .section-heading h2 {

        font-size:
            31px;
    }


    .applications-grid {

        grid-template-columns:
            1fr;

        gap:
            9px;
    }


    .application-card {

        min-height:
            95px;

        padding:
            16px;
    }


    .application-icon {

        width:
            30px;

        height:
            30px;

        margin-bottom:
            9px;
    }


    .features-section {

        padding:
            65px 0;
    }


    .features-header {

        margin-bottom:
            28px;
    }


    .features-header h2 {

        font-size:
            31px;
    }


    .features-header > p {

        font-size:
            11px;
    }


    .features-list {

        grid-template-columns:
            1fr;

        gap:
            9px;
    }


    .feature-item {

        min-height:
            auto;

        padding:
            14px;
    }


    .feature-check {

        flex-basis:
            25px;

        width:
            25px;

        height:
            25px;
    }


    .features-product-name {

        align-items:
            flex-start;

        flex-direction:
            column;

        gap:
            3px;
    }

}



/* =========================================================
   DALTON TANGGA MULTIFUNGSI
   STEP 7 — SHIPPING + RELATED PRODUCTS
========================================================= */


/* =========================================================
   66. SHIPPING SECTION
========================================================= */

.shipping-section {

    position: relative;

    padding: 95px 0;

    background:
        #f5f7f9;

    border-top:
        1px solid #e4e9ec;

    border-bottom:
        1px solid #e4e9ec;

    overflow: hidden;
}


/* Technical background */

.shipping-section::before {

    content: "";

    position: absolute;

    left: -160px;

    bottom: -160px;

    width: 390px;

    height: 390px;

    border:
        1px solid #dfe5e9;

    border-radius: 50%;
}


.shipping-section::after {

    content: "";

    position: absolute;

    left: -95px;

    bottom: -95px;

    width: 260px;

    height: 260px;

    border:
        1px solid #e5eaed;

    border-radius: 50%;
}


/* =========================================================
   67. SHIPPING CARD
========================================================= */

.shipping-card {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        85px minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 28px;

    padding:
        30px 34px;

    border:
        1px solid #dce3e8;

    border-radius:
        16px;

    background:
        #ffffff;

    box-shadow:
        0 14px 35px
        rgba(20,30,40,.07);

    overflow: hidden;
}


/* Orange side accent */

.shipping-card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 4px;

    height: 100%;

    background:
        #ff6a00;
}


/* =========================================================
   68. SHIPPING ICON
========================================================= */

.shipping-icon {

    width: 68px;

    height: 68px;

    display: grid;

    place-items: center;

    border-radius:
        16px;

    background:
        #fff1e5;

    color:
        #ff6a00;

    font-size:
        26px;

    font-weight:
        800;
}


/* =========================================================
   69. SHIPPING CONTENT
========================================================= */

.shipping-content h2 {

    margin-bottom:
        7px;

    color:
        #17212b;

    font-size:
        22px;

    line-height:
        1.2;

    font-weight:
        850;

    letter-spacing:
        -.5px;
}


.shipping-content p {

    max-width:
        620px;

    margin:
        0;

    color:
        #66727d;

    font-size:
        12px;

    line-height:
        1.75;
}


/* =========================================================
   70. SHIPPING STATUS
========================================================= */

.shipping-status {

    display:
        flex;

    align-items:
        center;

    gap:
        8px;

    padding:
        9px 12px;

    border:
        1px solid #d9ebe2;

    border-radius:
        8px;

    background:
        #f0faf5;

    color:
        #218052;

    font-size:
        9px;

    font-weight:
        800;

    white-space:
        nowrap;
}


.shipping-status::before {

    content: "";

    width:
        7px;

    height:
        7px;

    border-radius:
        50%;

    background:
        #15945a;

    box-shadow:
        0 0 0 4px
        rgba(21,148,90,.10);
}


/* =========================================================
   71. SHIPPING DETAILS
========================================================= */

.shipping-details {

    position:
        relative;

    z-index:
        2;

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        10px;

    margin-top:
        12px;
}


.shipping-detail {

    padding:
        15px 17px;

    border:
        1px solid #dfe5e9;

    border-radius:
        10px;

    background:
        rgba(255,255,255,.75);
}


.shipping-detail span {

    display:
        block;

    margin-bottom:
        4px;

    color:
        #89949c;

    font-size:
        8px;

    font-weight:
        750;

    text-transform:
        uppercase;

    letter-spacing:
        .7px;
}


.shipping-detail strong {

    display:
        block;

    color:
        #27333e;

    font-size:
        11px;

    font-weight:
        800;
}


/* =========================================================
   72. RELATED PRODUCTS SECTION
========================================================= */

.related-products-section {

    position:
        relative;

    padding:
        105px 0;

    background:
        #ffffff;

    overflow:
        hidden;
}


/* =========================================================
   73. RELATED HEADER
========================================================= */

.related-products-header {

    display:
        flex;

    align-items:
        flex-end;

    justify-content:
        space-between;

    gap:
        30px;

    margin-bottom:
        40px;
}


.related-products-header h2 {

    margin-top:
        4px;

    color:
        #17212b;

    font-size:
        clamp(
            30px,
            4vw,
            43px
        );

    line-height:
        1.05;

    letter-spacing:
        -1.7px;

    font-weight:
        850;
}


.related-products-header h2 span {

    color:
        #ff6a00;
}


.related-products-header p {

    max-width:
        390px;

    color:
        #66727d;

    font-size:
        12px;

    line-height:
        1.7;

    text-align:
        right;
}


/* =========================================================
   74. RELATED PRODUCTS GRID
========================================================= */

.related-products-grid {

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        16px;
}


/* =========================================================
   75. RELATED PRODUCT CARD
========================================================= */

.related-product-card {

    position:
        relative;

    display:
        flex;

    flex-direction:
        column;

    min-height:
        290px;

    padding:
        12px;

    border:
        1px solid #dce3e8;

    border-radius:
        15px;

    background:
        #ffffff;

    overflow:
        hidden;

    box-shadow:
        0 5px 18px
        rgba(20,30,40,.05);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


.related-product-card:hover {

    transform:
        translateY(-7px);

    border-color:
        #cbd5dc;

    box-shadow:
        0 18px 38px
        rgba(20,30,40,.11);
}


/* =========================================================
   76. RELATED PRODUCT IMAGE
========================================================= */

.related-product-image {

    position:
        relative;

    height:
        180px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        10px;

    background:
        linear-gradient(
            145deg,
            #f0f3f5,
            #fafbfc
        );

    overflow:
        hidden;
}


.related-product-image img {

    width:
        100%;

    height:
        100%;

    padding:
        15px;

    object-fit:
        contain;

    transition:
        transform .35s ease;
}


.related-product-card:hover
.related-product-image img {

    transform:
        scale(1.05);
}


/* =========================================================
   77. RELATED PRODUCT BADGE
========================================================= */

.related-product-badge {

    position:
        absolute;

    top:
        10px;

    left:
        10px;

    z-index:
        3;

    padding:
        5px 8px;

    border-radius:
        5px;

    background:
        #ff6a00;

    color:
        #ffffff;

    font-size:
        7px;

    font-weight:
        800;

    text-transform:
        uppercase;

    letter-spacing:
        .5px;
}


/* =========================================================
   78. RELATED PRODUCT INFO
========================================================= */

.related-product-info {

    display:
        flex;

    flex-direction:
        column;

    flex:
        1;

    padding:
        17px 7px 6px;
}


.related-product-info span {

    display:
        block;

    margin-bottom:
        5px;

    color:
        #8a959d;

    font-size:
        8px;

    font-weight:
        750;

    text-transform:
        uppercase;

    letter-spacing:
        .6px;
}


.related-product-info h3 {

    margin:
        0 0 13px;

    color:
        #25313b;

    font-size:
        14px;

    line-height:
        1.35;

    font-weight:
        800;
}


/* =========================================================
   79. RELATED PRODUCT BUTTON
========================================================= */

.related-product-link {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    min-height:
        34px;

    margin-top:
        auto;

    padding:
        0 12px;

    border:
        1px solid #dce3e8;

    border-radius:
        7px;

    color:
        #3f4d57;

    font-size:
        9px;

    font-weight:
        750;

    transition:
        all .25s ease;
}


.related-product-link:hover {

    border-color:
        #ff6a00;

    background:
        #ff6a00;

    color:
        #ffffff;
}


/* =========================================================
   80. FALLBACK RELATED ITEM
========================================================= */

.related-products-grid
> div:not(.related-product-card) {

    position:
        relative;

    min-height:
        230px;

    padding:
        20px;

    border:
        1px solid #dce3e8;

    border-radius:
        13px;

    background:
        #ffffff;

    color:
        #27333e;

    box-shadow:
        0 5px 16px
        rgba(20,30,40,.05);

    transition:
        all .25s ease;
}


.related-products-grid
> div:not(.related-product-card):hover {

    transform:
        translateY(-5px);

    border-color:
        #cbd5dc;

    box-shadow:
        0 15px 32px
        rgba(20,30,40,.10);
}


/* =========================================================
   81. TABLET
========================================================= */

@media (max-width: 900px) {

    .shipping-section {

        padding:
            80px 0;
    }


    .shipping-card {

        grid-template-columns:
            65px 1fr;

        gap:
            20px;

        padding:
            25px;
    }


    .shipping-status {

        grid-column:
            2;
        
        justify-self:
            start;
    }


    .shipping-details {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .related-products-section {

        padding:
            85px 0;
    }


    .related-products-header {

        display:
            block;
    }


    .related-products-header p {

        margin-top:
            12px;

        text-align:
            left;
    }


    .related-products-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   82. MOBILE
========================================================= */

@media (max-width: 600px) {

    .shipping-section {

        padding:
            65px 0;
    }


    .shipping-card {

        grid-template-columns:
            1fr;

        gap:
            15px;

        padding:
            22px 20px;
    }


    .shipping-icon {

        width:
            52px;

        height:
            52px;

        border-radius:
            12px;

        font-size:
            21px;
    }


    .shipping-content h2 {

        font-size:
            19px;
    }


    .shipping-content p {

        font-size:
            11px;
    }


    .shipping-status {

        grid-column:
            auto;

        justify-self:
            start;
    }


    .shipping-details {

        grid-template-columns:
            1fr;

        gap:
            8px;
    }


    .related-products-section {

        padding:
            65px 0;
    }


    .related-products-header {

        margin-bottom:
            28px;
    }


    .related-products-header h2 {

        font-size:
            31px;
    }


    .related-products-header p {

        font-size:
            11px;
    }


    .related-products-grid {

        grid-template-columns:
            1fr;

        gap:
            12px;
    }


    .related-product-card {

        min-height:
            270px;
    }


    .related-product-image {

        height:
            170px;
    }

}




/* =========================================================
   DALTON TANGGA MULTIFUNGSI
   STEP 8 — FAQ / FREQUENTLY ASKED QUESTIONS
========================================================= */


/* =========================================================
   83. FAQ SECTION
========================================================= */

.faq-section {

    position: relative;

    padding: 110px 0;

    background:
        #f5f7f9;

    border-top:
        1px solid #e4e9ec;

    border-bottom:
        1px solid #e4e9ec;

    overflow: hidden;
}


/* =========================================================
   FAQ DECORATION
========================================================= */

.faq-section::before {

    content: "?";

    position: absolute;

    right: 7%;

    top: 55px;

    color:
        rgba(220, 226, 231, .55);

    font-size:
        220px;

    line-height:
        1;

    font-weight:
        900;

    pointer-events:
        none;
}


.faq-section::after {

    content: "";

    position: absolute;

    left: -130px;

    bottom: -130px;

    width:
        340px;

    height:
        340px;

    border:
        1px solid #dfe5e9;

    border-radius:
        50%;

    pointer-events:
        none;
}


/* =========================================================
   84. FAQ HEADER
========================================================= */

.faq-header {

    position:
        relative;

    z-index:
        2;

    display:
        grid;

    grid-template-columns:
        .7fr 1.3fr;

    gap:
        70px;

    align-items:
        end;

    margin-bottom:
        45px;
}


.faq-header h2 {

    margin-top:
        5px;

    color:
        #17212b;

    font-size:
        clamp(
            30px,
            4vw,
            45px
        );

    line-height:
        1.05;

    letter-spacing:
        -1.8px;

    font-weight:
        850;
}


.faq-header h2 span {

    color:
        #ff6a00;
}


.faq-header p {

    max-width:
        570px;

    color:
        #66727d;

    font-size:
        12px;

    line-height:
        1.75;
}


/* =========================================================
   85. FAQ CONTAINER
========================================================= */

.faq-container {

    position:
        relative;

    z-index:
        3;

    max-width:
        900px;

    margin:
        0 auto;
}


/* =========================================================
   86. FAQ ITEM
========================================================= */

.faq-item {

    position:
        relative;

    margin-bottom:
        10px;

    border:
        1px solid #dce3e8;

    border-radius:
        11px;

    background:
        #ffffff;

    overflow:
        hidden;

    box-shadow:
        0 3px 12px
        rgba(20,30,40,.035);

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}


.faq-item:hover {

    border-color:
        #cbd5dc;

    box-shadow:
        0 9px 24px
        rgba(20,30,40,.07);
}


/* =========================================================
   87. FAQ QUESTION
========================================================= */

.faq-question {

    position:
        relative;

    width:
        100%;

    min-height:
        68px;

    display:
        grid;

    grid-template-columns:
        38px minmax(0, 1fr) 34px;

    align-items:
        center;

    gap:
        13px;

    padding:
        13px 17px;

    border:
        0;

    background:
        transparent;

    color:
        #27333e;

    text-align:
        left;

    cursor:
        pointer;
}


/* =========================================================
   88. FAQ NUMBER
========================================================= */

.faq-number {

    width:
        30px;

    height:
        30px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        8px;

    background:
        #f1f4f6;

    color:
        #7a8790;

    font-size:
        9px;

    font-weight:
        850;

    transition:
        background .25s ease,
        color .25s ease;
}


/* =========================================================
   89. FAQ QUESTION TEXT
========================================================= */

.faq-question-text {

    color:
        #27333e;

    font-size:
        12px;

    line-height:
        1.5;

    font-weight:
        750;

    transition:
        color .25s ease;
}


/* =========================================================
   90. FAQ TOGGLE
========================================================= */

.faq-toggle {

    position:
        relative;

    width:
        30px;

    height:
        30px;

    display:
        grid;

    place-items:
        center;

    border:
        1px solid #dce3e8;

    border-radius:
        50%;

    background:
        #ffffff;

    color:
        #66727d;

    font-size:
        15px;

    font-weight:
        500;

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease,
        border-color .3s ease;
}


/* Horizontal line */

.faq-toggle::before {

    content:
        "";

    position:
        absolute;

    width:
        10px;

    height:
        1.5px;

    background:
        currentColor;

    border-radius:
        10px;
}


/* Vertical line */

.faq-toggle::after {

    content:
        "";

    position:
        absolute;

    width:
        1.5px;

    height:
        10px;

    background:
        currentColor;

    border-radius:
        10px;

    transition:
        transform .25s ease;
}


/* =========================================================
   91. FAQ ANSWER
========================================================= */

.faq-answer {

    display:
        grid;

    grid-template-rows:
        0fr;

    transition:
        grid-template-rows .35s ease;
}


.faq-answer-inner {

    min-height:
        0;

    overflow:
        hidden;

    padding:
        0 64px 0 68px;

    color:
        #68747e;

    font-size:
        11px;

    line-height:
        1.8;

    transition:
        padding .35s ease;
}


/* =========================================================
   92. ACTIVE FAQ
========================================================= */

.faq-item.active {

    border-color:
        #ffc39e;

    box-shadow:
        0 10px 28px
        rgba(20,30,40,.08);
}


.faq-item.active::before {

    content:
        "";

    position:
        absolute;

    left:
        0;

    top:
        0;

    width:
        3px;

    height:
        100%;

    background:
        #ff6a00;
}


.faq-item.active .faq-number {

    background:
        #fff0e4;

    color:
        #ff6a00;
}


.faq-item.active .faq-question-text {

    color:
        #ff6a00;
}


.faq-item.active .faq-toggle {

    border-color:
        #ff6a00;

    background:
        #ff6a00;

    color:
        #ffffff;

    transform:
        rotate(180deg);
}


.faq-item.active .faq-toggle::after {

    transform:
        rotate(90deg);

    opacity:
        0;
}


.faq-item.active .faq-answer {

    grid-template-rows:
        1fr;
}


.faq-item.active .faq-answer-inner {

    padding:
        0 64px 22px 68px;
}


/* =========================================================
   93. FAQ DIVIDER
========================================================= */

.faq-answer-inner::before {

    content:
        "";

    display:
        block;

    height:
        1px;

    margin-bottom:
        16px;

    background:
        #edf0f2;
}


/* =========================================================
   94. FAQ FALLBACK
   Jika script menghasilkan struktur berbeda
========================================================= */

.faq-list {

    position:
        relative;

    z-index:
        3;

    max-width:
        900px;

    margin:
        0 auto;
}


.faq-list > details {

    margin-bottom:
        10px;

    border:
        1px solid #dce3e8;

    border-radius:
        11px;

    background:
        #ffffff;

    overflow:
        hidden;

    box-shadow:
        0 3px 12px
        rgba(20,30,40,.035);
}


.faq-list > details summary {

    position:
        relative;

    padding:
        20px 50px 20px 20px;

    color:
        #27333e;

    font-size:
        12px;

    font-weight:
        750;

    cursor:
        pointer;

    list-style:
        none;
}


.faq-list > details summary::-webkit-details-marker {

    display:
        none;
}


.faq-list > details summary::after {

    content:
        "+";

    position:
        absolute;

    right:
        17px;

    top:
        50%;

    transform:
        translateY(-50%);

    color:
        #66727d;

    font-size:
        20px;

    font-weight:
        400;
}


.faq-list > details[open] summary {

    color:
        #ff6a00;
}


.faq-list > details[open] summary::after {

    content:
        "−";

    color:
        #ff6a00;
}


.faq-list > details p {

    margin:
        0;

    padding:
        0 20px 20px;

    border-top:
        1px solid #edf0f2;

    padding-top:
        16px;

    color:
        #68747e;

    font-size:
        11px;

    line-height:
        1.8;
}


/* =========================================================
   95. FAQ EMPTY STATE
========================================================= */

.faq-empty {

    padding:
        35px;

    border:
        1px dashed #d6dee3;

    border-radius:
        11px;

    color:
        #89949c;

    font-size:
        11px;

    text-align:
        center;

    background:
        #fafbfc;
}


/* =========================================================
   96. TABLET
========================================================= */

@media (max-width: 850px) {

    .faq-section {

        padding:
            85px 0;
    }


    .faq-header {

        grid-template-columns:
            1fr;

        gap:
            18px;

        margin-bottom:
            32px;
    }


    .faq-header p {

        max-width:
            650px;
    }


    .faq-container,
    .faq-list {

        max-width:
            100%;
    }

}


/* =========================================================
   97. MOBILE
========================================================= */

@media (max-width: 600px) {

    .faq-section {

        padding:
            65px 0;
    }


    .faq-section::before {

        right:
            -25px;

        top:
            35px;

        font-size:
            150px;
    }


    .faq-header {

        margin-bottom:
            25px;
    }


    .faq-header h2 {

        font-size:
            31px;

        letter-spacing:
            -1.2px;
    }


    .faq-header p {

        font-size:
            11px;
    }


    .faq-item {

        margin-bottom:
            8px;

        border-radius:
            9px;
    }


    .faq-question {

        min-height:
            62px;

        grid-template-columns:
            30px minmax(0, 1fr) 30px;

        gap:
            9px;

        padding:
            11px 12px;
    }


    .faq-number {

        width:
            27px;

        height:
            27px;

        border-radius:
            7px;

        font-size:
            8px;
    }


    .faq-question-text {

        font-size:
            10px;

        line-height:
            1.45;
    }


    .faq-toggle {

        width:
            27px;

        height:
            27px;
    }


    .faq-answer-inner {

        padding:
            0 15px 0 51px;

        font-size:
            10px;

        line-height:
            1.75;
    }


    .faq-item.active .faq-answer-inner {

        padding:
            0 15px 18px 51px;
    }


    .faq-answer-inner::before {

        margin-bottom:
            13px;
    }

}


/* =========================================================
   DALTON TANGGA MULTIFUNGSI
   STEP 9 — CTA + FOOTER
========================================================= */


/* =========================================================
   98. CTA SECTION
========================================================= */

.product-cta {

    position: relative;

    padding: 95px 0;

    background:
        #17212b;

    overflow: hidden;
}


/* Orange glow */

.product-cta::before {

    content: "";

    position: absolute;

    width: 430px;

    height: 430px;

    right: -150px;

    top: -220px;

    border-radius: 50%;

    background:
        rgba(255, 106, 0, .16);

    filter:
        blur(10px);
}


/* Technical circles */

.product-cta::after {

    content: "";

    position: absolute;

    width: 330px;

    height: 330px;

    left: -190px;

    bottom: -210px;

    border:
        1px solid rgba(255,255,255,.08);

    border-radius: 50%;
}


/* =========================================================
   CTA INNER
========================================================= */

.cta-inner {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.3fr)
        minmax(280px, .7fr);

    align-items: center;

    gap: 60px;

    padding:
        45px 50px;

    border:
        1px solid rgba(255,255,255,.10);

    border-radius:
        18px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.055),
            rgba(255,255,255,.025)
        );

    box-shadow:
        0 25px 60px
        rgba(0,0,0,.20);

    backdrop-filter:
        blur(10px);
}


/* =========================================================
   CTA CONTENT
========================================================= */

.cta-content {

    max-width:
        650px;
}


.cta-label {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        7px;

    margin-bottom:
        14px;

    padding:
        6px 10px;

    border:
        1px solid rgba(255,106,0,.35);

    border-radius:
        999px;

    background:
        rgba(255,106,0,.10);

    color:
        #ff9a5c;

    font-size:
        8px;

    font-weight:
        800;

    text-transform:
        uppercase;

    letter-spacing:
        1px;
}


.cta-label::before {

    content: "";

    width:
        6px;

    height:
        6px;

    border-radius:
        50%;

    background:
        #ff6a00;
}


.cta-content h2 {

    margin-bottom:
        13px;

    color:
        #ffffff;

    font-size:
        clamp(
            29px,
            4vw,
            45px
        );

    line-height:
        1.05;

    letter-spacing:
        -1.7px;

    font-weight:
        850;
}


.cta-content h2 span {

    color:
        #ff7b20;
}


.cta-content p {

    max-width:
        570px;

    margin:
        0;

    color:
        #aeb8c0;

    font-size:
        12px;

    line-height:
        1.8;
}


/* =========================================================
   CTA ACTIONS
========================================================= */

.cta-actions {

    display:
        flex;

    flex-direction:
        column;

    align-items:
        stretch;

    gap:
        9px;
}


.cta-actions .btn {

    width:
        100%;

    min-height:
        45px;
}


/* CTA primary */

.cta-actions .btn-primary {

    background:
        #ff6a00;

    color:
        #ffffff;

    border:
        1px solid #ff6a00;

    box-shadow:
        0 8px 22px
        rgba(255,106,0,.25);
}


.cta-actions .btn-primary:hover {

    background:
        #e85d00;

    border-color:
        #e85d00;

    transform:
        translateY(-2px);
}


/* CTA secondary */

.cta-actions .btn-outline {

    background:
        rgba(255,255,255,.04);

    color:
        #ffffff;

    border:
        1px solid rgba(255,255,255,.16);
}


.cta-actions .btn-outline:hover {

    background:
        rgba(255,255,255,.09);

    border-color:
        rgba(255,255,255,.28);

    color:
        #ffffff;
}


/* =========================================================
   CTA CONTACT NOTE
========================================================= */

.cta-contact-note {

    display:
        flex;

    align-items:
        center;

    gap:
        7px;

    margin-top:
        12px;

    color:
        #7f8b95;

    font-size:
        8px;

    text-align:
        center;
}


.cta-contact-note::before {

    content:
        "✓";

    width:
        14px;

    height:
        14px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        50%;

    background:
        rgba(21,148,90,.15);

    color:
        #55c98b;

    font-size:
        8px;
}


/* =========================================================
   99. FOOTER
========================================================= */

.site-footer {

    position:
        relative;

    padding:
        65px 0 25px;

    background:
        #111a22;

    color:
        #ffffff;

    border-top:
        1px solid rgba(255,255,255,.06);
}


/* =========================================================
   FOOTER MAIN
========================================================= */

.footer-main {

    display:
        grid;

    grid-template-columns:
        1.25fr .75fr .75fr .9fr;

    gap:
        45px;

    padding-bottom:
        45px;

    border-bottom:
        1px solid rgba(255,255,255,.08);
}


/* =========================================================
   FOOTER BRAND
========================================================= */

.footer-brand {

    max-width:
        310px;
}


.footer-brand .brand {

    margin-bottom:
        17px;
}


.footer-brand .brand-mark {

    background:
        #ffffff;

    color:
        #17212b;
}


.footer-brand .brand-text {

    color:
        #ffffff;
}


.footer-brand p {

    color:
        #7f8b95;

    font-size:
        10px;

    line-height:
        1.8;
}


/* =========================================================
   FOOTER COLUMN
========================================================= */

.footer-column h3 {

    margin-bottom:
        15px;

    color:
        #ffffff;

    font-size:
        10px;

    font-weight:
        800;

    text-transform:
        uppercase;

    letter-spacing:
        .8px;
}


.footer-column ul {

    margin:
        0;

    padding:
        0;

    list-style:
        none;
}


.footer-column li {

    margin-bottom:
        9px;
}


.footer-column a {

    color:
        #7f8b95;

    font-size:
        10px;

    transition:
        color .2s ease,
        transform .2s ease;
}


.footer-column a:hover {

    color:
        #ff7b20;

    padding-left:
        3px;
}


/* =========================================================
   FOOTER CONTACT
========================================================= */

.footer-contact-item {

    display:
        flex;

    align-items:
        flex-start;

    gap:
        8px;

    margin-bottom:
        11px;

    color:
        #7f8b95;

    font-size:
        9px;

    line-height:
        1.6;
}


.footer-contact-icon {

    flex:
        0 0 24px;

    width:
        24px;

    height:
        24px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        6px;

    background:
        rgba(255,255,255,.06);

    color:
        #ff7b20;

    font-size:
        10px;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;

    padding-top:
        22px;
}


.footer-copyright {

    color:
        #68747e;

    font-size:
        8px;
}


.footer-copyright strong {

    color:
        #a5afb7;

    font-weight:
        750;
}


/* =========================================================
   FOOTER LEGAL LINKS
========================================================= */

.footer-legal {

    display:
        flex;

    align-items:
        center;

    gap:
        18px;
}


.footer-legal a {

    color:
        #68747e;

    font-size:
        8px;

    transition:
        color .2s ease;
}


.footer-legal a:hover {

    color:
        #ff7b20;
}


/* =========================================================
   100. FOOTER ACCENT
========================================================= */

.footer-accent {

    position:
        absolute;

    left:
        0;

    bottom:
        0;

    width:
        100%;

    height:
        2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #ff6a00 30%,
            #ff6a00 70%,
            transparent
        );

    opacity:
        .65;
}


/* =========================================================
   101. TABLET
========================================================= */

@media (max-width: 900px) {

    .product-cta {

        padding:
            80px 0;
    }


    .cta-inner {

        grid-template-columns:
            1fr;

        gap:
            30px;

        padding:
            38px;
    }


    .cta-actions {

        max-width:
            400px;
    }


    .site-footer {

        padding-top:
            55px;
    }


    .footer-main {

        grid-template-columns:
            repeat(2, 1fr);

        gap:
            35px;
    }

}


/* =========================================================
   102. MOBILE
========================================================= */

@media (max-width: 600px) {

    .product-cta {

        padding:
            60px 0;
    }


    .cta-inner {

        gap:
            27px;

        padding:
            28px 22px;

        border-radius:
            14px;
    }


    .cta-content h2 {

        font-size:
            31px;

        letter-spacing:
            -1.2px;
    }


    .cta-content p {

        font-size:
            11px;
    }


    .cta-actions {

        max-width:
            none;
    }


    .site-footer {

        padding:
            48px 0 20px;
    }


    .footer-main {

        grid-template-columns:
            1fr;

        gap:
            28px;

        padding-bottom:
            32px;
    }


    .footer-brand {

        max-width:
            none;
    }


    .footer-bottom {

        align-items:
            flex-start;

        flex-direction:
            column;

        gap:
            12px;
    }


    .footer-legal {

        gap:
            13px;

        flex-wrap:
            wrap;
    }

}




/* =========================================================
   DALTON TANGGA MULTIFUNGSI
   STEP 10 — FINAL POLISH
   GLOBAL FINISHING / RESPONSIVE / UX
========================================================= */


/* =========================================================
   103. GLOBAL SMOOTH SCROLL
========================================================= */

html {

    scroll-behavior:
        smooth;

    scroll-padding-top:
        80px;
}


/* =========================================================
   104. BODY POLISH
========================================================= */

body {

    overflow-x:
        hidden;

    text-rendering:
        optimizeLegibility;

    -webkit-font-smoothing:
        antialiased;

    -moz-osx-font-smoothing:
        grayscale;
}


/* =========================================================
   105. IMAGE RENDERING
========================================================= */

img {

    display:
        block;

    max-width:
        100%;

    image-rendering:
        auto;
}


/* =========================================================
   106. BUTTON / LINK RESET
========================================================= */

button,
a {

    -webkit-tap-highlight-color:
        transparent;
}


button {

    font-family:
        inherit;
}


/* =========================================================
   107. GLOBAL FOCUS
========================================================= */

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {

    outline:
        2px solid #ff6a00;

    outline-offset:
        3px;
}


/* =========================================================
   108. TEXT SELECTION
========================================================= */

::selection {

    background:
        #ff6a00;

    color:
        #ffffff;
}


/* =========================================================
   109. SCROLLBAR
========================================================= */

::-webkit-scrollbar {

    width:
        8px;

    height:
        8px;
}


::-webkit-scrollbar-track {

    background:
        #edf1f3;
}


::-webkit-scrollbar-thumb {

    border-radius:
        999px;

    background:
        #b8c2c9;
}


::-webkit-scrollbar-thumb:hover {

    background:
        #ff6a00;
}


/* =========================================================
   110. GLOBAL SECTION CONTAINER
========================================================= */

.section-container {

    width:
        min(
            1180px,
            calc(100% - 40px)
        );

    margin:
        0 auto;
}


/* =========================================================
   111. GLOBAL SECTION LABEL
========================================================= */

.section-label {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        7px;

    margin-bottom:
        10px;

    color:
        #ff6a00;

    font-size:
        8px;

    font-weight:
        850;

    text-transform:
        uppercase;

    letter-spacing:
        1.1px;
}


.section-label::before {

    content:
        "";

    width:
        20px;

    height:
        2px;

    border-radius:
        10px;

    background:
        #ff6a00;
}


/* =========================================================
   112. GLOBAL BUTTON POLISH
========================================================= */

.btn {

    position:
        relative;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        7px;

    min-height:
        40px;

    padding:
        0 17px;

    border-radius:
        7px;

    font-size:
        10px;

    font-weight:
        800;

    text-decoration:
        none;

    cursor:
        pointer;

    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease,
        color .25s ease,
        box-shadow .25s ease;
}


.btn:hover {

    transform:
        translateY(-2px);
}


.btn:active {

    transform:
        translateY(0);
}


/* =========================================================
   113. PRIMARY BUTTON
========================================================= */

.btn-primary {

    background:
        #ff6a00;

    border:
        1px solid #ff6a00;

    color:
        #ffffff;

    box-shadow:
        0 6px 16px
        rgba(255,106,0,.18);
}


.btn-primary:hover {

    background:
        #e95e00;

    border-color:
        #e95e00;

    box-shadow:
        0 9px 22px
        rgba(255,106,0,.25);
}


/* =========================================================
   114. HEADER POLISH
========================================================= */

.site-header {

    position:
        sticky;

    top:
        0;

    z-index:
        1000;

    backdrop-filter:
        blur(14px);

    -webkit-backdrop-filter:
        blur(14px);
}


/* =========================================================
   115. PRODUCT HERO POLISH
========================================================= */

.product-hero {

    isolation:
        isolate;
}


.product-hero::before,
.product-hero::after {

    pointer-events:
        none;
}


/* Hero image smooth */

.product-hero img {

    transition:
        transform .45s cubic-bezier(.2,.7,.2,1),
        opacity .3s ease;
}


/* =========================================================
   116. PRODUCT BADGE POLISH
========================================================= */

.product-badge {

    white-space:
        nowrap;

    user-select:
        none;
}


/* =========================================================
   117. CARD UNIVERSAL MICRO INTERACTION
========================================================= */

.application-card,
.feature-item,
.related-product-card,
.faq-item,
.shipping-card,
.specification-quick-card {

    will-change:
        transform;
}


/* =========================================================
   118. SPECIFICATION TABLE POLISH
========================================================= */

.specification-table-wrapper {

    scrollbar-width:
        thin;

    scrollbar-color:
        #b8c2c9 #edf1f3;
}


.specification-table td,
.specification-table th {

    word-break:
        normal;

    overflow-wrap:
        break-word;
}


/* =========================================================
   119. GALLERY POLISH
========================================================= */

.gallery-main {

    isolation:
        isolate;
}


.gallery-main img {

    user-select:
        none;

    -webkit-user-drag:
        none;
}


.gallery-thumbnails {

    scrollbar-width:
        thin;

    scrollbar-color:
        #c7d0d6 transparent;
}


/* =========================================================
   120. FAQ TRANSITION POLISH
========================================================= */

.faq-item,
.faq-question,
.faq-toggle,
.faq-answer {

    -webkit-tap-highlight-color:
        transparent;
}


.faq-question {

    user-select:
        none;
}


/* =========================================================
   121. CTA POLISH
========================================================= */

.product-cta {

    isolation:
        isolate;
}


.cta-inner {

    transition:
        border-color .3s ease,
        box-shadow .3s ease;
}


.cta-inner:hover {

    border-color:
        rgba(255,255,255,.15);

    box-shadow:
        0 28px 65px
        rgba(0,0,0,.24);
}


/* =========================================================
   122. FOOTER POLISH
========================================================= */

.site-footer a {

    text-decoration:
        none;
}


.footer-brand,
.footer-column,
.footer-contact-item {

    min-width:
        0;
}


/* =========================================================
   123. LOADING STATE
========================================================= */

.is-loading {

    opacity:
        .55;

    pointer-events:
        none;

    cursor:
        wait;
}


/* =========================================================
   124. IMAGE FADE
========================================================= */

.image-loading {

    opacity:
        0;
}


.image-loaded {

    animation:
        imageLoaded .45s ease forwards;
}


@keyframes imageLoaded {

    from {

        opacity:
            0;

        transform:
            scale(.985);
    }

    to {

        opacity:
            1;

        transform:
            scale(1);
    }

}


/* =========================================================
   125. SCROLL REVEAL
========================================================= */

.reveal {

    opacity:
        0;

    transform:
        translateY(18px);

    transition:
        opacity .65s ease,
        transform .65s ease;
}


.reveal.is-visible {

    opacity:
        1;

    transform:
        translateY(0);
}


/* =========================================================
   126. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {

        scroll-behavior:
            auto;
    }


    *,
    *::before,
    *::after {

        animation-duration:
            .01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            .01ms !important;

        scroll-behavior:
            auto !important;
    }

}


/* =========================================================
   127. LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .section-container {

        width:
            min(
                1240px,
                calc(100% - 70px)
            );
    }


    .product-hero {

        min-height:
            680px;
    }


    .gallery-main {

        min-height:
            530px;
    }


    #mainProductImage {

        height:
            520px;
    }

}


/* =========================================================
   128. TABLET
========================================================= */

@media (max-width: 900px) {

    .section-container {

        width:
            min(
                100% - 32px,
                760px
            );
    }


    .site-header {

        backdrop-filter:
            blur(12px);
    }


    .product-hero {

        min-height:
            auto;
    }

}


/* =========================================================
   129. MOBILE GLOBAL
========================================================= */

@media (max-width: 600px) {

    .section-container {

        width:
            calc(100% - 28px);
    }


    body {

        font-size:
            14px;
    }


    .btn {

        min-height:
            42px;

        padding:
            0 15px;

        font-size:
            10px;
    }


    .section-label {

        font-size:
            7px;

        letter-spacing:
            .9px;
    }


    /* Prevent horizontal overflow */

    .description-layout,
    .features-list,
    .applications-grid,
    .related-products-grid,
    .footer-main,
    .cta-inner {

        max-width:
            100%;
    }


    /* Better touch targets */

    .gallery-thumbnail {

        cursor:
            pointer;
    }


    .faq-question {

        cursor:
            pointer;

        -webkit-touch-callout:
            none;
    }

}


/* =========================================================
   130. VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .section-container {

        width:
            calc(100% - 22px);
    }


    .product-description-box {

        padding:
            28px 19px;
    }


    .cta-inner {

        padding:
            24px 17px;
    }


    .shipping-card {

        padding:
            20px 16px;
    }


    .faq-question {

        grid-template-columns:
            27px minmax(0,1fr) 27px;

        gap:
            7px;

        padding:
            10px;
    }


    .faq-question-text {

        font-size:
            9px;
    }

}



/* =========================================================
   DALTON TANGGA MULTIFUNGSI
   STEP 11 — FINAL RESPONSIVE & BUG FIX
========================================================= */


/* =========================================================
   131. GLOBAL OVERFLOW PROTECTION
========================================================= */

html,
body {

    width: 100%;

    max-width: 100%;

    overflow-x: hidden;
}


*,
*::before,
*::after {

    box-sizing: border-box;
}


/* =========================================================
   132. CONTAINER PROTECTION
========================================================= */

.section-container {

    width:
        min(
            1180px,
            calc(100% - 40px)
        );

    margin-left: auto;

    margin-right: auto;
}


/* =========================================================
   133. PRODUCT HERO
========================================================= */

.product-hero-content,
.product-hero-gallery,
.product-info,
.product-details {

    min-width: 0;
}


/* =========================================================
   134. HERO IMAGE PROTECTION
========================================================= */

.gallery-main {

    position: relative;

    width: 100%;

    min-width: 0;

    overflow: hidden;

    border-radius: 16px;
}


.gallery-main img {

    display: block;

    width: 100%;

    max-width: 100%;

    height: auto;

    object-fit: contain;
}


/* =========================================================
   135. GALLERY THUMBNAILS
========================================================= */

.gallery-thumbnails {

    display: flex;

    gap: 9px;

    width: 100%;

    max-width: 100%;

    overflow-x: auto;

    padding-bottom: 5px;
}


.gallery-thumbnail {

    flex: 0 0 72px;

    width: 72px;

    height: 72px;

    overflow: hidden;

    border-radius: 8px;

    border: 1px solid #dce3e8;

    background: #ffffff;

    cursor: pointer;

    transition:
        border-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}


.gallery-thumbnail:hover {

    transform:
        translateY(-2px);

    border-color:
        #ff6a00;

    box-shadow:
        0 5px 14px
        rgba(20,30,40,.08);
}


.gallery-thumbnail.active {

    border-color:
        #ff6a00;

    box-shadow:
        0 0 0 2px
        rgba(255,106,0,.12);
}


.gallery-thumbnail img {

    width: 100%;

    height: 100%;

    object-fit: contain;
}


/* =========================================================
   136. PRODUCT INFO
========================================================= */

.product-info h1,
.product-info h2,
.product-info h3,
.product-details h1,
.product-details h2 {

    overflow-wrap:
        break-word;
}


.product-info p,
.product-details p {

    overflow-wrap:
        break-word;
}


/* =========================================================
   137. PRODUCT ACTIONS
========================================================= */

.product-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 9px;

    width: 100%;
}


.product-actions .btn {

    min-width:
        145px;
}


/* =========================================================
   138. QUICK INFO
========================================================= */

.quick-info-grid {

    display:
        grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap:
        9px;
}


.quick-info-card {

    min-width:
        0;

    overflow:
        hidden;
}


.quick-info-card strong,
.quick-info-card span {

    overflow-wrap:
        anywhere;
}


/* =========================================================
   139. SPECIFICATION
========================================================= */

.specification-section {

    overflow:
        hidden;
}


.specification-table-wrapper {

    width:
        100%;

    max-width:
        100%;

    overflow-x:
        auto;

    -webkit-overflow-scrolling:
        touch;
}


.specification-table {

    width:
        100%;

    min-width:
        650px;

    border-collapse:
        collapse;
}


.specification-table th,
.specification-table td {

    padding:
        13px 15px;

    text-align:
        left;

    vertical-align:
        middle;
}


/* =========================================================
   140. DESCRIPTION
========================================================= */

.description-layout {

    width:
        100%;

    min-width:
        0;
}


.description-side,
.description-content {

    min-width:
        0;
}


.description-content {

    overflow-wrap:
        break-word;
}


.description-text {

    width:
        100%;

    max-width:
        100%;
}


.description-text p {

    overflow-wrap:
        break-word;
}


/* =========================================================
   141. APPLICATIONS
========================================================= */

.applications-grid {

    width:
        100%;

    min-width:
        0;
}


.application-card {

    min-width:
        0;

    overflow:
        hidden;
}


.application-card h3 {

    overflow-wrap:
        break-word;
}


/* =========================================================
   142. FEATURES
========================================================= */

.features-list {

    width:
        100%;

    min-width:
        0;
}


.feature-item {

    min-width:
        0;
}


.feature-content {

    min-width:
        0;
}


.feature-content strong,
.feature-content p {

    overflow-wrap:
        break-word;
}


/* =========================================================
   143. SHIPPING
========================================================= */

.shipping-card {

    min-width:
        0;
}


.shipping-content {

    min-width:
        0;
}


.shipping-content h2,
.shipping-content p {

    overflow-wrap:
        break-word;
}


.shipping-details {

    width:
        100%;
}


.shipping-detail {

    min-width:
        0;
}


/* =========================================================
   144. RELATED PRODUCTS
========================================================= */

.related-products-grid {

    width:
        100%;

    min-width:
        0;
}


.related-product-card {

    min-width:
        0;
}


.related-product-info {

    min-width:
        0;
}


.related-product-info h3 {

    overflow-wrap:
        break-word;
}


/* =========================================================
   145. FAQ
========================================================= */

.faq-container {

    width:
        100%;

    min-width:
        0;
}


.faq-item {

    min-width:
        0;
}


.faq-question {

    min-width:
        0;
}


.faq-question-text {

    min-width:
        0;

    overflow-wrap:
        break-word;
}


.faq-answer-inner {

    overflow-wrap:
        break-word;
}


/* =========================================================
   146. CTA
========================================================= */

.cta-inner {

    min-width:
        0;
}


.cta-content {

    min-width:
        0;
}


.cta-content h2,
.cta-content p {

    overflow-wrap:
        break-word;
}


/* =========================================================
   147. NAVIGATION SAFETY
========================================================= */

.nav-links {

    min-width:
        0;
}


.nav-links a {

    white-space:
        nowrap;
}


/* =========================================================
   148. MOBILE NAV
========================================================= */

@media (max-width: 768px) {

    .nav-links {

        position:
            fixed;

        top:
            70px;

        left:
            14px;

        right:
            14px;

        display:
            none;

        flex-direction:
            column;

        align-items:
            stretch;

        gap:
            3px;

        padding:
            10px;

        border:
            1px solid #dce3e8;

        border-radius:
            12px;

        background:
            rgba(255,255,255,.97);

        box-shadow:
            0 18px 40px
            rgba(20,30,40,.13);

        backdrop-filter:
            blur(15px);

        -webkit-backdrop-filter:
            blur(15px);

        z-index:
            999;
    }


    .nav-links.active {

        display:
            flex;
    }


    .nav-links a {

        width:
            100%;

        padding:
            12px 14px;

        border-radius:
            7px;
    }


    .nav-links a:hover {

        background:
            #fff3e8;

        color:
            #ff6a00;
    }


    .menu-toggle {

        display:
            flex;
    }

}


/* =========================================================
   149. MOBILE HERO
========================================================= */

@media (max-width: 768px) {

    .product-hero {

        padding-top:
            35px;

        padding-bottom:
            55px;
    }


    .product-hero-grid {

        grid-template-columns:
            1fr;

        gap:
            28px;
    }


    .product-hero-content {

        order:
            1;
    }


    .product-hero-gallery {

        order:
            0;
    }


    .gallery-main {

        min-height:
            300px;
    }


    .gallery-main img {

        max-height:
            330px;
    }


    .product-actions {

        display:
            grid;

        grid-template-columns:
            1fr;

        gap:
            8px;
    }


    .product-actions .btn {

        width:
            100%;

        min-width:
            0;
    }

}


/* =========================================================
   150. MOBILE QUICK INFO
========================================================= */

@media (max-width: 600px) {

    .quick-info-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .quick-info-card {

        padding:
            13px;
    }

}


/* =========================================================
   151. SMALL MOBILE HERO
========================================================= */

@media (max-width: 480px) {

    .gallery-main {

        min-height:
            260px;
    }


    .gallery-main img {

        max-height:
            280px;
    }


    .gallery-thumbnail {

        flex-basis:
            62px;

        width:
            62px;

        height:
            62px;
    }


    .quick-info-grid {

        gap:
            7px;
    }


    .quick-info-card {

        padding:
            11px;
    }

}


/* =========================================================
   152. TOUCH DEVICE
========================================================= */

@media (hover: none) {

    .application-card:hover,
    .feature-item:hover,
    .related-product-card:hover,
    .faq-item:hover,
    .btn:hover {

        transform:
            none;
    }


    .application-card:hover,
    .feature-item:hover,
    .related-product-card:hover {

        box-shadow:
            none;
    }

}


/* =========================================================
   153. PREVENT BROKEN LONG WORDS
========================================================= */

.product-page,
.product-page * {

    overflow-wrap:
        break-word;
}


/* =========================================================
   154. PRINT
========================================================= */

@media print {

    .site-header,
    .product-actions,
    .product-cta,
    .site-footer,
    .menu-toggle,
    .gallery-thumbnails {

        display:
            none !important;
    }


    body {

        background:
            #ffffff !important;

        color:
            #000000 !important;
    }


    .product-hero,
    .description-section,
    .application-section,
    .features-section,
    .shipping-section,
    .related-products-section,
    .faq-section {

        padding:
            20px 0 !important;

        background:
            #ffffff !important;
    }


    .product-description-box,
    .shipping-card,
    .related-product-card,
    .faq-item {

        box-shadow:
            none !important;

        border:
            1px solid #cccccc !important;
    }

}


/* =========================================================
   155. FINAL UNIVERSAL SAFETY
========================================================= */

iframe,
video,
canvas,
svg {

    max-width:
        100%;
}


table {

    max-width:
        100%;
}


pre,
code {

    max-width:
        100%;

    overflow-x:
        auto;
}




/* =========================================================
   FINAL FIX
   MATCH DENGAN HTML AKTUAL TANGGA-MULTIFUNGSI
========================================================= */


/* =========================================================
   RELATED PRODUCTS
========================================================= */

.related-section {

    position: relative;

    padding: 95px 0;

    background: #ffffff;

    overflow: hidden;
}


.related-section .section-heading {

    margin-bottom: 35px;
}


.related-section .section-label {

    color: #ff6a00;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.related-section .section-heading h2 {

    margin-top: 6px;

    color: #17212b;

    font-size: clamp(30px, 4vw, 42px);

    line-height: 1.05;

    font-weight: 850;

    letter-spacing: -1.5px;
}


.related-section .section-heading h2 span {

    color: #ff6a00;
}


/* GRID */

.related-section .related-products-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;

    width: 100%;
}


/* Semua item hasil JS */

.related-section .related-products-grid > * {

    min-width: 0;

    border:
        1px solid #dce3e8;

    border-radius:
        14px;

    background:
        #ffffff;

    overflow:
        hidden;

    box-shadow:
        0 6px 20px
        rgba(20,30,40,.05);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


.related-section .related-products-grid > *:hover {

    transform:
        translateY(-6px);

    border-color:
        #ffc39e;

    box-shadow:
        0 18px 35px
        rgba(20,30,40,.10);
}


/* =========================================================
   FAQ
========================================================= */

.faq-section {

    position: relative;

    padding: 100px 0;

    background: #f5f7f9;

    border-top:
        1px solid #e2e7ea;

    border-bottom:
        1px solid #e2e7ea;

    overflow: hidden;
}


.faq-section::after {

    content: "?";

    position: absolute;

    right: 5%;

    top: 30px;

    color:
        rgba(210,218,224,.45);

    font-size: 220px;

    line-height: 1;

    font-weight: 900;

    pointer-events: none;
}


/* FAQ LAYOUT */

.faq-layout {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        280px minmax(0, 1fr);

    gap: 60px;

    align-items: start;
}


/* INTRO */

.faq-intro {

    position: sticky;

    top: 100px;
}


.faq-intro .section-label {

    color: #ff6a00;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.faq-intro h2 {

    margin-top: 7px;

    color: #17212b;

    font-size: 34px;

    line-height: 1.05;

    font-weight: 850;

    letter-spacing: -1.4px;
}


.faq-intro h2 span {

    color: #ff6a00;
}


.faq-intro p {

    margin-top: 15px;

    color: #68747e;

    font-size: 11px;

    line-height: 1.8;
}


/* FAQ LIST */

.faq-list {

    display:
        flex;

    flex-direction:
        column;

    gap:
        9px;

    width:
        100%;

    max-width:
        850px;
}


/* =========================================================
   FAQ ITEM
   Karena script belum diketahui class internalnya,
   kita target langsung children dari .faq-list
========================================================= */

.faq-list > * {

    position: relative;

    width: 100%;

    border:
        1px solid #d8e0e5;

    border-radius:
        9px;

    background:
        #ffffff;

    overflow:
        hidden;

    box-shadow:
        0 3px 12px
        rgba(20,30,40,.035);

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}


.faq-list > *:hover {

    border-color:
        #ffbd91;

    box-shadow:
        0 9px 22px
        rgba(20,30,40,.08);
}


/* =========================================================
   FAQ BUTTON
========================================================= */

.faq-list button {

    width:
        100%;

    min-height:
        58px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        15px;

    padding:
        15px 18px;

    border:
        0;

    background:
        #ffffff;

    color:
        #27333e;

    font-family:
        inherit;

    font-size:
        11px;

    font-weight:
        750;

    text-align:
        left;

    cursor:
        pointer;
}


.faq-list button:hover {

    color:
        #ff6a00;
}


/* =========================================================
   FAQ ANSWER
========================================================= */

.faq-list .faq-answer {

    padding:
        0 18px 18px;

    border-top:
        1px solid #edf0f2;

    color:
        #68747e;

    font-size:
        10px;

    line-height:
        1.8;
}


/* =========================================================
   FAQ DETAILS SUPPORT
========================================================= */

.faq-list details {

    width:
        100%;

    border:
        1px solid #d8e0e5;

    border-radius:
        9px;

    background:
        #ffffff;

    overflow:
        hidden;

    box-shadow:
        0 3px 12px
        rgba(20,30,40,.035);
}


.faq-list details summary {

    position:
        relative;

    padding:
        17px 45px 17px 18px;

    color:
        #27333e;

    font-size:
        11px;

    font-weight:
        750;

    cursor:
        pointer;

    list-style:
        none;
}


.faq-list details summary::-webkit-details-marker {

    display:
        none;
}


.faq-list details summary::after {

    content:
        "+";

    position:
        absolute;

    right:
        16px;

    top:
        50%;

    transform:
        translateY(-50%);

    width:
        23px;

    height:
        23px;

    display:
        grid;

    place-items:
        center;

    border:
        1px solid #d8e0e5;

    border-radius:
        50%;

    color:
        #65717b;

    font-size:
        14px;
}


.faq-list details[open] summary {

    color:
        #ff6a00;
}


.faq-list details[open] summary::after {

    content:
        "−";

    border-color:
        #ff6a00;

    background:
        #ff6a00;

    color:
        #ffffff;
}


.faq-list details p {

    margin:
        0;

    padding:
        0 18px 18px;

    border-top:
        1px solid #edf0f2;

    padding-top:
        15px;

    color:
        #68747e;

    font-size:
        10px;

    line-height:
        1.8;
}


/* =========================================================
   SHIPPING
========================================================= */

.shipping-section {

    padding:
        85px 0;

    background:
        #ffffff;
}


.shipping-card {

    display:
        grid;

    grid-template-columns:
        60px minmax(0, 1fr) auto;

    align-items:
        center;

    gap:
        22px;

    padding:
        28px 30px;

    border:
        1px solid #dce3e8;

    border-radius:
        15px;

    background:
        #ffffff;

    box-shadow:
        0 10px 30px
        rgba(20,30,40,.07);
}


.shipping-icon {

    width:
        55px;

    height:
        55px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        13px;

    background:
        #fff0e4;

    font-size:
        22px;
}


.shipping-content {

    min-width:
        0;
}


.shipping-content h2 {

    margin:
        5px 0 7px;

    color:
        #17212b;

    font-size:
        22px;

    font-weight:
        850;
}


.shipping-content p {

    margin:
        0;

    color:
        #68747e;

    font-size:
        11px;

    line-height:
        1.7;
}


.shipping-action {

    display:
        flex;

    align-items:
        center;
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {

    position:
        relative;

    padding:
        85px 0;

    background:
        #17212b;

    overflow:
        hidden;
}


.final-cta::before {

    content:
        "";

    position:
        absolute;

    width:
        420px;

    height:
        420px;

    right:
        -180px;

    top:
        -220px;

    border-radius:
        50%;

    background:
        rgba(255,106,0,.15);

    filter:
        blur(10px);
}


.final-cta::after {

    content:
        "";

    position:
        absolute;

    left:
        -160px;

    bottom:
        -220px;

    width:
        400px;

    height:
        400px;

    border:
        1px solid
        rgba(255,255,255,.07);

    border-radius:
        50%;
}


.cta-card {

    position:
        relative;

    z-index:
        2;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        40px;

    padding:
        45px 50px;

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius:
        17px;

    background:
        rgba(255,255,255,.045);

    box-shadow:
        0 25px 55px
        rgba(0,0,0,.20);
}


.cta-content {

    max-width:
        680px;
}


.cta-content .section-label {

    color:
        #ff8b43;
}


.cta-content h2 {

    margin:
        7px 0 12px;

    color:
        #ffffff;

    font-size:
        clamp(29px, 4vw, 43px);

    line-height:
        1.05;

    font-weight:
        850;

    letter-spacing:
        -1.5px;
}


.cta-content h2 span {

    color:
        #ff7b20;
}


.cta-content p {

    margin:
        0;

    color:
        #aeb8c0;

    font-size:
        11px;

    line-height:
        1.8;
}


.cta-action {

    flex:
        0 0 auto;
}


.cta-action .btn-light {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    min-height:
        43px;

    padding:
        0 20px;

    border:
        1px solid #ffffff;

    border-radius:
        8px;

    background:
        #ffffff;

    color:
        #17212b;

    font-size:
        10px;

    font-weight:
        800;

    text-decoration:
        none;

    transition:
        all .25s ease;
}


.cta-action .btn-light:hover {

    transform:
        translateY(-2px);

    background:
        #ff6a00;

    border-color:
        #ff6a00;

    color:
        #ffffff;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    padding:
        55px 0 0;

    background:
        #111a22;

    color:
        #ffffff;
}


.footer-container {

    width:
        min(
            1180px,
            calc(100% - 40px)
        );

    margin:
        0 auto;

    display:
        grid;

    grid-template-columns:
        1.4fr .8fr .8fr .9fr;

    gap:
        45px;
}


/* FOOTER BRAND */

.footer-brand {

    max-width:
        320px;
}


.footer-logo {

    margin-bottom:
        15px;
}


.footer-logo .brand-mark {

    background:
        #ffffff;

    color:
        #17212b;
}


.footer-logo .brand-text {

    color:
        #ffffff;
}


.footer-brand p {

    margin:
        0;

    color:
        #7f8b95;

    font-size:
        10px;

    line-height:
        1.8;
}


/* FOOTER LINKS */

.footer-links {

    display:
        flex;

    flex-direction:
        column;

    align-items:
        flex-start;

    gap:
        9px;
}


.footer-links h3 {

    margin:
        0 0 7px;

    color:
        #ffffff;

    font-size:
        10px;

    font-weight:
        800;

    text-transform:
        uppercase;

    letter-spacing:
        .8px;
}


.footer-links a {

    color:
        #7f8b95;

    font-size:
        10px;

    text-decoration:
        none;

    transition:
        color .2s ease,
        padding-left .2s ease;
}


.footer-links a:hover {

    padding-left:
        3px;

    color:
        #ff7b20;
}


.footer-links p {

    margin:
        0;

    color:
        #7f8b95;

    font-size:
        10px;
}


/* FOOTER BOTTOM */

.footer-bottom {

    margin-top:
        45px;

    padding:
        18px 0;

    border-top:
        1px solid
        rgba(255,255,255,.08);
}


.footer-bottom .footer-container {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;
}


.footer-bottom span {

    color:
        #68747e;

    font-size:
        8px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .faq-layout {

        grid-template-columns:
            1fr;

        gap:
            30px;
    }


    .faq-intro {

        position:
            static;
    }


    .related-section
    .related-products-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .cta-card {

        flex-direction:
            column;

        align-items:
            flex-start;
    }


    .shipping-card {

        grid-template-columns:
            55px 1fr;
    }


    .shipping-action {

        grid-column:
            2;
    }


    .footer-container {

        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .related-section {

        padding:
            65px 0;
    }


    .related-section
    .related-products-grid {

        grid-template-columns:
            1fr;
    }


    .faq-section {

        padding:
            65px 0;
    }


    .faq-layout {

        gap:
            25px;
    }


    .faq-intro h2 {

        font-size:
            31px;
    }


    .shipping-card {

        grid-template-columns:
            1fr;

        gap:
            15px;

        padding:
            22px;
    }


    .shipping-action {

        grid-column:
            auto;

        width:
            100%;
    }


    .shipping-action .btn {

        width:
            100%;
    }


    .final-cta {

        padding:
            60px 0;
    }


    .cta-card {

        padding:
            30px 22px;

        gap:
            25px;
    }


    .cta-action {

        width:
            100%;
    }


    .cta-action .btn-light {

        width:
            100%;
    }


    .footer-container {

        width:
            calc(100% - 28px);

        grid-template-columns:
            1fr;

        gap:
            30px;
    }


    .footer-bottom .footer-container {

        flex-direction:
            column;

        align-items:
            flex-start;

        gap:
            8px;
    }

}




/* =========================================================
   FAQ PREMIUM — DALTON TANGGA MULTIFUNGSI
========================================================= */

.faq-section {
    position: relative;
    padding: 110px 0 120px;
    background:
        radial-gradient(
            circle at 88% 18%,
            rgba(255, 106, 0, .055),
            transparent 25%
        ),
        linear-gradient(
            180deg,
            #f7f9fa 0%,
            #f3f6f8 100%
        );
    overflow: hidden;
}

/* Decorative technical grid */
.faq-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(25, 37, 47, .025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(25, 37, 47, .025) 1px,
            transparent 1px
        );
    background-size: 34px 34px;
    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 80%
        );
    pointer-events: none;
}

/* Large question mark */
.faq-section::after {
    content: "?";
    position: absolute;
    right: 3%;
    top: 25px;
    color: rgba(23, 33, 43, .035);
    font-size: 300px;
    line-height: 1;
    font-weight: 900;
    pointer-events: none;
}


/* =========================================================
   FAQ LAYOUT
========================================================= */

.faq-layout {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        270px minmax(0, 1fr);

    gap: 75px;

    align-items: start;
}


/* =========================================================
   FAQ INTRO
========================================================= */

.faq-intro {
    position: sticky;
    top: 110px;
    padding-top: 12px;
}

.faq-intro .section-label {
    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 13px;

    color: #ff6a00;

    font-size: 8px;

    font-weight: 850;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}

.faq-intro .section-label::before {
    content: "";

    width: 25px;
    height: 2px;

    background: #ff6a00;

    border-radius: 10px;
}

.faq-intro h2 {
    margin: 0;

    color: #17212b;

    font-size: 42px;

    line-height: .98;

    letter-spacing: -2px;

    font-weight: 900;
}

.faq-intro h2 span {
    display: block;

    color: #ff6a00;
}

.faq-intro p {
    max-width: 235px;

    margin-top: 18px;

    color: #74808a;

    font-size: 10px;

    line-height: 1.85;
}


/* =========================================================
   FAQ LIST
========================================================= */

.faq-list {
    display: flex;

    flex-direction: column;

    gap: 11px;

    width: 100%;

    max-width: 900px;
}


/* =========================================================
   FAQ ITEM
========================================================= */

.faq-list > * {
    position: relative;

    border: 1px solid #dce3e8;

    border-radius: 10px;

    background:
        rgba(255,255,255,.92);

    overflow: hidden;

    box-shadow:
        0 3px 10px rgba(22, 34, 45, .035);

    transition:
        transform .28s cubic-bezier(.2,.7,.2,1),
        box-shadow .28s ease,
        border-color .28s ease;
}

.faq-list > *::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 3px;
    height: 0;

    background: #ff6a00;

    transition:
        height .3s ease;
}

.faq-list > *:hover {
    transform: translateY(-2px);

    border-color: #cfd8de;

    box-shadow:
        0 12px 28px rgba(22, 34, 45, .075);
}


/* =========================================================
   FAQ BUTTON
========================================================= */

.faq-list button {
    position: relative;

    width: 100%;

    min-height: 68px;

    display: grid;

    grid-template-columns:
        42px minmax(0, 1fr) 32px;

    align-items: center;

    gap: 15px;

    padding: 10px 17px;

    border: 0;

    background: transparent;

    color: #27333e;

    font-family: inherit;

    font-size: 11px;

    line-height: 1.5;

    font-weight: 750;

    text-align: left;

    cursor: pointer;
}


/* =========================================================
   FAQ NUMBER
========================================================= */

.faq-list button::before {
    content: counter(faq-counter, decimal-leading-zero);

    width: 32px;
    height: 32px;

    display: grid;

    place-items: center;

    border: 1px solid #e1e7eb;

    border-radius: 8px;

    background: #f5f7f8;

    color: #89949c;

    font-size: 8px;

    font-weight: 850;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease;
}


/* Counter */

.faq-list {
    counter-reset: faq-counter;
}

.faq-list > * {
    counter-increment: faq-counter;
}


/* =========================================================
   FAQ PLUS ICON
========================================================= */

.faq-list button::after {
    content: "+";

    width: 27px;
    height: 27px;

    display: grid;

    place-items: center;

    border: 1px solid #dce3e8;

    border-radius: 50%;

    background: #ffffff;

    color: #7a858d;

    font-size: 16px;

    font-weight: 400;

    transition:
        transform .3s ease,
        background .3s ease,
        color .3s ease,
        border-color .3s ease;
}


/* =========================================================
   FAQ TEXT
========================================================= */

.faq-list button span,
.faq-list button strong {
    min-width: 0;
}


/* =========================================================
   ACTIVE / OPEN
========================================================= */

.faq-list > *.active {
    border-color: #ffb47f;

    box-shadow:
        0 15px 35px rgba(22, 34, 45, .085);
}

.faq-list > *.active::before {
    height: 100%;
}

.faq-list > *.active button::before {
    background: #fff0e5;

    border-color: #ffd0b2;

    color: #ff6a00;
}

.faq-list > *.active button::after {
    content: "−";

    background: #ff6a00;

    border-color: #ff6a00;

    color: #ffffff;

    transform: rotate(180deg);
}


/* =========================================================
   FAQ ANSWER
========================================================= */

.faq-list .faq-answer {
    padding:
        0 65px 22px 74px;

    color: #697680;

    font-size: 10px;

    line-height: 1.85;
}

.faq-list .faq-answer::before {
    content: "";

    display: block;

    height: 1px;

    margin-bottom: 16px;

    background:
        linear-gradient(
            90deg,
            #e7ecef,
            transparent
        );
}


/* =========================================================
   DETAILS VERSION
========================================================= */

.faq-list details {
    border: 0;

    border-radius: 0;

    background: transparent;

    box-shadow: none;
}

.faq-list details summary {
    position: relative;

    min-height: 68px;

    display: grid;

    grid-template-columns:
        42px minmax(0, 1fr) 32px;

    align-items: center;

    gap: 15px;

    padding: 10px 17px;

    color: #27333e;

    font-size: 11px;

    font-weight: 750;

    cursor: pointer;

    list-style: none;
}

.faq-list details summary::-webkit-details-marker {
    display: none;
}

.faq-list details summary::before {
    content: counter(faq-counter, decimal-leading-zero);

    width: 32px;
    height: 32px;

    display: grid;

    place-items: center;

    border: 1px solid #e1e7eb;

    border-radius: 8px;

    background: #f5f7f8;

    color: #89949c;

    font-size: 8px;

    font-weight: 850;
}

.faq-list details summary::after {
    content: "+";

    width: 27px;
    height: 27px;

    display: grid;

    place-items: center;

    border: 1px solid #dce3e8;

    border-radius: 50%;

    color: #7a858d;

    font-size: 16px;
}

.faq-list details[open] summary {
    color: #ff6a00;
}

.faq-list details[open] summary::before {
    background: #fff0e5;

    border-color: #ffd0b2;

    color: #ff6a00;
}

.faq-list details[open] summary::after {
    content: "−";

    background: #ff6a00;

    border-color: #ff6a00;

    color: #ffffff;
}

.faq-list details p {
    margin: 0;

    padding:
        0 65px 22px 74px;

    border-top: 1px solid #edf0f2;

    padding-top: 16px;

    color: #697680;

    font-size: 10px;

    line-height: 1.85;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .faq-layout {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .faq-intro {
        position: static;
    }

    .faq-intro p {
        max-width: 500px;
    }

}


@media (max-width: 600px) {

    .faq-section {
        padding: 70px 0 80px;
    }

    .faq-section::after {
        font-size: 170px;

        right: -15px;

        top: 20px;
    }

    .faq-intro h2 {
        font-size: 34px;
    }

    .faq-list {
        gap: 8px;
    }

    .faq-list button,
    .faq-list details summary {
        min-height: 60px;

        grid-template-columns:
            34px minmax(0,1fr) 28px;

        gap: 10px;

        padding:
            9px 12px;
    }

    .faq-list button::before,
    .faq-list details summary::before {
        width: 28px;
        height: 28px;
    }

    .faq-list button::after,
    .faq-list details summary::after {
        width: 25px;
        height: 25px;
    }

    .faq-list .faq-answer,
    .faq-list details p {
        padding:
            0 15px 18px 56px;

        font-size: 9px;
    }

}


/* =========================================================
   STEP 12
   PREMIUM PRODUCT GALLERY
========================================================= */

.gallery-section {

    position: relative;

    padding: 105px 0 115px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f5f7f9 100%
        );

    overflow: hidden;
}


/* Technical background */

.gallery-section::before {

    content: "";

    position: absolute;

    width: 420px;

    height: 420px;

    left: -260px;

    bottom: -240px;

    border:
        1px solid #dce3e8;

    border-radius: 50%;

    box-shadow:
        0 0 0 45px #f5f7f9,
        0 0 0 46px #dfe5e9,
        0 0 0 90px #f5f7f9,
        0 0 0 91px #e5eaed;

    pointer-events: none;
}


/* =========================================================
   GALLERY HEADER
========================================================= */

.gallery-heading {

    position: relative;

    z-index: 2;

    margin-bottom: 38px;
}


.gallery-heading .section-label {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #ff6a00;

    font-size: 8px;

    font-weight: 850;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}


.gallery-heading .section-label::before {

    content: "";

    width: 25px;

    height: 2px;

    border-radius: 10px;

    background: #ff6a00;
}


.gallery-heading h2 {

    margin-top: 7px;

    color: #17212b;

    font-size:
        clamp(32px, 4vw, 45px);

    line-height: 1;

    letter-spacing: -1.8px;

    font-weight: 900;
}


.gallery-heading h2 span {

    color: #ff6a00;
}


/* =========================================================
   PRODUCT GALLERY LAYOUT
========================================================= */

.product-gallery {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        110px;

    gap: 18px;

    align-items: stretch;

    padding: 18px;

    border:
        1px solid #dce3e8;

    border-radius: 18px;

    background:
        rgba(255,255,255,.82);

    box-shadow:
        0 20px 50px
        rgba(23,33,43,.08);

    backdrop-filter:
        blur(10px);
}


/* =========================================================
   MAIN IMAGE AREA
========================================================= */

.gallery-main {

    position: relative;

    min-width: 0;

    min-height: 520px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid #e0e6ea;

    border-radius: 13px;

    background:
        radial-gradient(
            circle at 50% 45%,
            #ffffff 0%,
            #f6f8f9 55%,
            #edf1f3 100%
        );

    overflow: hidden;
}


/* Technical corner */

.gallery-main::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 90px;

    height: 90px;

    border-top:
        2px solid #ff6a00;

    border-left:
        2px solid #ff6a00;

    border-top-left-radius:
        13px;

    opacity: .8;

    pointer-events: none;
}


/* Bottom corner */

.gallery-main::after {

    content: "";

    position: absolute;

    right: 0;

    bottom: 0;

    width: 70px;

    height: 70px;

    border-right:
        1px solid #d6dee3;

    border-bottom:
        1px solid #d6dee3;

    border-bottom-right-radius:
        13px;

    pointer-events: none;
}


/* =========================================================
   MAIN FRAME
========================================================= */

.gallery-main-frame {

    position: relative;

    width: 100%;

    height: 100%;

    min-height: 520px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 45px;
}


/* Main image */

.gallery-main-frame img {

    display: block;

    width: 100%;

    height: 100%;

    max-width: 100%;

    max-height: 470px;

    object-fit: contain;

    object-position: center;

    filter:
        drop-shadow(
            0 25px 25px
            rgba(20,30,40,.12)
        );

    transition:
        transform .45s
        cubic-bezier(.2,.7,.2,1),
        filter .35s ease;
}


.gallery-main:hover
.gallery-main-frame img {

    transform:
        scale(1.035);

    filter:
        drop-shadow(
            0 32px 35px
            rgba(20,30,40,.17)
        );
}


/* =========================================================
   PRODUCT IMAGE INFORMATION
========================================================= */

.gallery-main-frame::after {

    content:
        "DALTON • MULTIPURPOSE LADDER";

    position: absolute;

    left: 25px;

    bottom: 20px;

    padding:
        7px 10px;

    border:
        1px solid #dce3e8;

    border-radius:
        5px;

    background:
        rgba(255,255,255,.88);

    color:
        #7d8992;

    font-size:
        7px;

    font-weight:
        800;

    letter-spacing:
        1px;

    backdrop-filter:
        blur(6px);
}


/* =========================================================
   THUMBNAIL PANEL
========================================================= */

.gallery-thumbnails {

    display:
        flex;

    flex-direction:
        column;

    gap:
        10px;

    padding:
        5px;

    overflow-y:
        auto;

    overflow-x:
        hidden;

    scrollbar-width:
        thin;

    scrollbar-color:
        #c4cdd3 transparent;
}


/* =========================================================
   THUMBNAIL
========================================================= */

.gallery-thumbnail {

    position:
        relative;

    flex:
        0 0 85px;

    width:
        100%;

    height:
        85px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        7px;

    border:
        1px solid #dce3e8;

    border-radius:
        9px;

    background:
        #ffffff;

    overflow:
        hidden;

    cursor:
        pointer;

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}


.gallery-thumbnail:hover {

    transform:
        translateX(-3px);

    border-color:
        #ffad78;

    box-shadow:
        0 8px 18px
        rgba(20,30,40,.09);
}


.gallery-thumbnail.active {

    border:
        2px solid #ff6a00;

    background:
        #fff8f3;

    box-shadow:
        0 8px 20px
        rgba(255,106,0,.14);
}


/* Active indicator */

.gallery-thumbnail.active::before {

    content:
        "";

    position:
        absolute;

    left:
        0;

    top:
        10px;

    bottom:
        10px;

    width:
        3px;

    border-radius:
        0 3px 3px 0;

    background:
        #ff6a00;
}


/* Thumbnail image */

.gallery-thumbnail img {

    width:
        100%;

    height:
        100%;

    object-fit:
        contain;

    transition:
        transform .25s ease;
}


.gallery-thumbnail:hover img {

    transform:
        scale(1.05);
}


/* =========================================================
   MOBILE GALLERY
========================================================= */

@media (max-width: 800px) {

    .gallery-section {

        padding:
            75px 0 85px;
    }


    .product-gallery {

        grid-template-columns:
            1fr;

        gap:
            12px;

        padding:
            12px;
    }


    .gallery-main {

        min-height:
            420px;
    }


    .gallery-main-frame {

        min-height:
            420px;

        padding:
            30px;
    }


    .gallery-main-frame img {

        max-height:
            380px;
    }


    .gallery-thumbnails {

        flex-direction:
            row;

        overflow-x:
            auto;

        overflow-y:
            hidden;

        padding:
            3px 2px 7px;
    }


    .gallery-thumbnail {

        flex:
            0 0 75px;

        width:
            75px;

        height:
            75px;
    }


    .gallery-thumbnail:hover {

        transform:
            translateY(-2px);
    }


    .gallery-thumbnail.active::before {

        left:
            9px;

        right:
            9px;

        top:
            auto;

        bottom:
            0;

        width:
            auto;

        height:
            3px;
    }

}


@media (max-width: 480px) {

    .gallery-section {

        padding:
            60px 0 70px;
    }


    .gallery-heading h2 {

        font-size:
            31px;
    }


    .gallery-main {

        min-height:
            300px;

        border-radius:
            11px;
    }


    .gallery-main-frame {

        min-height:
            300px;

        padding:
            20px;
    }


    .gallery-main-frame img {

        max-height:
            275px;
    }


    .gallery-main-frame::after {

        left:
            12px;

        bottom:
            12px;

        font-size:
            6px;
    }


    .gallery-thumbnail {

        flex-basis:
            62px;

        width:
            62px;

        height:
            62px;
    }

}



/* =========================================================
   STEP 12
   PREMIUM PRODUCT GALLERY
========================================================= */

.gallery-section {

    position: relative;

    padding: 105px 0 115px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f5f7f9 100%
        );

    overflow: hidden;
}


/* Technical background */

.gallery-section::before {

    content: "";

    position: absolute;

    width: 420px;

    height: 420px;

    left: -260px;

    bottom: -240px;

    border:
        1px solid #dce3e8;

    border-radius: 50%;

    box-shadow:
        0 0 0 45px #f5f7f9,
        0 0 0 46px #dfe5e9,
        0 0 0 90px #f5f7f9,
        0 0 0 91px #e5eaed;

    pointer-events: none;
}


/* =========================================================
   GALLERY HEADER
========================================================= */

.gallery-heading {

    position: relative;

    z-index: 2;

    margin-bottom: 38px;
}


.gallery-heading .section-label {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #ff6a00;

    font-size: 8px;

    font-weight: 850;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}


.gallery-heading .section-label::before {

    content: "";

    width: 25px;

    height: 2px;

    border-radius: 10px;

    background: #ff6a00;
}


.gallery-heading h2 {

    margin-top: 7px;

    color: #17212b;

    font-size:
        clamp(32px, 4vw, 45px);

    line-height: 1;

    letter-spacing: -1.8px;

    font-weight: 900;
}


.gallery-heading h2 span {

    color: #ff6a00;
}


/* =========================================================
   PRODUCT GALLERY LAYOUT
========================================================= */

.product-gallery {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        110px;

    gap: 18px;

    align-items: stretch;

    padding: 18px;

    border:
        1px solid #dce3e8;

    border-radius: 18px;

    background:
        rgba(255,255,255,.82);

    box-shadow:
        0 20px 50px
        rgba(23,33,43,.08);

    backdrop-filter:
        blur(10px);
}


/* =========================================================
   MAIN IMAGE AREA
========================================================= */

.gallery-main {

    position: relative;

    min-width: 0;

    min-height: 520px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid #e0e6ea;

    border-radius: 13px;

    background:
        radial-gradient(
            circle at 50% 45%,
            #ffffff 0%,
            #f6f8f9 55%,
            #edf1f3 100%
        );

    overflow: hidden;
}


/* Technical corner */

.gallery-main::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 90px;

    height: 90px;

    border-top:
        2px solid #ff6a00;

    border-left:
        2px solid #ff6a00;

    border-top-left-radius:
        13px;

    opacity: .8;

    pointer-events: none;
}


/* Bottom corner */

.gallery-main::after {

    content: "";

    position: absolute;

    right: 0;

    bottom: 0;

    width: 70px;

    height: 70px;

    border-right:
        1px solid #d6dee3;

    border-bottom:
        1px solid #d6dee3;

    border-bottom-right-radius:
        13px;

    pointer-events: none;
}


/* =========================================================
   MAIN FRAME
========================================================= */

.gallery-main-frame {

    position: relative;

    width: 100%;

    height: 100%;

    min-height: 520px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 45px;
}


/* Main image */

.gallery-main-frame img {

    display: block;

    width: 100%;

    height: 100%;

    max-width: 100%;

    max-height: 470px;

    object-fit: contain;

    object-position: center;

    filter:
        drop-shadow(
            0 25px 25px
            rgba(20,30,40,.12)
        );

    transition:
        transform .45s
        cubic-bezier(.2,.7,.2,1),
        filter .35s ease;
}


.gallery-main:hover
.gallery-main-frame img {

    transform:
        scale(1.035);

    filter:
        drop-shadow(
            0 32px 35px
            rgba(20,30,40,.17)
        );
}


/* =========================================================
   PRODUCT IMAGE INFORMATION
========================================================= */

.gallery-main-frame::after {

    content:
        "DALTON • MULTIPURPOSE LADDER";

    position: absolute;

    left: 25px;

    bottom: 20px;

    padding:
        7px 10px;

    border:
        1px solid #dce3e8;

    border-radius:
        5px;

    background:
        rgba(255,255,255,.88);

    color:
        #7d8992;

    font-size:
        7px;

    font-weight:
        800;

    letter-spacing:
        1px;

    backdrop-filter:
        blur(6px);
}


/* =========================================================
   THUMBNAIL PANEL
========================================================= */

.gallery-thumbnails {

    display:
        flex;

    flex-direction:
        column;

    gap:
        10px;

    padding:
        5px;

    overflow-y:
        auto;

    overflow-x:
        hidden;

    scrollbar-width:
        thin;

    scrollbar-color:
        #c4cdd3 transparent;
}


/* =========================================================
   THUMBNAIL
========================================================= */

.gallery-thumbnail {

    position:
        relative;

    flex:
        0 0 85px;

    width:
        100%;

    height:
        85px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        7px;

    border:
        1px solid #dce3e8;

    border-radius:
        9px;

    background:
        #ffffff;

    overflow:
        hidden;

    cursor:
        pointer;

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}


.gallery-thumbnail:hover {

    transform:
        translateX(-3px);

    border-color:
        #ffad78;

    box-shadow:
        0 8px 18px
        rgba(20,30,40,.09);
}


.gallery-thumbnail.active {

    border:
        2px solid #ff6a00;

    background:
        #fff8f3;

    box-shadow:
        0 8px 20px
        rgba(255,106,0,.14);
}


/* Active indicator */

.gallery-thumbnail.active::before {

    content:
        "";

    position:
        absolute;

    left:
        0;

    top:
        10px;

    bottom:
        10px;

    width:
        3px;

    border-radius:
        0 3px 3px 0;

    background:
        #ff6a00;
}


/* Thumbnail image */

.gallery-thumbnail img {

    width:
        100%;

    height:
        100%;

    object-fit:
        contain;

    transition:
        transform .25s ease;
}


.gallery-thumbnail:hover img {

    transform:
        scale(1.05);
}


/* =========================================================
   MOBILE GALLERY
========================================================= */

@media (max-width: 800px) {

    .gallery-section {

        padding:
            75px 0 85px;
    }


    .product-gallery {

        grid-template-columns:
            1fr;

        gap:
            12px;

        padding:
            12px;
    }


    .gallery-main {

        min-height:
            420px;
    }


    .gallery-main-frame {

        min-height:
            420px;

        padding:
            30px;
    }


    .gallery-main-frame img {

        max-height:
            380px;
    }


    .gallery-thumbnails {

        flex-direction:
            row;

        overflow-x:
            auto;

        overflow-y:
            hidden;

        padding:
            3px 2px 7px;
    }


    .gallery-thumbnail {

        flex:
            0 0 75px;

        width:
            75px;

        height:
            75px;
    }


    .gallery-thumbnail:hover {

        transform:
            translateY(-2px);
    }


    .gallery-thumbnail.active::before {

        left:
            9px;

        right:
            9px;

        top:
            auto;

        bottom:
            0;

        width:
            auto;

        height:
            3px;
    }

}


@media (max-width: 480px) {

    .gallery-section {

        padding:
            60px 0 70px;
    }


    .gallery-heading h2 {

        font-size:
            31px;
    }


    .gallery-main {

        min-height:
            300px;

        border-radius:
            11px;
    }


    .gallery-main-frame {

        min-height:
            300px;

        padding:
            20px;
    }


    .gallery-main-frame img {

        max-height:
            275px;
    }


    .gallery-main-frame::after {

        left:
            12px;

        bottom:
            12px;

        font-size:
            6px;
    }


    .gallery-thumbnail {

        flex-basis:
            62px;

        width:
            62px;

        height:
            62px;
    }

}