/* =========================================================
   PUSAT DALTON
   PREMIUM INDUSTRIAL WEBSITE
   STEP 1 — GLOBAL + NAVBAR + HERO
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');


/* =========================================================
   GLOBAL
========================================================= */

:root {
    --navy: #0b1b33;
    --navy-2: #102746;
    --navy-3: #17365d;

    --green: #159447;
    --green-dark: #0f7c3a;

    --orange: #ff6b00;
    --orange-dark: #e85d00;

    --white: #ffffff;
    --bg: #f5f7fa;
    --surface: #ffffff;

    --text: #172033;
    --muted: #687386;

    --border: #e4e8ee;

    --shadow:
        0 10px 35px rgba(11, 27, 51, 0.08);

    --shadow-lg:
        0 25px 70px rgba(11, 27, 51, 0.15);

    --container: 1180px;

    --radius: 16px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Inter", Arial, sans-serif;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f5f7fa 100%
        );

    color: var(--text);

    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
}


img {
    display: block;
    max-width: 100%;
}


a {
    color: inherit;
    text-decoration: none;
}


button {
    font-family: inherit;
}


.container {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;
}


/* =========================================================
   BUTTON SYSTEM
========================================================= */

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding: 0 20px;

    border-radius: 9px;

    font-size: 12px;
    font-weight: 700;

    border: 1px solid transparent;

    cursor: pointer;

    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


.btn:hover {
    transform: translateY(-2px);
}


.btn-primary {
    background: var(--green);
    color: white;

    box-shadow:
        0 8px 20px rgba(21, 148, 71, .20);
}


.btn-primary:hover {
    background: var(--green-dark);

    box-shadow:
        0 12px 25px rgba(21, 148, 71, .28);
}


.btn-outline {
    background: rgba(255,255,255,.04);

    border-color:
        rgba(255,255,255,.45);

    color: white;
}


.btn-outline:hover {
    background: white;
    color: var(--navy);

    border-color: white;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    position: sticky;

    top: 0;

    z-index: 9999;

    background:
        rgba(255,255,255,.94);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    border-bottom:
        1px solid rgba(228,232,238,.9);

    box-shadow:
        0 2px 15px rgba(11,27,51,.04);
}


.nav-container {
    min-height: 72px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


/* ---------- LOGO ---------- */

.logo {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}


.logo::before {
    content: "D";

    width: 36px;
    height: 36px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            var(--green),
            #20b85e
        );

    color: white;

    font-size: 17px;

    font-weight: 800;

    box-shadow:
        0 7px 18px
        rgba(21,148,71,.20);
}


.logo h1 {
    color: var(--navy);

    font-size: 15px;

    line-height: 1;

    letter-spacing: .8px;
}


.logo h1 span {
    color: var(--green);
}


.logo h1::after {
    content: "INDUSTRIAL EQUIPMENT";

    display: block;

    margin-top: 4px;

    color: #8993a3;

    font-size: 7px;

    font-weight: 600;

    letter-spacing: 1.2px;
}


/* ---------- NAV MENU ---------- */

.nav-menu ul {
    list-style: none;

    display: flex;

    align-items: center;

    gap: 28px;
}


.nav-menu a {
    position: relative;

    color: #526074;

    font-size: 11px;

    font-weight: 600;

    transition:
        color .2s ease;
}


.nav-menu a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    border-radius: 10px;

    background: var(--green);

    transition:
        width .25s ease;
}


.nav-menu a:hover {
    color: var(--green);
}


.nav-menu a:hover::after {
    width: 100%;
}


/* ---------- NAV CTA ---------- */

.nav-cta {
    flex-shrink: 0;
}


.nav-cta .btn {
    min-height: 40px;

    padding: 0 18px;

    border-radius: 999px;

    background: var(--navy);

    box-shadow:
        0 7px 18px
        rgba(11,27,51,.16);
}


.nav-cta .btn:hover {
    background: var(--green);

    box-shadow:
        0 10px 22px
        rgba(21,148,71,.22);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 570px;

    display: flex;

    align-items: center;

    overflow: hidden;

    color: white;

    background:
        radial-gradient(
            circle at 82% 20%,
            rgba(255,107,0,.18),
            transparent 28%
        ),

        radial-gradient(
            circle at 12% 85%,
            rgba(21,148,71,.16),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #071426 0%,
            #0d213c 55%,
            #102b4d 100%
        );
}


/* Decorative orange line */

.hero::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -180px;
    top: -180px;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,255,255,.08);
}


.hero::after {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    left: -130px;
    bottom: -150px;

    border-radius: 50%;

    border:
        1px solid
        rgba(21,148,71,.15);
}


/* ---------- OVERLAY ---------- */

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7,20,38,.30),
            transparent 65%
        );

    pointer-events: none;
}


/* ---------- HERO CONTENT ---------- */

.hero-content {
    position: relative;

    z-index: 2;

    padding:
        90px 0;
}


.badge {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding:
        7px 13px;

    border:
        1px solid
        rgba(255,255,255,.16);

    border-radius: 999px;

    background:
        rgba(255,255,255,.05);

    color: #ffad73;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .8px;

    text-transform: uppercase;
}


.badge::before {
    content: "";

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--orange);

    box-shadow:
        0 0 0 4px
        rgba(255,107,0,.12);
}


/* ---------- HERO TITLE ---------- */

.hero h2 {
    max-width: 760px;

    margin-top: 22px;

    color: white;

    font-size:
        clamp(38px, 5vw, 64px);

    line-height: 1.05;

    letter-spacing: -2.4px;

    font-weight: 800;
}


.highlight {
    color: var(--orange);
}


/* ---------- HERO DESCRIPTION ---------- */

.hero p {
    max-width: 640px;

    margin-top: 22px;

    color: #b8c5d7;

    font-size: 14px;

    line-height: 1.8;
}


/* ---------- HERO BUTTONS ---------- */

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 30px;
}


.hero-buttons .btn {
    min-height: 48px;

    padding:
        0 21px;
}


.hero-buttons .btn-primary {
    background: var(--orange);

    box-shadow:
        0 10px 25px
        rgba(255,107,0,.25);
}


.hero-buttons .btn-primary:hover {
    background: var(--orange-dark);
}


/* =========================================================
   HERO RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .nav-menu {
        display: none;
    }


    .nav-container {
        min-height: 68px;
    }


    .hero {
        min-height: 520px;
    }


    .hero-content {
        padding:
            75px 0;
    }

}


@media (max-width: 600px) {

    .container {
        width:
            calc(100% - 28px);
    }


    .nav-container {
        gap: 15px;
    }


    .logo h1 {
        font-size: 13px;
    }


    .logo::before {
        width: 33px;
        height: 33px;
    }


    .nav-cta .btn {
        min-height: 37px;

        padding:
            0 13px;

        font-size: 10px;
    }


    .hero {
        min-height: 560px;
    }


    .hero-content {
        padding:
            70px 0;
    }


    .hero h2 {
        font-size: 39px;

        letter-spacing: -1.5px;
    }


    .hero p {
        font-size: 13px;

        line-height: 1.7;
    }


    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }


    .hero-buttons .btn {
        width: 100%;
    }

}


/* =========================================================
   STEP 3
   TRUSTED + STATISTICS + DALTON ADVANTAGES
========================================================= */


/* =========================================================
   TRUSTED SECTION
========================================================= */

.trusted-section {

    position: relative;

    padding: 90px 0;

    background: #ffffff;

    overflow: hidden;
}


.trusted-section::before {

    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    left: -190px;
    top: -150px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(21,148,71,.055),
            transparent 70%
        );

    pointer-events: none;
}


.trusted-section::after {

    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -160px;
    bottom: -170px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,107,0,.045),
            transparent 70%
        );

    pointer-events: none;
}


/* =========================================================
   TRUSTED HEADER
========================================================= */

.trusted-header {

    position: relative;

    z-index: 2;

    max-width: 720px;

    margin:
        0 auto 42px;

    text-align: center;
}


.trusted-header span {

    display: inline-block;

    color: var(--green);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


.trusted-header h2 {

    margin-top: 8px;

    color: var(--navy);

    font-size:
        clamp(28px, 4vw, 40px);

    line-height: 1.15;

    letter-spacing: -1.2px;
}


.trusted-header p {

    margin-top: 13px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.75;
}


/* =========================================================
   TRUSTED CARDS
========================================================= */

.trusted-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 16px;
}


