/* =========================================================
   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 */



/* 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);
    }

}




/* =========================================================
   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;

    }

}




/* =========================================================
   SEO CONTENT — DUSTBIN DALTON
   Modern • Professional • Premium
   ========================================================= */

.seo-dustbin-content{
    --seo-dark:#1c2430;
    --seo-dark-2:#252f3d;
    --seo-yellow:#f5c400;
    --seo-yellow-dark:#dcae00;
    --seo-text:#3f4854;
    --seo-muted:#697383;
    --seo-border:#e7eaf0;
    --seo-bg:#f6f7f9;
    --seo-white:#fff;

    max-width:1200px;
    margin:75px auto 50px;
    padding:0 24px;
    color:var(--seo-text);
    font-size:16px;
    line-height:1.8;
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.seo-dustbin-content h2{
    position:relative;
    margin:0 0 20px;
    color:var(--seo-dark);
    font-size:32px;
    line-height:1.25;
    font-weight:850;
    letter-spacing:-.5px;
}

.seo-dustbin-content h2::after{
    content:"";
    display:block;
    width:48px;
    height:4px;
    margin-top:14px;
    border-radius:999px;
    background:var(--seo-yellow);
}

.seo-dustbin-content h3{
    margin:0 0 11px;
    color:var(--seo-dark);
    font-size:20px;
    line-height:1.4;
    font-weight:800;
    letter-spacing:-.15px;
}

.seo-dustbin-content p{
    margin:0 0 16px;
}

.seo-dustbin-content p:last-child{
    margin-bottom:0;
}


/* =========================================================
   KICKER
   ========================================================= */

.seo-kicker{
    display:inline-flex;
    align-items:center;
    gap:9px;
    margin-bottom:13px;
    padding:7px 13px;
    border:1px solid rgba(245,196,0,.35);
    border-radius:999px;
    background:rgba(245,196,0,.10);
    color:#856900;
    font-size:12px;
    font-weight:850;
    letter-spacing:1.4px;
    line-height:1;
    text-transform:uppercase;
}

.seo-kicker::before{
    content:"";
    width:7px;
    height:7px;
    flex:0 0 7px;
    border-radius:50%;
    background:var(--seo-yellow);
    box-shadow:0 0 0 4px rgba(245,196,0,.12);
}


/* =========================================================
   INTRO
   ========================================================= */

.seo-dustbin-intro{
    position:relative;
    margin-bottom:58px;
    padding:34px 38px;
    overflow:hidden;
    border:1px solid var(--seo-border);
    border-radius:22px;
    background:
        linear-gradient(
            135deg,
            #fff 0%,
            #fff 65%,
            #fffdf3 100%
        );
    box-shadow:
        0 10px 35px rgba(28,36,48,.055);
}

.seo-dustbin-intro::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:5px;
    height:100%;
    background:var(--seo-yellow);
}

.seo-dustbin-intro p{
    max-width:930px;
    color:var(--seo-muted);
}


/* =========================================================
   SECTION SPACING
   ========================================================= */

.seo-dustbin-products,
.seo-dustbin-types,
.seo-dustbin-use{
    margin-bottom:60px;
}


/* =========================================================
   PRODUCT GRID
   ========================================================= */

.seo-product-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:20px;
    margin-top:28px;
}

.seo-product-link{
    position:relative;
    display:flex;
    flex-direction:column;
    gap:9px;
    min-height:145px;
    padding:25px 24px;
    overflow:hidden;

    border:1px solid var(--seo-border);
    border-radius:18px;

    text-decoration:none;
    color:inherit;

    background:var(--seo-white);

    box-shadow:
        0 5px 18px rgba(28,36,48,.035);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease,
        background .25s ease;
}

.seo-product-link::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:3px;
    background:var(--seo-yellow);
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .25s ease;
}

.seo-product-link::after{
    content:"→";
    position:absolute;
    right:21px;
    bottom:19px;
    color:#aab1ba;
    font-size:19px;
    font-weight:800;
    transition:
        transform .25s ease,
        color .25s ease;
}