.trusted-card {

    position: relative;

    padding:
        26px 22px;

    min-height: 155px;

    border:
        1px solid var(--border);

    border-radius: 15px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f8fafc
        );

    box-shadow:
        0 6px 22px
        rgba(11,27,51,.045);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


.trusted-card:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(21,148,71,.25);

    box-shadow:
        0 18px 40px
        rgba(11,27,51,.10);
}


/* icon */

.trusted-icon {

    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    margin-bottom: 17px;

    border-radius: 11px;

    background:
        rgba(21,148,71,.09);

    color: var(--green);

    font-size: 12px;

    font-weight: 800;
}


.trusted-card h3 {

    color: var(--navy);

    font-size: 14px;

    line-height: 1.35;
}


.trusted-card p {

    margin-top: 7px;

    color: var(--muted);

    font-size: 10px;

    line-height: 1.65;
}


/* =========================================================
   STATISTICS
========================================================= */

.stats-section {

    position: relative;

    padding:
        0 0 95px;

    background: white;
}


.stats-wrapper {

    position: relative;

    z-index: 3;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    overflow: hidden;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            var(--navy),
            var(--navy-2)
        );

    box-shadow:
        0 22px 55px
        rgba(11,27,51,.16);
}


/* orange accent */

.stats-wrapper::before {

    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: -100px;
    top: -110px;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,255,255,.07);
}


.stat-item {

    position: relative;

    padding:
        32px 25px;

    text-align: center;
}


.stat-item:not(:last-child)::after {

    content: "";

    position: absolute;

    top: 25px;
    bottom: 25px;

    right: 0;

    width: 1px;

    background:
        rgba(255,255,255,.10);
}


.stat-number {

    color: white;

    font-size:
        clamp(26px, 3vw, 36px);

    line-height: 1;

    font-weight: 800;

    letter-spacing: -1px;
}


.stat-number span {

    color: var(--orange);
}


.stat-label {

    display: block;

    margin-top: 8px;

    color: #aebbd0;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .6px;

    text-transform: uppercase;
}


/* =========================================================
   WHY DALTON
========================================================= */

.why-section {

    position: relative;

    padding:
        105px 0 115px;

    background:
        #f6f8fb;

    overflow: hidden;
}


.why-section::before {

    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    left: -280px;
    top: 100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(21,148,71,.055),
            transparent 68%
        );
}


.why-section::after {

    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    right: -230px;
    bottom: -220px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,107,0,.05),
            transparent 68%
        );
}


/* =========================================================
   WHY HEADER
========================================================= */

.why-header {

    position: relative;

    z-index: 2;

    max-width: 720px;

    margin:
        0 auto 50px;

    text-align: center;
}


.why-header span {

    color: var(--orange);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


.why-header h2 {

    margin-top: 8px;

    color: var(--navy);

    font-size:
        clamp(29px, 4vw, 43px);

    line-height: 1.12;

    letter-spacing: -1.4px;
}


.why-header p {

    margin-top: 13px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.75;
}


/* =========================================================
   ADVANTAGES GRID
========================================================= */

.advantages-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}


.advantage-card {

    position: relative;

    padding:
        27px 23px;

    min-height: 220px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 16px;

    box-shadow:
        0 6px 24px
        rgba(11,27,51,.045);

    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


.advantage-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--green),
            var(--orange)
        );

    transform:
        scaleX(0);

    transform-origin:
        left;

    transition:
        transform .3s ease;
}


.advantage-card:hover {

    transform:
        translateY(-7px);

    border-color:
        rgba(21,148,71,.22);

    box-shadow:
        0 20px 42px
        rgba(11,27,51,.10);
}


.advantage-card:hover::before {

    transform:
        scaleX(1);
}


/* number */

.advantage-number {

    color: #c8ced7;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* icon */

.advantage-icon {

    width: 45px;
    height: 45px;

    display: grid;

    place-items: center;

    margin-top: 15px;

    margin-bottom: 19px;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            rgba(21,148,71,.10),
            rgba(21,148,71,.04)
        );

    color: var(--green);

    font-size: 12px;

    font-weight: 800;
}


.advantage-card h3 {

    color: var(--navy);

    font-size: 15px;

    line-height: 1.35;
}


.advantage-card p {

    margin-top: 8px;

    color: var(--muted);

    font-size: 10px;

    line-height: 1.7;
}


/* =========================================================
   WHY BOTTOM HIGHLIGHT
========================================================= */

.why-highlight {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    margin-top: 28px;

    padding:
        23px 26px;

    border:
        1px solid
        rgba(21,148,71,.14);

    border-radius: 13px;

    background:
        linear-gradient(
            100deg,
            rgba(21,148,71,.06),
            rgba(255,107,0,.035)
        );
}


.why-highlight p {

    color: var(--text);

    font-size: 11px;

    line-height: 1.6;
}


.why-highlight strong {

    color: var(--green);
}


.why-highlight .btn {

    flex-shrink: 0;

    min-height: 40px;

    font-size: 10px;
}


/* =========================================================
   STEP 3 RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .trusted-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .advantages-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 700px) {

    .trusted-section {

        padding:
            75px 0;
    }


    .trusted-grid {

        gap: 12px;
    }


    .trusted-card {

        padding:
            21px 18px;

        min-height: 145px;
    }


    .stats-wrapper {

        grid-template-columns:
            repeat(2, 1fr);

        border-radius: 15px;
    }


    .stat-item {

        padding:
            25px 15px;
    }


    .stat-item:nth-child(2)::after {

        display: none;
    }


    .stat-item:nth-child(-n+2) {

        border-bottom:
            1px solid
            rgba(255,255,255,.10);
    }


    .why-section {

        padding:
            75px 0 80px;
    }


    .why-header {

        margin-bottom: 35px;
    }


    .advantages-grid {

        gap: 13px;
    }


    .advantage-card {

        min-height: 205px;

        padding:
            23px 19px;
    }


    .why-highlight {

        align-items: flex-start;

        flex-direction: column;

        padding:
            20px;
    }


    .why-highlight .btn {

        width: 100%;
    }

}


@media (max-width: 480px) {

    .trusted-grid {

        grid-template-columns: 1fr;
    }


    .trusted-card {

        min-height: auto;
    }


    .stats-wrapper {

        grid-template-columns: 1fr 1fr;
    }


    .stat-item {

        padding:
            22px 10px;
    }


    .stat-number {

        font-size: 25px;
    }


    .stat-label {

        font-size: 8px;
    }


    .advantages-grid {

        grid-template-columns: 1fr;
    }


    .advantage-card {

        min-height: auto;
    }

}

/* =========================================================
   STEP 4
   PREMIUM CTA / SALES CONTACT
========================================================= */

.cta-section {

    position: relative;

    padding: 0 0 100px;

    background: #f6f8fb;

    overflow: hidden;
}


/* =========================================================
   CTA BOX
========================================================= */

.cta-box {

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

    padding: 58px 62px;

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            #0b172b 0%,
            #112744 55%,
            #0c1b30 100%
        );

    box-shadow:
        0 25px 60px
        rgba(10, 25, 48, .18);
}


/* =========================================================
   DECORATION
========================================================= */

.cta-box::before {

    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    right: -170px;
    top: -190px;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,255,255,.08);

    box-shadow:
        0 0 0 45px
        rgba(255,255,255,.015),
        0 0 0 90px
        rgba(255,255,255,.012);
}


.cta-box::after {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    left: -100px;
    bottom: -100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(21,148,71,.16),
            transparent 70%
        );
}


/* =========================================================
   CTA CONTENT
========================================================= */

.cta-content {

    position: relative;

    z-index: 2;

    max-width: 700px;
}


.cta-label {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #ff914d;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.7px;

    text-transform: uppercase;
}


.cta-label::before {

    content: "";

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        var(--orange);

    box-shadow:
        0 0 0 5px
        rgba(255,107,0,.10);
}


.cta-content h2 {

    margin-top: 10px;

    color: white;

    font-size:
        clamp(27px, 4vw, 40px);

    line-height: 1.13;

    letter-spacing: -1.2px;
}


.cta-content h2 span {

    color:
        #ff7b25;
}


.cta-content p {

    max-width: 650px;

    margin-top: 13px;

    color: #aebbd0;

    font-size: 12px;

    line-height: 1.75;
}