.seo-product-link:hover{
    transform:translateY(-5px);
    border-color:rgba(245,196,0,.55);
    background:#fff;
    box-shadow:
        0 15px 35px rgba(28,36,48,.10);
}

.seo-product-link:hover::before{
    transform:scaleX(1);
}

.seo-product-link:hover::after{
    color:var(--seo-dark);
    transform:translateX(5px);
}

.seo-product-link strong{
    padding-right:25px;
    color:var(--seo-dark);
    font-size:18px;
    line-height:1.4;
    font-weight:800;
}

.seo-product-link span{
    max-width:95%;
    color:var(--seo-muted);
    font-size:14px;
    line-height:1.65;
}


/* =========================================================
   TYPE GRID
   ========================================================= */

.seo-type-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:20px;
}

.seo-type-grid article{
    position:relative;
    padding:27px 28px;
    overflow:hidden;
    border:1px solid var(--seo-border);
    border-radius:18px;
    background:
        linear-gradient(
            145deg,
            #fff 0%,
            #f8f9fb 100%
        );
    box-shadow:
        0 5px 20px rgba(28,36,48,.035);
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.seo-type-grid article::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:4px;
    height:100%;
    background:var(--seo-yellow);
}

.seo-type-grid article:hover{
    transform:translateY(-4px);
    box-shadow:
        0 14px 30px rgba(28,36,48,.08);
}


/* =========================================================
   USE CASE GRID
   ========================================================= */

.seo-use-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:20px;
}

.seo-use-grid article{
    position:relative;
    min-height:150px;
    padding:25px 24px;

    border:1px solid var(--seo-border);
    border-radius:18px;

    background:var(--seo-white);

    box-shadow:
        0 5px 20px rgba(28,36,48,.035);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.seo-use-grid article::before{
    content:"";
    position:absolute;
    top:20px;
    left:0;
    width:4px;
    height:38px;
    border-radius:0 5px 5px 0;
    background:var(--seo-yellow);
}

.seo-use-grid article:hover{
    transform:translateY(-4px);
    border-color:#dde1e7;
    box-shadow:
        0 14px 30px rgba(28,36,48,.08);
}


/* =========================================================
   GUIDE
   ========================================================= */

.seo-dustbin-guide{
    max-width:900px;
    margin-bottom:60px;
    padding:30px 32px;
    border:1px solid var(--seo-border);
    border-radius:20px;
    background:var(--seo-bg);
}

.seo-dustbin-guide ol{
    margin:22px 0 0;
    padding:0;
    list-style:none;
    counter-reset:seo-guide;
}

.seo-dustbin-guide li{
    position:relative;
    margin-bottom:14px;
    padding:15px 18px 15px 56px;
    border:1px solid #e4e7ec;
    border-radius:13px;
    background:#fff;
    color:var(--seo-text);
}

.seo-dustbin-guide li:last-child{
    margin-bottom:0;
}

.seo-dustbin-guide li::before{
    counter-increment:seo-guide;
    content:counter(seo-guide);

    position:absolute;
    top:50%;
    left:16px;

    display:flex;
    align-items:center;
    justify-content:center;

    width:27px;
    height:27px;

    border-radius:50%;

    background:var(--seo-yellow);
    color:var(--seo-dark);

    font-size:12px;
    font-weight:900;

    transform:translateY(-50%);
}


/* =========================================================
   CTA
   ========================================================= */

.seo-dustbin-cta{
    position:relative;
    margin-top:35px;
    padding:42px 35px;
    overflow:hidden;

    border:1px solid rgba(245,196,0,.25);
    border-radius:22px;

    text-align:center;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(245,196,0,.16),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #1c2430 0%,
            #252f3d 100%
        );

    box-shadow:
        0 18px 45px rgba(28,36,48,.15);
}

.seo-dustbin-cta::before{
    content:"";
    position:absolute;
    top:-70px;
    right:-60px;
    width:180px;
    height:180px;
    border:1px solid rgba(245,196,0,.18);
    border-radius:50%;
}

.seo-dustbin-cta h2{
    color:#fff;
}

.seo-dustbin-cta h2::after{
    margin-left:auto;
    margin-right:auto;
    background:var(--seo-yellow);
}