/* =========================================================
   CTA ACTIONS
========================================================= */

.cta-actions {

    position: relative;

    z-index: 3;

    display: flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}


.cta-actions .btn {

    min-height: 48px;

    padding:
        0 20px;

    font-size: 11px;
}


/* WhatsApp */

.btn-whatsapp {

    background:
        #19a85a;

    color: white;

    box-shadow:
        0 10px 25px
        rgba(25,168,90,.20);
}


.btn-whatsapp:hover {

    background:
        #148b49;

    box-shadow:
        0 14px 30px
        rgba(25,168,90,.28);
}


/* secondary */

.btn-light {

    background:
        rgba(255,255,255,.08);

    color: white;

    border:
        1px solid
        rgba(255,255,255,.18);
}


.btn-light:hover {

    background:
        white;

    color:
        var(--navy);
}


/* =========================================================
   CTA CONTACT INFO
========================================================= */

.cta-contact {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 25px;

    margin-top: 25px;

    padding-top: 20px;

    border-top:
        1px solid
        rgba(255,255,255,.09);
}


.cta-contact-item {

    display: flex;

    flex-direction: column;

    gap: 3px;
}


.cta-contact-item span {

    color:
        #78879e;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: .8px;

    text-transform: uppercase;
}


.cta-contact-item strong {

    color: white;

    font-size: 11px;

    font-weight: 600;
}


/* =========================================================
   CTA RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .cta-box {

        flex-direction: column;

        align-items: flex-start;

        padding:
            45px 38px;

        gap: 30px;
    }


    .cta-actions {

        width: 100%;
    }


    .cta-actions .btn {

        flex: 1;
    }

}


@media (max-width: 600px) {

    .cta-section {

        padding-bottom: 70px;
    }


    .cta-box {

        padding:
            35px 24px;

        border-radius: 18px;
    }


    .cta-content h2 {

        font-size: 27px;

        letter-spacing: -.7px;
    }


    .cta-content p {

        font-size: 11px;
    }


    .cta-actions {

        flex-direction: column;

        width: 100%;
    }


    .cta-actions .btn {

        width: 100%;
    }


    .cta-contact {

        align-items: flex-start;

        flex-direction: column;

        gap: 12px;
    }

}

/* =========================================================
   STEP 4 FIX — CTA TEXT VISIBILITY
========================================================= */

.cta-box {
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.cta-box h2 {
    color: #ffffff !important;
}

.cta-box p {
    color: #aebbd0 !important;
}

.cta-box span {
    color: #ff914d;
}

.cta-content {
    position: relative;
    z-index: 5;
}

.cta-content h2 {
    color: #ffffff !important;
    font-weight: 800;
}

.cta-content h2 span {
    color: #ff7b25 !important;
}

.cta-content p {
    color: #b7c4d7 !important;
}

.cta-label {
    color: #ff914d !important;
}

.cta-actions {
    position: relative;
    z-index: 10;
}

/* =========================================================
   STEP 5 — PREMIUM FAQ
   DALTON DUSTBIN
========================================================= */


/* =========================================================
   FAQ SECTION
========================================================= */

.faq-section {

    position: relative;

    padding: 105px 0 110px;

    background:
        linear-gradient(
            180deg,
            #f6f8fb 0%,
            #ffffff 100%
        );

    overflow: hidden;
}


/* Decorative background */

.faq-section::before {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    left: -240px;
    top: 80px;

    border-radius: 50%;

    border:
        1px solid
        rgba(21,148,71,.07);

    box-shadow:
        0 0 0 55px
        rgba(21,148,71,.025),
        0 0 0 110px
        rgba(21,148,71,.015);

    pointer-events: none;
}


.faq-section::after {

    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    right: -180px;
    bottom: -150px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,107,0,.06),
            transparent 70%
        );

    pointer-events: none;
}


/* =========================================================
   FAQ HEADER
========================================================= */

.faq-section .section-heading {

    position: relative;

    z-index: 2;

    max-width: 720px;

    margin:
        0 auto 45px;

    text-align: center;
}


.faq-section .section-label {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    color:
        var(--orange);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.6px;

    text-transform: uppercase;
}


.faq-section .section-label::before {

    content: "";

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background:
        var(--orange);

    box-shadow:
        0 0 0 5px
        rgba(255,107,0,.08);
}


.faq-section .section-heading h2 {

    margin-top: 10px;

    color:
        var(--navy) !important;

    font-size:
        clamp(29px, 4vw, 42px);

    line-height: 1.12;

    letter-spacing: -1.3px;

    font-weight: 800;
}


.faq-section .section-heading p {

    max-width: 620px;

    margin:
        14px auto 0;

    color:
        var(--muted) !important;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   FAQ LIST
========================================================= */

.faq-list {

    position: relative;

    z-index: 2;

    width: min(
        100%,
        850px
    );

    margin: auto;

    display: grid;

    gap: 13px;
}


/* =========================================================
   FAQ ITEM
========================================================= */

.faq-list details {

    position: relative;

    overflow: hidden;

    background:
        rgba(255,255,255,.96);

    border:
        1px solid
        #e4e8ee;

    border-radius: 14px;

    box-shadow:
        0 4px 18px
        rgba(13,23,42,.035);

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}


.faq-list details:hover {

    border-color:
        rgba(21,148,71,.25);

    box-shadow:
        0 10px 28px
        rgba(13,23,42,.07);

    transform:
        translateY(-2px);
}


/* =========================================================
   FAQ SUMMARY
========================================================= */

.faq-list summary {

    position: relative;

    display: flex;

    align-items: center;

    min-height: 68px;

    padding:
        18px 64px 18px 23px;

    cursor: pointer;

    list-style: none;

    color:
        var(--navy) !important;

    font-size: 13px;

    font-weight: 700;

    line-height: 1.5;

    user-select: none;

    transition:
        color .25s ease,
        background .25s ease;
}


.faq-list summary::-webkit-details-marker {

    display: none;
}


.faq-list summary::marker {

    display: none;
}


/* =========================================================
   FAQ ICON
========================================================= */

.faq-list summary::before {

    content: "?";

    flex-shrink: 0;

    width: 29px;
    height: 29px;

    margin-right: 13px;

    display: grid;

    place-items: center;

    border-radius: 9px;

    background:
        rgba(21,148,71,.09);

    color:
        var(--green);

    font-size: 11px;

    font-weight: 800;

    transition:
        background .25s ease,
        color .25s ease;
}


/* =========================================================
   PLUS / MINUS
========================================================= */

.faq-list summary::after {

    content: "+";

    position: absolute;

    right: 21px;

    top: 50%;

    width: 28px;
    height: 28px;

    display: grid;

    place-items: center;

    transform:
        translateY(-50%);

    border-radius: 8px;

    background:
        #f1f4f7;

    color:
        var(--navy);

    font-size: 18px;

    font-weight: 400;

    line-height: 1;

    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease;
}


/* =========================================================
   OPEN STATE
========================================================= */

.faq-list details[open] {

    border-color:
        rgba(21,148,71,.28);

    box-shadow:
        0 12px 32px
        rgba(13,23,42,.08);
}


.faq-list details[open] summary {

    background:
        linear-gradient(
            90deg,
            rgba(21,148,71,.035),
            transparent
        );

    color:
        var(--green) !important;
}


.faq-list details[open] summary::before {

    background:
        var(--green);

    color:
        white;
}


.faq-list details[open] summary::after {

    content: "−";

    background:
        var(--green);

    color:
        white;

    transform:
        translateY(-50%);
}


/* =========================================================
   FAQ ANSWER
========================================================= */

.faq-list details p {

    margin: 0;

    padding:
        0 65px 23px 65px;

    color:
        var(--muted) !important;

    font-size: 12px;

    line-height: 1.8;

    border-top:
        1px solid
        rgba(228,232,238,.7);

    padding-top: 17px;
}


/* =========================================================
   FAQ NUMBER / ACCENT
========================================================= */

.faq-list details::before {

    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 3px;

    background:
        transparent;

    transition:
        background .25s ease;
}


.faq-list details[open]::before {

    background:
        linear-gradient(
            180deg,
            var(--green),
            var(--orange)
        );
}


/* =========================================================
   FAQ MOBILE
========================================================= */

@media (max-width: 700px) {

    .faq-section {

        padding:
            75px 0 80px;
    }


    .faq-section .section-heading {

        margin-bottom: 32px;
    }


    .faq-section .section-heading h2 {

        font-size: 28px;

        letter-spacing: -.7px;
    }


    .faq-section .section-heading p {

        font-size: 11px;
    }


    .faq-list {

        gap: 10px;
    }


    .faq-list summary {

        min-height: 62px;

        padding:
            15px 55px 15px 15px;

        font-size: 12px;
    }


    .faq-list summary::before {

        width: 27px;
        height: 27px;

        margin-right: 10px;

        border-radius: 8px;
    }


    .faq-list summary::after {

        right: 14px;
    }


    .faq-list details p {

        padding:
            0 18px 19px 52px;

        padding-top: 14px;

        font-size: 11px;

        line-height: 1.7;
    }

}

/* =========================================================
   STEP 6 — PREMIUM FOOTER
   DALTON DUSTBIN
========================================================= */

.site-footer {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #07111f 0%,
            #0c1b30 55%,
            #0a1627 100%
        );

    color: #ffffff;

    border-top:
        1px solid
        rgba(255,255,255,.06);
}


/* =========================================================
   FOOTER DECORATION
========================================================= */

.site-footer::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -220px;
    top: -250px;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,255,255,.06);

    box-shadow:
        0 0 0 55px
        rgba(255,255,255,.015),
        0 0 0 110px
        rgba(255,255,255,.01);

    pointer-events: none;
}


.site-footer::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    left: -130px;
    bottom: -140px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(21,148,71,.12),
            transparent 70%
        );

    pointer-events: none;
}


/* =========================================================
   FOOTER MAIN
========================================================= */

.footer-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1.7fr
        1fr
        1fr
        1.3fr;

    gap: 55px;

    padding:
        75px 0 55px;
}


/* =========================================================
   FOOTER BRAND
========================================================= */

.footer-brand-wrap {
    max-width: 360px;
}


.footer-brand {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: #ffffff !important;

    font-size: 20px;

    font-weight: 800;

    letter-spacing: .7px;
}


.footer-brand-mark {

    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            #159447,
            #20b75c
        );

    color: white;

    font-size: 17px;

    font-weight: 800;

    box-shadow:
        0 8px 20px
        rgba(21,148,71,.22);
}


.footer-brand-wrap p {

    margin-top: 17px;

    color:
        #8c9aae !important;

    font-size: 11px;

    line-height: 1.8;

    max-width: 340px;
}


/* =========================================================
   FOOTER LABEL
========================================================= */

.footer-grid h4 {

    position: relative;

    margin-bottom: 19px;

    color:
        #ffffff !important;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .3px;
}


.footer-grid h4::after {

    content: "";

    display: block;

    width: 28px;

    height: 2px;

    margin-top: 8px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            #159447,
            #ff6b00
        );
}


/* =========================================================
   FOOTER LINKS
========================================================= */

.footer-grid a {

    position: relative;

    display: block;

    width: fit-content;

    margin-top: 10px;

    color:
        #8d99aa !important;

    font-size: 11px;

    line-height: 1.5;

    transition:
        color .25s ease,
        transform .25s ease;
}


.footer-grid a:hover {

    color:
        #ffffff !important;

    transform:
        translateX(4px);
}


/* =========================================================
   FOOTER CONTACT
========================================================= */

.footer-contact {

    display: grid;

    gap: 13px;
}


.footer-contact-item {

    display: flex;

    align-items: flex-start;

    gap: 11px;
}


.footer-contact-icon {

    flex-shrink: 0;

    width: 30px;
    height: 30px;

    display: grid;

    place-items: center;

    border-radius: 8px;

    background:
        rgba(255,255,255,.06);

    color:
        #20b75c;

    font-size: 10px;

    font-weight: 800;
}


.footer-contact-item div {

    display: flex;

    flex-direction: column;

    gap: 2px;
}


.footer-contact-item span {

    color:
        #657388;

    font-size: 8px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .7px;
}


.footer-contact-item strong {

    color:
        #dce3ec;

    font-size: 10px;

    font-weight: 600;

    line-height: 1.5;
}


/* =========================================================
   WHATSAPP FOOTER BUTTON
========================================================= */

.footer-whatsapp {

    display: inline-flex !important;

    align-items: center;

    justify-content: center;

    gap: 8px;

    margin-top: 18px !important;

    padding:
        10px 15px;

    border-radius: 8px;

    background:
        #19a85a !important;

    color:
        #ffffff !important;

    font-size: 10px !important;

    font-weight: 700 !important;

    box-shadow:
        0 8px 20px
        rgba(25,168,90,.16);

    transition:
        transform .25s ease,
        background .25s ease,
        box-shadow .25s ease !important;
}


.footer-whatsapp:hover {

    background:
        #148b49 !important;

    color:
        #ffffff !important;

    transform:
        translateY(-2px) !important;

    box-shadow:
        0 12px 25px
        rgba(25,168,90,.25);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {

    position: relative;

    z-index: 2;

    border-top:
        1px solid
        rgba(255,255,255,.07);

    padding:
        20px 0;
}


.footer-bottom-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.footer-bottom p {

    color:
        #657388 !important;

    font-size: 9px;

    line-height: 1.6;
}


.footer-bottom strong {

    color:
        #8996a8;
}


/* =========================================================
   FOOTER LEGAL LINKS
========================================================= */

.footer-legal {

    display: flex;

    align-items: center;

    gap: 18px;
}


.footer-legal a {

    margin: 0 !important;

    color:
        #657388 !important;

    font-size: 9px;

    transition:
        color .2s ease;
}


.footer-legal a:hover {

    color:
        #ffffff !important;

    transform: none !important;
}


/* =========================================================
   FOOTER ACCENT LINE
========================================================= */

.footer-accent {

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            #159447 0%,
            #159447 45%,
            #ff6b00 75%,
            #ff6b00 100%
        );
}


/* =========================================================
   FOOTER RESPONSIVE
========================================================= */

@media (max-width: 950px) {

    .footer-grid {

        grid-template-columns:
            1.5fr
            1fr
            1fr;

        gap: 40px;
    }


    .footer-brand-wrap {

        grid-column:
            1 / -1;

        max-width: 600px;
    }

}


@media (max-width: 650px) {

    .footer-grid {

        grid-template-columns: 1fr;

        gap: 35px;

        padding:
            55px 0 40px;
    }


    .footer-brand-wrap {

        grid-column:
            auto;
    }


    .footer-bottom-inner {

        flex-direction: column;

        align-items: flex-start;
    }


    .footer-legal {

        flex-wrap: wrap;

        gap: 12px;
    }

}

/* =========================================================
   DALTON DUSTBIN
   PREMIUM PRODUCT DETAIL
   STEP 7 — CORE + HEADER + HERO
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');


/* =========================================================
   ROOT
========================================================= */

:root {

    --navy: #0b1b33;
    --navy-2: #10294a;
    --navy-3: #16375f;

    --orange: #ff6b00;
    --orange-dark: #e85d00;

    --green: #159447;
    --green-dark: #10783a;

    --white: #ffffff;

    --bg: #f5f7fa;
    --surface: #ffffff;
    --surface-soft: #f8fafc;

    --text: #172033;
    --muted: #687386;
    --muted-2: #8b95a5;

    --border: #e4e8ee;

    --shadow:
        0 12px 35px rgba(11, 27, 51, .08);

    --shadow-lg:
        0 25px 65px rgba(11, 27, 51, .14);

    --radius: 18px;

    --container: 1180px;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family:
        "Inter",
        Arial,
        sans-serif;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f5f7fa 100%
        );

    color: var(--text);

    line-height: 1.6;

    -webkit-font-smoothing: antialiased;

    overflow-x: hidden;
}


img {
    display: block;
    max-width: 100%;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
textarea,
select {
    font-family: inherit;
}


.container {

    width:
        min(
            calc(100% - 40px),
            var(--container)
        );

    margin-inline: auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, .94);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(228, 232, 238, .85);
}


/* =========================================================
   NAV WRAPPER
========================================================= */