.seo-dustbin-cta p{
    max-width:750px;
    margin:0 auto 25px;
    color:rgba(255,255,255,.78);
}


/* =========================================================
   CTA BUTTON
   ========================================================= */

.seo-dustbin-button{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;

    min-height:50px;
    padding:0 27px;

    border:2px solid var(--seo-yellow);
    border-radius:11px;

    text-decoration:none;

    background:var(--seo-yellow);
    color:var(--seo-dark);

    font-size:15px;
    font-weight:850;
    letter-spacing:.1px;

    box-shadow:
        0 7px 20px rgba(0,0,0,.15);

    transition:
        transform .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}

.seo-dustbin-button::after{
    content:"→";
    font-size:18px;
    transition:transform .25s ease;
}

.seo-dustbin-button:hover{
    transform:translateY(-3px);
    background:#ffd21a;
    box-shadow:
        0 12px 28px rgba(0,0,0,.22);
}

.seo-dustbin-button:hover::after{
    transform:translateX(4px);
}

.seo-dustbin-button:active{
    transform:translateY(-1px);
}


/* =========================================================
   FOCUS ACCESSIBILITY
   ========================================================= */

.seo-product-link:focus-visible,
.seo-dustbin-button:focus-visible{
    outline:3px solid rgba(245,196,0,.45);
    outline-offset:4px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media(max-width:1000px){

    .seo-product-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .seo-use-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:700px){

    .seo-dustbin-content{
        margin-top:50px;
        margin-bottom:35px;
        padding:0 17px;
        font-size:15px;
        line-height:1.75;
    }

    .seo-dustbin-content h2{
        font-size:26px;
        letter-spacing:-.3px;
    }

    .seo-dustbin-content h3{
        font-size:18px;
    }

    .seo-dustbin-intro{
        margin-bottom:45px;
        padding:27px 23px;
        border-radius:18px;
    }

    .seo-product-grid,
    .seo-type-grid,
    .seo-use-grid{
        grid-template-columns:1fr;
        gap:15px;
    }

    .seo-dustbin-products,
    .seo-dustbin-types,
    .seo-dustbin-use,
    .seo-dustbin-guide{
        margin-bottom:45px;
    }

    .seo-product-link{
        min-height:auto;
        padding:21px 20px;
    }

    .seo-type-grid article{
        padding:22px 23px;
    }

    .seo-use-grid article{
        min-height:auto;
        padding:22px 21px;
    }

    .seo-dustbin-guide{
        padding:24px 19px;
        border-radius:17px;
    }

    .seo-dustbin-guide li{
        padding:14px 15px 14px 51px;
    }

    .seo-dustbin-cta{
        margin-top:25px;
        padding:32px 20px;
        border-radius:19px;
    }

    .seo-dustbin-button{
        width:100%;
        min-height:51px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media(max-width:420px){

    .seo-dustbin-content{
        padding:0 14px;
    }

    .seo-dustbin-content h2{
        font-size:24px;
    }

    .seo-kicker{
        font-size:11px;
        letter-spacing:1.1px;
    }

    .seo-dustbin-intro{
        padding:24px 19px;
    }

    .seo-product-link,
    .seo-type-grid article,
    .seo-use-grid article{
        padding:19px;
        border-radius:15px;
    }

    .seo-product-link strong{
        font-size:17px;
    }

    .seo-dustbin-cta{
        padding:28px 17px;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media(prefers-reduced-motion:reduce){

    .seo-product-link,
    .seo-type-grid article,
    .seo-use-grid article,
    .seo-dustbin-button{
        transition:none;
    }
}



/* =========================================================
   SEO BREADCRUMB — SLIM
   ========================================================= */

.seo-breadcrumb {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    min-height: 34px;

    padding: 0 24px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 7px;

    box-sizing: border-box;

    color: #7A8490;

    font-size: 10px;
    line-height: 1.4;
}

.seo-breadcrumb a {
    color: #7A8490;

    text-decoration: none;

    font-weight: 600;
}

.seo-breadcrumb a:hover {
    color: #F58220;
}

.seo-breadcrumb span[aria-hidden="true"] {
    color: #C5CBD2;

    font-size: 12px;
}

.seo-breadcrumb span:last-child {
    color: #0F3D73;

    font-weight: 700;
}

@media (max-width: 600px) {

    .seo-breadcrumb {
        min-height: 31px;

        padding: 0 16px;

        font-size: 9px;

        gap: 5px;
    }

}




/* =========================================================
   DALTON — CURRENT PRODUCT PAGE
   HEADER + BREADCRUMB + HERO
   ========================================================= */

:root {
    --dalton-blue: #0F3D73;
    --dalton-blue-dark: #082B54;
    --dalton-orange: #F58220;
    --dalton-orange-dark: #D66A12;
    --dalton-text: #1F2937;
    --dalton-muted: #6B7280;
    --dalton-border: #E7ECF2;
    --dalton-soft: #F7F9FC;
}


/* =========================================================
   SITE HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.94);

    border-bottom: 1px solid rgba(15, 61, 115, 0.08);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    box-shadow:
        0 4px 18px rgba(15, 61, 115, 0.045);
}

.nav-wrapper {
    min-height: 76px;

    display: flex;
    align-items: center;

    gap: 28px;
}


/* =========================================================
   BRAND
   ========================================================= */

.brand {
    display: inline-flex;
    align-items: center;

    flex: 0 0 auto;
}

.brand-logo {
    display: block;

    width: auto;
    height: 42px;

    object-fit: contain;
}


/* =========================================================
   MAIN NAVIGATION
   ========================================================= */

.main-nav {
    display: flex;
    align-items: center;

    gap: 28px;

    margin-left: auto;
}

.main-nav a {
    position: relative;

    padding: 27px 0;

    color: var(--dalton-text);

    font-size: 13px;
    font-weight: 600;

    white-space: nowrap;
}

.main-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 18px;

    width: 0;
    height: 2px;

    border-radius: 999px;

    background: var(--dalton-orange);

    transition:
        width .25s ease;
}

.main-nav a:hover {
    color: var(--dalton-blue);
}

.main-nav a:hover::after {
    width: 100%;
}


/* =========================================================
   NAV BUTTON
   ========================================================= */

.nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 0 19px;

    border-radius: 999px;

    background: var(--dalton-blue);
    color: #fff !important;

    font-size: 12px;
    font-weight: 700;

    white-space: nowrap;

    box-shadow:
        0 8px 20px rgba(15, 61, 115, 0.16);

    transition:
        transform .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}

.nav-button:hover {
    background: var(--dalton-orange);

    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(245, 130, 32, 0.20);
}


/* =========================================================
   BREADCRUMB
   ========================================================= */

.seo-breadcrumb {
    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    padding:
        13px 24px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px;

    color: var(--dalton-muted);

    font-size: 11px;
    line-height: 1.5;
}

.seo-breadcrumb a {
    color: #7A8490;

    font-weight: 600;
}

.seo-breadcrumb a:hover {
    color: var(--dalton-orange);
}

.seo-breadcrumb span:last-child {
    color: var(--dalton-blue);

    font-weight: 700;
}

.seo-breadcrumb span[aria-hidden="true"] {
    color: #B9C1C9;

    font-size: 14px;
}


/* =========================================================
   PRODUCT HERO
   ========================================================= */

.product-hero {
    position: relative;

    padding:
        76px 0
        88px;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #FFFFFF 0%,
            #F8FAFC 100%
        );
}


/* subtle decorative glow */

.product-hero::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -180px;
    top: -190px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(245, 130, 32, 0.07) 0%,
            rgba(245, 130, 32, 0) 68%
        );

    pointer-events: none;
}