.nav-wrapper {
    min-height: 74px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   BRAND / LOGO
========================================================= */

.brand {
    display: flex;
    align-items: center;

    width: auto;
    max-width: 180px;

    color: var(--navy);

    flex-shrink: 0;
}


/* LOGO IMAGE */

.brand-logo {
    display: block;

    width: 165px !important;
    max-width: 165px !important;

    height: 55px !important;
    max-height: 55px !important;

    object-fit: contain !important;
    object-position: left center;

    margin: 0;
    padding: 0;
}


/* =========================================================
   OLD BRAND MARK
   Tidak digunakan kalau sudah memakai logo gambar
========================================================= */

.brand-mark {
    display: none;
}


/* =========================================================
   OLD BRAND TEXT
   Tidak digunakan kalau sudah memakai logo gambar
========================================================= */

.brand strong,
.brand small {
    display: none;
}


/* =========================================================
   NAV
========================================================= */

.main-nav {
    display: flex;
    align-items: center;

    gap: 28px;
}


.main-nav a {
    position: relative;

    color: #586476;

    font-size: 12px;
    font-weight: 600;

    transition: color .25s ease;
}


.main-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    border-radius: 10px;

    background: var(--orange);

    transition: width .25s ease;
}


.main-nav a:hover {
    color: var(--navy);
}


.main-nav a:hover::after {
    width: 100%;
}


/* =========================================================
   NAV CTA
========================================================= */

.nav-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 0 19px;

    border-radius: 999px;

    background: var(--navy);

    color: white;

    font-size: 11px;
    font-weight: 700;

    box-shadow:
        0 8px 20px
        rgba(11, 27, 51, .15);

    transition:
        transform .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}


.nav-button:hover {
    background: var(--orange);

    transform: translateY(-2px);

    box-shadow:
        0 10px 24px
        rgba(255, 107, 0, .20);
}


/* =========================================================
   RESPONSIVE HEADER
========================================================= */

@media (max-width: 900px) {

    .nav-wrapper {
        gap: 18px;
    }

    .brand {
        max-width: 150px;
    }

    .brand-logo {
        width: 145px !important;
        max-width: 145px !important;

        height: 50px !important;
        max-height: 50px !important;
    }

    .main-nav {
        gap: 18px;
    }

}


@media (max-width: 700px) {

    .nav-wrapper {
        min-height: 68px;
    }

    .brand-logo {
        width: 135px !important;
        max-width: 135px !important;

        height: 46px !important;
        max-height: 46px !important;
    }

    .main-nav {
        gap: 12px;
    }

    .main-nav a {
        font-size: 10px;
    }

    .nav-button {
        min-height: 36px;
        padding: 0 13px;

        font-size: 9px;
    }

}


@media (max-width: 520px) {

    .nav-wrapper {
        gap: 10px;
    }

    .brand-logo {
        width: 115px !important;
        max-width: 115px !important;

        height: 40px !important;
        max-height: 40px !important;
    }

    .main-nav {
        gap: 8px;
    }

    .main-nav a {
        font-size: 8px;
    }

    .nav-button {
        min-height: 32px;
        padding: 0 10px;

        font-size: 8px;
    }

}

/* =========================================================
   BREADCRUMB
========================================================= */

.breadcrumb-section {

    background: white;

    border-bottom:
        1px solid var(--border);
}


.breadcrumb {

    min-height: 52px;

    display: flex;

    align-items: center;

    gap: 9px;

    color: var(--muted);

    font-size: 10px;
}


.breadcrumb a {

    color: var(--muted);

    transition: color .2s ease;
}


.breadcrumb a:hover {

    color: var(--orange);
}


.breadcrumb .separator {

    color: #b7bec9;
}


.breadcrumb strong {

    color: var(--navy);

    font-weight: 700;
}


/* =========================================================
   HERO PRODUCT DETAIL
========================================================= */

.product-detail-hero {

    position: relative;

    overflow: hidden;

    padding:
        75px 0 85px;

    background:

        radial-gradient(
            circle at 90% 15%,
            rgba(255, 107, 0, .12),
            transparent 28%
        ),

        radial-gradient(
            circle at 5% 90%,
            rgba(21, 148, 71, .09),
            transparent 25%
        ),

        linear-gradient(
            135deg,
            #ffffff 0%,
            #f3f7fb 100%
        );
}


.product-detail-hero::before {

    content: "";

    position: absolute;

    width: 480px;

    height: 480px;

    right: -230px;

    top: -220px;

    border:
        1px solid
        rgba(11, 27, 51, .06);

    border-radius: 50%;
}


.product-detail-hero::after {

    content: "";

    position: absolute;

    width: 320px;

    height: 320px;

    left: -210px;

    bottom: -200px;

    border:
        1px solid
        rgba(21, 148, 71, .08);

    border-radius: 50%;
}


/* HERO GRID */

.product-detail-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, .95fr);

    align-items: center;

    gap: 70px;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.product-detail-content {

    max-width: 620px;
}


.product-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding:
        7px 12px;

    border:
        1px solid
        rgba(21, 148, 71, .18);

    border-radius: 999px;

    background:
        rgba(21, 148, 71, .06);

    color: var(--green);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}


.product-eyebrow::before {

    content: "";

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 0 4px
        rgba(21, 148, 71, .10);
}


.product-detail-content h1 {

    margin-top: 20px;

    color: var(--navy);

    font-size:
        clamp(
            34px,
            4.5vw,
            58px
        );

    line-height: 1.06;

    letter-spacing: -2px;
}


.product-detail-content h1 span {

    color: var(--orange);
}


.product-detail-description {

    max-width: 590px;

    margin-top: 20px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================================
   PRODUCT QUICK INFO
========================================================= */

.product-quick-info {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;

    margin-top: 28px;
}


.product-quick-info > div {

    min-height: 72px;

    padding:
        13px 14px;

    border:
        1px solid var(--border);

    border-radius: 12px;

    background:
        rgba(255, 255, 255, .75);

    box-shadow:
        0 5px 15px
        rgba(11, 27, 51, .03);
}


.product-quick-info span {

    display: block;

    color: var(--muted-2);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: .7px;

    text-transform: uppercase;
}


.product-quick-info strong {

    display: block;

    margin-top: 4px;

    color: var(--navy);

    font-size: 13px;
}


/* =========================================================
   HERO ACTION
========================================================= */

.product-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 30px;
}


.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    min-height: 48px;

    padding:
        0 20px;

    border-radius: 10px;

    font-size: 11px;

    font-weight: 700;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}


.btn:hover {

    transform:
        translateY(-2px);
}


.btn-primary {

    background: var(--orange);

    color: white;

    box-shadow:
        0 10px 25px
        rgba(255, 107, 0, .22);
}


.btn-primary:hover {

    background: var(--orange-dark);

    box-shadow:
        0 13px 28px
        rgba(255, 107, 0, .28);
}


.btn-whatsapp {

    background: var(--green);

    color: white;

    box-shadow:
        0 10px 25px
        rgba(21, 148, 71, .20);
}


.btn-whatsapp:hover {

    background: var(--green-dark);
}


.btn-outline {

    border:
        1px solid var(--border);

    background: white;

    color: var(--navy);
}


.btn-outline:hover {

    border-color:
        var(--orange);

    color: var(--orange);
}


/* =========================================================
   HERO TRUST
========================================================= */

.product-trust {

    display: flex;

    flex-wrap: wrap;

    gap: 20px 30px;

    margin-top: 28px;

    padding-top: 22px;

    border-top:
        1px solid var(--border);
}


.product-trust-item {

    display: flex;

    align-items: center;

    gap: 9px;
}


.product-trust-icon {

    width: 30px;

    height: 30px;

    display: grid;

    place-items: center;

    border-radius: 8px;

    background:
        rgba(21, 148, 71, .08);

    color: var(--green);

    font-size: 10px;

    font-weight: 800;
}


.product-trust-item strong {

    display: block;

    color: var(--navy);

    font-size: 10px;
}


.product-trust-item span {

    display: block;

    color: var(--muted-2);

    font-size: 8px;
}


/* =========================================================
   HERO PRODUCT IMAGE
========================================================= */

.product-gallery {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;
}


.product-main-card {

    position: relative;

    width: 100%;

    max-width: 500px;

    padding: 18px;

    border:
        1px solid
        rgba(255, 255, 255, .9);

    border-radius: 24px;

    background:
        rgba(255, 255, 255, .88);

    box-shadow:
        var(--shadow-lg);

    backdrop-filter:
        blur(10px);

    transform:
        rotate(.7deg);

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}


.product-main-card:hover {

    transform:
        rotate(0)
        translateY(-6px);

    box-shadow:
        0 32px 75px
        rgba(11, 27, 51, .17);
}


.product-main-image {

    position: relative;

    min-height: 450px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            #f9fafc,
            #eef2f6
        );
}


.product-main-image img {

    width: 100%;

    height: 450px;

    object-fit: contain;

    transition:
        transform .45s ease;
}


.product-main-card:hover
.product-main-image img {

    transform:
        scale(1.025);
}


/* BADGE */

.product-status {
    position: absolute;

    top: 16px;
    left: 16px;

    z-index: 5;

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding:
        7px 11px;

    border-radius: 7px;

    /* PREMIUM ORANGE */
    background:
        linear-gradient(
            135deg,
            #ff7a18 0%,
            #ff6b00 100%
        );

    color: #ffffff;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: .7px;

    text-transform: uppercase;

    box-shadow:
        0 7px 15px
        rgba(255, 107, 0, .22);
}


.product-status::before {

    content: "";

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: white;
}


/* MODEL LABEL */

.product-model-label {

    position: absolute;

    right: 16px;

    top: 16px;

    z-index: 5;

    padding:
        7px 10px;

    border-radius: 7px;

    background:
        rgba(11, 27, 51, .90);

    color: white;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: .5px;
}


/* =========================================================
   HERO IMAGE FOOTER
========================================================= */

.product-image-footer {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding:
        15px 4px 3px;
}


.product-image-footer strong {

    color: var(--navy);

    font-size: 13px;
}


.product-image-footer span {

    display: block;

    margin-top: 2px;

    color: var(--muted);

    font-size: 9px;
}


.product-code {

    padding:
        7px 10px;

    border-radius: 7px;

    background:
        #f1f4f7;

    color: var(--muted);

    font-size: 8px;

    font-weight: 700;
}


/* =========================================================
   SECTION BASE
========================================================= */

section {

    scroll-margin-top: 90px;
}


.section {

    padding:
        95px 0;
}


.section-soft {

    background:
        #f6f8fb;
}


.section-white {

    background:
        #ffffff;
}


.section-heading {

    max-width: 720px;

    margin:
        0 auto 45px;

    text-align: center;
}


.section-label {

    display: inline-block;

    color: var(--orange);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.section-heading h2 {

    margin-top: 8px;

    color: var(--navy);

    font-size:
        clamp(
            28px,
            4vw,
            42px
        );

    line-height: 1.15;

    letter-spacing: -1.2px;
}


.section-heading p {

    margin-top: 12px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.75;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 950px) {

    .main-nav {

        gap: 18px;
    }


    .product-detail-grid {

        grid-template-columns: 1fr;

        gap: 45px;
    }


    .product-detail-content {

        max-width: 760px;
    }


    .product-gallery {

        order: -1;
    }


    .product-main-card {

        max-width: 560px;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 700px) {

    .container {

        width:
            calc(100% - 28px);
    }


    .nav-wrapper {

        min-height: 64px;
    }


    .main-nav {

        display: none;
    }


    .nav-button {

        min-height: 38px;

        padding:
            0 14px;

        font-size: 10px;
    }


    .product-detail-hero {

        padding:
            45px 0 60px;
    }


    .product-detail-content h1 {

        font-size: 38px;

        letter-spacing: -1.5px;
    }


    .product-detail-description {

        font-size: 12px;
    }


    .product-quick-info {

        grid-template-columns:
            1fr 1fr;
    }


    .product-actions {

        flex-direction: column;
    }


    .product-actions .btn {

        width: 100%;
    }


    .product-main-card {

        padding: 10px;

        border-radius: 18px;
    }


    .product-main-image {

        min-height: 330px;

        border-radius: 12px;
    }


    .product-main-image img {

        height: 330px;
    }


    .product-trust {

        gap: 15px;

        flex-direction: column;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .product-detail-content h1 {

        font-size: 32px;
    }


    .product-quick-info {

        grid-template-columns: 1fr;
    }


    .product-main-image {

        min-height: 280px;
    }


    .product-main-image img {

        height: 280px;
    }


    .product-image-footer {

        align-items: flex-start;

        flex-direction: column;
    }

}

/* =========================================================
   STEP 8
   PRODUCT GALLERY + DESCRIPTION
========================================================= */


/* =========================================================
   PRODUCT GALLERY WRAPPER
========================================================= */

.product-gallery-section {

    padding: 95px 0;

    background: #ffffff;
}


.product-gallery-layout {

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, .95fr);

    gap: 70px;

    align-items: start;
}


/* =========================================================
   GALLERY
========================================================= */

.gallery-wrapper {

    position: sticky;

    top: 105px;
}


/* MAIN IMAGE */

.gallery-main {

    position: relative;

    width: 100%;

    min-height: 520px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    padding: 25px;

    border:
        1px solid var(--border);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f3f6f9
        );

    box-shadow:
        0 18px 45px
        rgba(11, 27, 51, .08);
}


.gallery-main img {

    width: 100%;

    height: 470px;

    object-fit: contain;

    transition:
        transform .45s ease;
}


.gallery-main:hover img {

    transform:
        scale(1.025);
}


/* =========================================================
   IMAGE BADGE
========================================================= */

.gallery-badge {

    position: absolute;

    top: 18px;

    left: 18px;

    z-index: 5;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding:
        8px 12px;

    border-radius: 8px;

    background: var(--green);

    color: white;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .7px;

    text-transform: uppercase;

    box-shadow:
        0 8px 18px
        rgba(21, 148, 71, .18);
}


.gallery-badge::before {

    content: "";

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: white;
}


/* =========================================================
   IMAGE ZOOM ICON
========================================================= */

.gallery-zoom {

    position: absolute;

    right: 18px;

    top: 18px;

    width: 38px;

    height: 38px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background:
        rgba(255,255,255,.92);

    border:
        1px solid var(--border);

    color: var(--navy);

    font-size: 14px;

    box-shadow:
        0 6px 18px
        rgba(11, 27, 51, .08);

    cursor: pointer;

    transition: .25s;
}


.gallery-zoom:hover {

    background: var(--orange);

    color: white;

    border-color: var(--orange);

    transform:
        translateY(-2px);
}


/* =========================================================
   THUMBNAIL GALLERY
========================================================= */

.gallery-thumbnails {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 12px;

    margin-top: 15px;
}


.gallery-thumbnail {

    position: relative;

    height: 92px;

    overflow: hidden;

    padding: 6px;

    border:
        1px solid var(--border);

    border-radius: 12px;

    background: white;

    cursor: pointer;

    transition:
        border-color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}


.gallery-thumbnail img {

    width: 100%;

    height: 100%;

    object-fit: contain;

    border-radius: 7px;
}


.gallery-thumbnail:hover {

    transform:
        translateY(-3px);

    border-color:
        rgba(255,107,0,.45);

    box-shadow:
        0 8px 20px
        rgba(11,27,51,.08);
}


.gallery-thumbnail.active {

    border:
        2px solid var(--orange);

    box-shadow:
        0 8px 22px
        rgba(255,107,0,.14);
}


/* =========================================================
   PRODUCT DESCRIPTION
========================================================= */

.product-description-box {

    padding-top: 5px;
}


.product-description-box .section-label {

    margin-bottom: 8px;
}


.product-description-box h2 {

    color: var(--navy);

    font-size:
        clamp(
            27px,
            3vw,
            39px
        );

    line-height: 1.15;

    letter-spacing: -1px;
}


.product-description-box > p {

    margin-top: 17px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.9;
}


/* =========================================================
   DESCRIPTION PARAGRAPHS
========================================================= */

.product-description-content {

    margin-top: 22px;

    display: grid;

    gap: 15px;
}


.product-description-content p {

    color: #596579;

    font-size: 12px;

    line-height: 1.85;
}


.product-description-content strong {

    color: var(--navy);

    font-weight: 700;
}


/* =========================================================
   PRODUCT HIGHLIGHTS
========================================================= */

.product-highlights {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 12px;

    margin-top: 28px;
}


.product-highlight {

    padding:
        17px;

    border:
        1px solid var(--border);

    border-radius: 13px;

    background:
        #f9fafc;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


.product-highlight:hover {

    transform:
        translateY(-3px);

    border-color:
        rgba(21,148,71,.25);

    box-shadow:
        0 10px 25px
        rgba(11,27,51,.06);
}


.product-highlight-icon {

    width: 34px;

    height: 34px;

    display: grid;

    place-items: center;

    margin-bottom: 11px;

    border-radius: 9px;

    background:
        rgba(21,148,71,.09);

    color: var(--green);

    font-size: 10px;

    font-weight: 800;
}


.product-highlight strong {

    display: block;

    color: var(--navy);

    font-size: 12px;
}


.product-highlight span {

    display: block;

    margin-top: 5px;

    color: var(--muted);

    font-size: 10px;

    line-height: 1.55;
}


/* =========================================================
   PRODUCT SPECIFICATION MINI CARD
========================================================= */

.product-spec-card {

    margin-top: 25px;

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: 15px;

    background: white;

    box-shadow:
        0 8px 25px
        rgba(11,27,51,.04);
}


.product-spec-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding:
        15px 18px;

    background:
        #f8fafc;

    border-bottom:
        1px solid var(--border);
}


.product-spec-header strong {

    color: var(--navy);

    font-size: 12px;
}


.product-spec-header span {

    color: var(--orange);

    font-size: 9px;

    font-weight: 700;
}


.product-spec-list {

    display: grid;

    grid-template-columns:
        1fr 1fr;
}


.product-spec-item {

    display: flex;

    justify-content: space-between;

    gap: 15px;

    padding:
        12px 16px;

    border-bottom:
        1px solid #edf0f4;

    font-size: 10px;
}


.product-spec-item:nth-child(odd) {

    border-right:
        1px solid #edf0f4;
}


.product-spec-item span {

    color: var(--muted);
}


.product-spec-item strong {

    color: var(--navy);

    text-align: right;

    font-weight: 700;
}


/* =========================================================
   PRODUCT CTA CARD
========================================================= */

.product-detail-cta {

    margin-top: 25px;

    padding:
        20px;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            var(--navy),
            var(--navy-2)
        );

    color: white;

    box-shadow:
        0 15px 35px
        rgba(11,27,51,.13);
}