/* =========================================================
   HERO GRID
   ========================================================= */

.product-hero-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(380px, .95fr);

    align-items: center;

    gap: 70px;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.product-hero-content {
    min-width: 0;

    max-width: 680px;
}


/* =========================================================
   SECTION LABEL
   ========================================================= */

.product-hero .section-label {
    display: inline-flex;
    align-items: center;

    position: relative;

    margin-bottom: 18px;

    padding-left: 13px;

    color: var(--dalton-orange);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.6px;

    text-transform: uppercase;
}

.product-hero .section-label::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 3px;
    height: 17px;

    border-radius: 999px;

    background: var(--dalton-orange);

    transform: translateY(-50%);
}


/* =========================================================
   HERO TITLE
   ========================================================= */

.product-hero h1 {
    max-width: 700px;

    margin: 0;

    color: var(--dalton-blue);

    font-size:
        clamp(
            38px,
            5vw,
            64px
        );

    line-height: 1.06;

    font-weight: 800;

    letter-spacing: -1.8px;
}


/* =========================================================
   HERO DESCRIPTION
   ========================================================= */

.product-hero-content > p {
    max-width: 620px;

    margin: 23px 0 0;

    color: var(--dalton-muted);

    font-size: 15px;
    line-height: 1.85;
}


/* =========================================================
   STATUS
   ========================================================= */