.product-detail-cta small {

    display: block;

    color: #ff9b58;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}


.product-detail-cta strong {

    display: block;

    margin-top: 5px;

    font-size: 17px;

    line-height: 1.3;
}


.product-detail-cta p {

    margin-top: 7px;

    color: #aeb9c9;

    font-size: 10px;

    line-height: 1.6;
}


.product-detail-cta-actions {

    display: flex;

    gap: 8px;

    margin-top: 15px;
}


.product-detail-cta-actions .btn {

    min-height: 40px;

    padding:
        0 14px;

    font-size: 9px;
}


/* =========================================================
   RELATED INFORMATION
========================================================= */

.product-info-strip {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;

    margin-top: 25px;
}


.product-info-strip-item {

    padding:
        13px;

    border:
        1px solid var(--border);

    border-radius: 10px;

    background: white;
}


.product-info-strip-item span {

    display: block;

    color: var(--muted-2);

    font-size: 8px;

    text-transform: uppercase;

    letter-spacing: .5px;
}


.product-info-strip-item strong {

    display: block;

    margin-top: 3px;

    color: var(--navy);

    font-size: 10px;
}


/* =========================================================
   DESCRIPTION DIVIDER
========================================================= */

.product-description-divider {

    width: 55px;

    height: 3px;

    margin-top: 20px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            var(--orange),
            var(--green)
        );
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .product-gallery-layout {

        grid-template-columns: 1fr;

        gap: 50px;
    }


    .gallery-wrapper {

        position: relative;

        top: auto;
    }


    .gallery-main {

        max-width: 650px;

        margin-inline: auto;
    }


    .product-description-box {

        max-width: 700px;

        margin-inline: auto;
    }

}


@media (max-width: 600px) {

    .product-gallery-section {

        padding:
            65px 0;
    }


    .gallery-main {

        min-height: 360px;

        padding: 15px;

        border-radius: 17px;
    }


    .gallery-main img {

        height: 330px;
    }


    .gallery-thumbnails {

        grid-template-columns:
            repeat(3, 1fr);

        gap: 8px;
    }


    .gallery-thumbnail {

        height: 75px;

        border-radius: 9px;
    }


    .product-highlights {

        grid-template-columns: 1fr;
    }


    .product-spec-list {

        grid-template-columns: 1fr;
    }


    .product-spec-item:nth-child(odd) {

        border-right: 0;
    }


    .product-spec-item {

        padding:
            11px 13px;
    }


    .product-detail-cta-actions {

        flex-direction: column;
    }


    .product-detail-cta-actions .btn {

        width: 100%;
    }


    .product-info-strip {

        grid-template-columns: 1fr;
    }

}


@media (max-width: 400px) {

    .gallery-main {

        min-height: 300px;
    }


    .gallery-main img {

        height: 275px;
    }


    .gallery-thumbnails {

        grid-template-columns:
            repeat(2, 1fr);
    }

}



/* =========================================================
   STEP 12
   PRODUCT HERO - PREMIUM LAYOUT
========================================================= */

.product-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(255, 107, 0, 0.14),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #07182c 0%,
            #0c2038 55%,
            #102b43 100%
        );

    color: #ffffff;
    padding: 72px 0 78px;
}


.product-hero::before {
    content: "";
    position: absolute;

    width: 520px;
    height: 520px;

    right: -260px;
    top: -260px;

    border-radius: 50%;

    border: 1px solid
        rgba(255,255,255,0.08);

    pointer-events: none;
}


.product-hero::after {
    content: "";
    position: absolute;

    width: 300px;
    height: 300px;

    left: -180px;
    bottom: -180px;

    border-radius: 50%;

    border: 1px solid
        rgba(34,197,94,0.12);

    pointer-events: none;
}


/* CONTAINER */

.product-hero .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   HERO GRID
========================================================= */

.product-hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(420px, 520px);

    align-items: center;

    gap: 70px;

    min-height: 540px;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.product-hero-content {
    max-width: 620px;
}


.product-hero-content .section-label {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #ff9a55;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.product-hero-content .section-label::before {
    content: "";

    width: 24px;
    height: 2px;

    background: #ff6b00;

    border-radius: 99px;
}


.product-hero-content h1 {
    margin-top: 18px;

    max-width: 650px;

    color: #ffffff;

    font-size:
        clamp(34px, 4vw, 54px);

    line-height: 1.08;

    letter-spacing: -1.8px;
}


.product-hero-content > p {
    margin-top: 20px;

    max-width: 600px;

    color: #b9c7d8;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   PRODUCT STATUS
========================================================= */

.product-status {
    display: flex;

    flex-wrap: wrap;

    gap: 9px;

    margin-top: 25px;
}


.product-status span {
    display: inline-flex;

    align-items: center;

    padding: 7px 11px;

    border-radius: 999px;

    background:
        rgba(255,255,255,0.07);

    border:
        1px solid
        rgba(255,255,255,0.10);

    color: #dce5ef;

    font-size: 10px;

    font-weight: 700;
}


.product-status span:first-child {
    background:
        rgba(22,163,74,0.16);

    border-color:
        rgba(34,197,94,0.25);

    color: #8df0ae;
}


/* =========================================================
   HERO ACTION
========================================================= */

.product-hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}


.product-hero-actions .btn {
    min-height: 46px;

    padding:
        0 19px;

    border-radius: 9px;

    font-size: 12px;
}


.product-hero-actions .btn-primary {
    background: #ff6b00;

    color: #ffffff;

    box-shadow:
        0 10px 25px
        rgba(255,107,0,0.22);
}


.product-hero-actions .btn-primary:hover {
    background: #e85d00;
}


.product-hero-actions .btn-outline {
    border:
        1px solid
        rgba(255,255,255,0.25);

    color: #ffffff;

    background:
        rgba(255,255,255,0.05);
}


.product-hero-actions .btn-outline:hover {
    background:
        rgba(255,255,255,0.10);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.product-hero-visual {
    position: relative;

    display: flex;

    justify-content: center;

    align-items: center;
}


.product-hero-card {
    position: relative;

    width: 100%;

    max-width: 500px;

    padding: 14px;

    background:
        rgba(255,255,255,0.97);

    border-radius: 22px;

    box-shadow:
        0 30px 70px
        rgba(0,0,0,0.28);

    border:
        1px solid
        rgba(255,255,255,0.35);

    transform:
        rotate(0deg);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}


.product-hero-card:hover {
    transform:
        translateY(-6px);

    box-shadow:
        0 38px 85px
        rgba(0,0,0,0.32);
}


.product-hero-card img {
    display: block;

    width: 100%;

    height: 410px;

    object-fit: contain;

    border-radius: 13px;

    background:
        #f5f7fa;
}


.product-hero-card-badge {
    position: absolute;

    top: 26px;
    left: 26px;

    z-index: 3;

    padding:
        7px 11px;

    border-radius: 7px;

    background: #ff6b00;

    color: #ffffff;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .7px;

    text-transform: uppercase;
}


/* =========================================================
   HERO MODEL INFO
========================================================= */

.product-hero-model {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 15px;

    padding:
        15px 7px 3px;
}


.product-hero-model strong {
    color: #0d172a;

    font-size: 14px;
}


.product-hero-model span {
    color: #687386;

    font-size: 10px;
}


/* =========================================================
   TRUST INFO
========================================================= */

.product-trust {
    display: flex;

    flex-wrap: wrap;

    gap: 25px;

    margin-top: 35px;

    padding-top: 22px;

    border-top:
        1px solid
        rgba(255,255,255,0.10);
}


.product-trust-item {
    display: flex;

    flex-direction: column;

    gap: 3px;
}


.product-trust-item strong {
    color: #ffffff;

    font-size: 11px;
}


.product-trust-item span {
    color: #8292a8;

    font-size: 9px;
}

/* =========================================================
   PRODUCT GALLERY
========================================================= */

.product-gallery-section {
    padding: 75px 0;

    background:
        #ffffff;
}


.product-gallery-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(280px, .85fr);

    align-items: center;

    gap: 60px;
}


.gallery-wrapper {
    min-width: 0;
}


.gallery-main {
    position: relative;

    height: 500px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 25px;

    background:
        linear-gradient(
            145deg,
            #f8fafc,
            #eef2f6
        );

    border:
        1px solid
        #e1e7ee;

    border-radius: 22px;

    box-shadow:
        0 12px 35px
        rgba(13,23,42,.07);

    overflow: hidden;
}


.gallery-main img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    transition:
        transform .35s ease;
}


.gallery-main:hover img {
    transform:
        scale(1.025);
}


.gallery-badge {
    position: absolute;

    top: 18px;
    left: 18px;

    z-index: 3;

    padding:
        7px 11px;

    border-radius: 7px;

    background: #0d172a;

    color: #ffffff;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .6px;
}


.gallery-zoom {
    position: absolute;

    top: 17px;
    right: 17px;

    z-index: 3;

    width: 36px;
    height: 36px;

    border: 1px solid #dfe5ec;

    border-radius: 9px;

    background: #ffffff;

    color: #172033;

    cursor: pointer;

    box-shadow:
        0 5px 15px
        rgba(13,23,42,.08);

    transition: .25s;
}


.gallery-zoom:hover {
    color: #ff6b00;

    border-color:
        rgba(255,107,0,.35);

    transform:
        translateY(-2px);
}


/* =========================================================
   THUMBNAILS
========================================================= */

.gallery-thumbnails {
    display: flex;

    gap: 10px;

    margin-top: 14px;

    overflow-x: auto;

    padding-bottom: 5px;
}


.gallery-thumbnail {
    flex:
        0 0 82px;

    width: 82px;
    height: 68px;

    padding: 4px;

    border:
        1px solid
        #dfe5ec;

    border-radius: 9px;

    background: #ffffff;

    cursor: pointer;

    transition:
        border-color .2s,
        transform .2s,
        box-shadow .2s;
}


.gallery-thumbnail:hover {
    transform:
        translateY(-2px);

    border-color:
        rgba(255,107,0,.4);
}


.gallery-thumbnail.active {
    border:
        2px solid
        #ff6b00;

    box-shadow:
        0 5px 15px
        rgba(255,107,0,.12);
}


.gallery-thumbnail img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    border-radius: 5px;
}


/* =========================================================
   GALLERY INFORMATION
========================================================= */

.product-gallery-info {
    max-width: 430px;
}


.product-gallery-info .section-label {
    color: #ff6b00;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.product-gallery-info h2 {
    margin-top: 10px;

    color: #0d172a;

    font-size:
        clamp(27px, 3vw, 40px);

    line-height: 1.15;

    letter-spacing: -1px;
}


.product-gallery-info h2::after {
    content: "";

    display: block;

    width: 42px;
    height: 3px;

    margin-top: 15px;

    border-radius: 99px;

    background:
        linear-gradient(
            90deg,
            #ff6b00,
            #159447
        );
}


.product-gallery-info p {
    margin-top: 18px;

    color: #687386;

    font-size: 13px;

    line-height: 1.8;
}

/* =========================================================
   IMAGE MODAL
========================================================= */

.image-modal {
    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 30px;
}


.image-modal-overlay {
    position: absolute;

    inset: 0;

    background:
        rgba(4,10,20,.88);

    backdrop-filter:
        blur(8px);
}


.image-modal-content {
    position: relative;

    z-index: 2;

    width: min(
        100%,
        950px
    );

    max-height: 90vh;

    padding: 14px;

    border-radius: 18px;

    background:
        #ffffff;

    box-shadow:
        0 35px 100px
        rgba(0,0,0,.45);
}


.image-modal-content img {
    display: block;

    width: 100%;

    max-height: 82vh;

    object-fit: contain;

    border-radius: 10px;
}


.image-modal-close {
    position: absolute;

    top: -14px;
    right: -14px;

    z-index: 5;

    width: 38px;
    height: 38px;

    border: 0;

    border-radius: 50%;

    background:
        #ff6b00;

    color: #ffffff;

    font-size: 24px;

    line-height: 1;

    cursor: pointer;

    box-shadow:
        0 8px 20px
        rgba(0,0,0,.25);

    transition: .25s;
}


.image-modal-close:hover {
    background:
        #e85d00;

    transform:
        rotate(90deg);
}


/* =========================================================
   RESPONSIVE PRODUCT PAGE
========================================================= */

@media (max-width: 900px) {

    .product-hero-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .product-hero-content {
        max-width: 700px;
    }


    .product-hero-visual {
        order: -1;
    }


    .product-hero-card {
        max-width: 560px;
    }


    .product-gallery-layout {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .product-gallery-info {
        max-width: 650px;
    }

}


@media (max-width: 600px) {

    .product-hero {
        padding:
            50px 0 55px;
    }


    .product-hero-content h1 {
        font-size: 34px;

        letter-spacing: -1px;
    }


    .product-hero-content > p {
        font-size: 12px;
    }


    .product-hero-card img {
        height: 320px;
    }


    .product-hero-actions {
        flex-direction: column;
    }


    .product-hero-actions .btn {
        width: 100%;
    }


    .product-trust {
        gap: 15px;
    }


    .gallery-main {
        height: 360px;

        padding: 18px;
    }


    .product-gallery-section {
        padding: 50px 0;
    }


    .product-gallery-info h2 {
        font-size: 28px;
    }


    .image-modal {
        padding: 18px;
    }

}
/* =========================================================
   PRODUCT HERO GALLERY
========================================================= */

.product-hero .gallery-thumbnails {

    display: flex;

    gap: 10px;

    margin-top: 12px;

    width: 100%;

    max-width: 480px;

    justify-content: flex-start;

}


.product-hero .gallery-thumbnail {

    width: 72px;

    height: 58px;

    padding: 4px;

    border-radius: 9px;

    border:
        1px solid
        rgba(255,255,255,.16);

    background:
        rgba(255,255,255,.08);

    cursor: pointer;

    overflow: hidden;

    transition:
        .25s ease;
}


.product-hero .gallery-thumbnail img {

    width: 100%;

    height: 100%;

    object-fit: contain;

    border-radius: 6px;

    background: #fff;
}


.product-hero .gallery-thumbnail:hover {

    transform:
        translateY(-2px);

    border-color:
        rgba(255,107,0,.65);
}


.product-hero .gallery-thumbnail.active {

    border-color:
        #ff6b00;

    box-shadow:
        0 0 0 2px
        rgba(255,107,0,.18);
}


@media (max-width: 900px) {

    .product-hero .gallery-thumbnails {

        max-width: 540px;

    }

}


@media (max-width: 600px) {

    .product-hero .gallery-thumbnails {

        gap: 8px;

    }


    .product-hero .gallery-thumbnail {

        width: 64px;

        height: 52px;

    }

}