.product-status {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 9px;

    margin-top: 25px;
}

.product-status span {
    display: inline-flex;
    align-items: center;

    min-height: 32px;

    padding: 0 12px;

    border: 1px solid #DCE5EE;

    border-radius: 999px;

    background: #fff;

    color: var(--dalton-blue);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .4px;
}

.product-status span:first-child {
    border-color: rgba(34, 197, 94, .20);

    background: #F0FDF4;

    color: #15803D;
}


/* =========================================================
   HERO ACTIONS
   ========================================================= */

.product-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}

.product-hero-actions .btn {
    min-height: 48px;

    padding:
        0 23px;

    border-radius: 10px;

    font-size: 13px;
}


/* primary */

.product-hero-actions .btn-primary {
    background: var(--dalton-blue);

    color: #fff;

    box-shadow:
        0 10px 24px rgba(15, 61, 115, .16);
}

.product-hero-actions .btn-primary:hover {
    background: var(--dalton-orange);

    transform: translateY(-2px);
}


/* outline */

.product-hero-actions .btn-outline {
    border:
        1px solid
        rgba(15, 61, 115, .18);

    background: #fff;

    color: var(--dalton-blue);
}

.product-hero-actions .btn-outline:hover {
    background: var(--dalton-blue);

    color: #fff;
}


/* =========================================================
   TRUST ITEMS
   ========================================================= */

.product-trust {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    max-width: 560px;

    margin-top: 38px;

    padding-top: 24px;

    border-top:
        1px solid
        var(--dalton-border);

    gap: 0;
}

.product-trust-item {
    padding-right: 20px;

    border-right:
        1px solid
        var(--dalton-border);
}

.product-trust-item:not(:first-child) {
    padding-left: 20px;
}

.product-trust-item:last-child {
    border-right: none;
}

.product-trust-item strong {
    display: block;

    color: var(--dalton-blue);

    font-size: 13px;
    line-height: 1.3;

    font-weight: 800;

    letter-spacing: .5px;
}

.product-trust-item span {
    display: block;

    margin-top: 5px;

    color: #87919C;

    font-size: 10px;
    line-height: 1.5;
}


/* =========================================================
   HERO VISUAL
   ========================================================= */

.product-hero-visual {
    position: relative;

    min-width: 0;
}

.product-hero-card {
    position: relative;

    min-height: 470px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding:
        42px 40px
        34px;

    border:
        1px solid
        rgba(15, 61, 115, .08);

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            #FFFFFF 0%,
            #F8FAFC 100%
        );

    box-shadow:
        0 25px 65px
        rgba(15, 61, 115, .10);

    overflow: hidden;
}


/* visual orange glow */

.product-hero-card::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    left: 50%;
    top: 50%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(245, 130, 32, .09),
            rgba(245, 130, 32, 0) 70%
        );

    transform:
        translate(-50%, -50%);
}


/* =========================================================
   BADGE
   ========================================================= */

.product-hero-card-badge {
    position: absolute;

    top: 22px;
    left: 22px;

    z-index: 3;

    display: inline-flex;
    align-items: center;

    min-height: 30px;

    padding: 0 12px;

    border:
        1px solid
        rgba(245, 130, 32, .18);

    border-radius: 999px;

    background: #FFF7F0;

    color: var(--dalton-orange);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .8px;

    text-transform: uppercase;
}


/* =========================================================
   HERO IMAGE
   ========================================================= */

#heroProductImage {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 430px;

    height: 370px;

    object-fit: contain;

    margin: 10px auto 0;

    filter:
        drop-shadow(
            0 20px 28px
            rgba(15, 61, 115, .10)
        );

    transition:
        transform .45s ease;
}

.product-hero-card:hover #heroProductImage {
    transform: scale(1.035);
}


/* =========================================================
   HERO PRODUCT NAME
   ========================================================= */

.product-hero-model {
    position: relative;
    z-index: 3;

    width: 100%;

    margin-top: 10px;

    padding-top: 18px;

    border-top:
        1px solid
        var(--dalton-border);

    text-align: center;
}

.product-hero-model strong {
    display: block;

    color: var(--dalton-blue);

    font-size: 17px;
    line-height: 1.35;

    font-weight: 800;
}

.product-hero-model span {
    display: block;

    margin-top: 5px;

    color: var(--dalton-muted);

    font-size: 11px;
    line-height: 1.5;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .product-hero-grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(320px, .85fr);

        gap: 45px;
    }

    .product-hero h1 {
        font-size: clamp(36px, 5vw, 52px);
    }

    .main-nav {
        gap: 18px;
    }

    .nav-wrapper {
        gap: 18px;
    }

}


/* =========================================================
   TABLET / SMALL LAPTOP
   ========================================================= */

@media (max-width: 800px) {

    .site-header {
        position: relative;
    }

    .nav-wrapper {
        min-height: 70px;
    }

    .main-nav {
        display: none;
    }

    .nav-button {
        margin-left: auto;
    }

    .seo-breadcrumb {
        padding:
            11px 20px;
    }

    .product-hero {
        padding:
            55px 0
            65px;
    }

    .product-hero-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .product-hero-content {
        max-width: 720px;
    }

    .product-hero h1 {
        max-width: 700px;
    }

    .product-hero-visual {
        max-width: 650px;

        width: 100%;

        margin: 0 auto;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .container {
        padding-inline: 16px;
    }

    .nav-wrapper {
        min-height: 64px;
    }

    .brand-logo {
        height: 36px;
    }

    .nav-button {
        min-height: 38px;

        padding: 0 14px;

        font-size: 10px;
    }

    .seo-breadcrumb {
        padding:
            10px 16px;

        font-size: 10px;
    }

    .product-hero {
        padding:
            43px 0
            48px;
    }

    .product-hero h1 {
        font-size: 31px;

        line-height: 1.12;

        letter-spacing: -.8px;
    }

    .product-hero-content > p {
        margin-top: 17px;

        font-size: 14px;

        line-height: 1.75;
    }

    .product-status {
        margin-top: 20px;

        gap: 7px;
    }

    .product-status span {
        min-height: 29px;

        padding: 0 10px;

        font-size: 9px;
    }

    .product-hero-actions {
        flex-direction: column;

        align-items: stretch;

        margin-top: 24px;
    }

    .product-hero-actions .btn {
        width: 100%;
    }

    .product-trust {
        margin-top: 30px;

        grid-template-columns: 1fr;

        gap: 17px;
    }

    .product-trust-item,
    .product-trust-item:not(:first-child) {
        padding:
            0 0 17px;

        border-right: none;

        border-bottom:
            1px solid
            var(--dalton-border);
    }

    .product-trust-item:last-child {
        padding-bottom: 0;

        border-bottom: none;
    }

    .product-hero-card {
        min-height: 380px;

        padding:
            35px 20px
            25px;

        border-radius: 22px;
    }

    #heroProductImage {
        height: 270px;
    }

    .product-hero-model strong {
        font-size: 15px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .nav-button {
        display: none;
    }

    .product-hero h1 {
        font-size: 28px;
    }

    .product-hero-card {
        min-height: 350px;
    }

    #heroProductImage {
        height: 245px;
    }

}