:root {
    --dg-navy: #2d4a66;
    --dg-navy-dark: #1d3449;
    --dg-blue: #dceeff;
    --dg-blue-soft: #eff7ff;
    --dg-cream: #f7f1e8;
    --dg-orange: #c9823b;
    --dg-green: #15803d;
    --dg-text: #202b35;
    --dg-muted: #64717d;
    --dg-border: #dce3e8;
    --dg-white: #ffffff;
    --dg-shadow:
        0 18px 45px rgba(45, 74, 102, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.digiondel-sales-template {
    margin: 0;
    background: var(--dg-white);
    color: var(--dg-text);
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.65;
}

.dg-sales-page h1,
.dg-sales-page h2,
.dg-sales-page h3,
.dg-sales-page p {
    margin-top: 0;
}

.dg-sales-page img {
    display: block;
    max-width: 100%;
}

.dg-container {
    width: min(1160px, calc(100% - 40px));
    margin-inline: auto;
}

.dg-topbar {
    position: sticky;
    z-index: 50;
    top: 0;
    border-bottom: 1px solid rgba(45, 74, 102, 0.1);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
}

.dg-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
}

.dg-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--dg-navy);
    font-size: 20px;
    font-weight: 800;
    text-decoration: none;
}

.dg-brand__mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 11px;
    background: var(--dg-navy);
    color: var(--dg-white);
}

.dg-topbar__cta {
    padding: 10px 18px;
    border-radius: 9px;
    background: var(--dg-green);
    color: var(--dg-white);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.dg-hero {
    overflow: hidden;
    padding: 78px 0 72px;
    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(220, 238, 255, 0.95),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f7fbff 100%
        );
}

.dg-hero__grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.12fr)
        minmax(340px, 0.88fr);
    align-items: center;
    gap: 70px;
}

.dg-eyebrow,
.dg-section-label {
    display: inline-flex;
    margin-bottom: 17px;
    padding: 7px 13px;
    border-radius: 999px;
    background: var(--dg-blue);
    color: var(--dg-navy);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.dg-hero h1 {
    max-width: 720px;
    margin-bottom: 22px;
    color: var(--dg-navy-dark);
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.06;
    letter-spacing: -0.045em;
}

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

.dg-hero__lead {
    max-width: 680px;
    margin-bottom: 25px;
    color: var(--dg-muted);
    font-size: 19px;
    line-height: 1.7;
}

.dg-check-list {
    display: grid;
    gap: 10px;
    margin: 0 0 26px;
    padding: 0;
    list-style: none;
}

.dg-check-list li {
    position: relative;
    padding-left: 32px;
}

.dg-check-list li::before {
    position: absolute;
    top: 1px;
    left: 0;
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 50%;
    background: #e8f7ed;
    color: var(--dg-green);
    content: "✓";
    font-size: 13px;
    font-weight: 900;
}

.dg-hero__price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.dg-price-old {
    color: #7a8792;
    font-size: 18px;
    text-decoration: line-through;
}

.dg-price-current {
    color: var(--dg-navy-dark);
    font-size: 34px;
    font-weight: 900;
}

.dg-price-current .woocommerce-Price-currencySymbol,
.dg-price-old .woocommerce-Price-currencySymbol {
    margin-right: 2px;
}

.dg-discount {
    padding: 6px 10px;
    border-radius: 7px;
    background: #fff0df;
    color: #a6530d;
    font-size: 13px;
    font-weight: 800;
}

.dg-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 57px;
    padding: 14px 27px;
    border-radius: 11px;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        background 0.18s ease;
}

.dg-button:hover {
    transform: translateY(-2px);
}

.dg-button--primary {
    background: var(--dg-green);
    color: var(--dg-white);
    box-shadow:
        0 14px 30px rgba(21, 128, 61, 0.24);
}

.dg-button--primary:hover {
    background: #116b33;
    color: var(--dg-white);
}

.dg-button--light {
    background: var(--dg-white);
    color: var(--dg-navy);
    box-shadow: var(--dg-shadow);
}

.dg-microcopy {
    margin: 13px 0 0;
    color: var(--dg-muted);
    font-size: 13px;
}

.dg-hero__visual {
    position: relative;
    display: grid;
    min-height: 520px;
    place-items: center;
}

.dg-product-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(201, 130, 59, 0.18),
            rgba(220, 238, 255, 0.35) 55%,
            transparent 72%
        );
}

.dg-product-card {
    position: relative;
    z-index: 2;
    width: min(410px, 90%);
    padding: 18px;
    border: 1px solid rgba(45, 74, 102, 0.12);
    border-radius: 22px;
    background: var(--dg-white);
    box-shadow: var(--dg-shadow);
    transform: rotate(1.5deg);
}

.dg-product-image {
    width: 100%;
    height: auto;
    border-radius: 13px;
}

.dg-cover-placeholder {
    display: flex;
    min-height: 470px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px;
    border-radius: 14px;
    background:
        linear-gradient(
            145deg,
            var(--dg-blue),
            var(--dg-cream)
        );
    color: var(--dg-navy);
    text-align: center;
}

.dg-cover-placeholder small {
    font-weight: 900;
    letter-spacing: 0.1em;
}

.dg-cover-placeholder strong {
    margin: 17px 0 5px;
    font-size: 41px;
    line-height: 1.05;
}

.dg-cover-placeholder span {
    font-size: 18px;
    font-weight: 700;
}

.dg-cover-placeholder em {
    margin-top: 35px;
    font-size: 14px;
}

.dg-floating-badge {
    position: absolute;
    z-index: 3;
    padding: 11px 15px;
    border-radius: 11px;
    background: var(--dg-white);
    color: var(--dg-navy);
    font-size: 13px;
    font-weight: 900;
    box-shadow:
        0 12px 30px rgba(45, 74, 102, 0.18);
}

.dg-floating-badge--one {
    top: 70px;
    right: -5px;
}

.dg-floating-badge--two {
    bottom: 70px;
    left: -12px;
}

.dg-trust {
    border-top: 1px solid var(--dg-border);
    border-bottom: 1px solid var(--dg-border);
    background: var(--dg-white);
}

.dg-trust__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.dg-trust__grid > div {
    display: flex;
    min-height: 105px;
    flex-direction: column;
    justify-content: center;
    padding: 22px 34px;
    border-right: 1px solid var(--dg-border);
}

.dg-trust__grid > div:last-child {
    border-right: 0;
}

.dg-trust strong {
    color: var(--dg-navy);
    font-size: 16px;
}

.dg-trust span {
    color: var(--dg-muted);
    font-size: 14px;
}

.dg-section {
    padding: 92px 0;
}

.dg-section--cream {
    background: var(--dg-cream);
}

.dg-section--blue {
    background: var(--dg-blue-soft);
}

.dg-section-heading {
    max-width: 770px;
    margin: 0 auto 47px;
    text-align: center;
}

.dg-section-heading > span {
    color: var(--dg-orange);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dg-section-heading h2,
.dg-split h2,
.dg-audience h2,
.dg-offer h2 {
    margin: 10px 0 15px;
    color: var(--dg-navy-dark);
    font-size: clamp(31px, 4vw, 47px);
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.dg-section-heading p,
.dg-split p {
    color: var(--dg-muted);
    font-size: 17px;
}

.dg-problem-grid,
.dg-content-grid,
.dg-bonus-grid {
    display: grid;
    gap: 22px;
}

.dg-problem-grid {
    grid-template-columns: repeat(4, 1fr);
}

.dg-card,
.dg-content-grid article,
.dg-bonus-grid article {
    padding: 28px;
    border: 1px solid var(--dg-border);
    border-radius: 16px;
    background: var(--dg-white);
    box-shadow:
        0 10px 30px rgba(45, 74, 102, 0.06);
}

.dg-card__icon {
    margin-bottom: 17px;
    font-size: 32px;
}

.dg-card h3,
.dg-content-grid h3,
.dg-bonus-grid h3 {
    margin-bottom: 10px;
    color: var(--dg-navy);
    font-size: 19px;
    line-height: 1.35;
}

.dg-card p,
.dg-content-grid p,
.dg-bonus-grid p {
    margin-bottom: 0;
    color: var(--dg-muted);
    font-size: 14px;
}

.dg-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.dg-framework {
    display: grid;
    gap: 14px;
}

.dg-framework > div {
    display: grid;
    grid-template-columns: 55px 1fr;
    padding: 20px;
    border: 1px solid var(--dg-border);
    border-radius: 14px;
    background: var(--dg-white);
}

.dg-framework span {
    grid-row: span 2;
    color: var(--dg-orange);
    font-size: 25px;
    font-weight: 900;
}

.dg-framework strong {
    color: var(--dg-navy);
    font-size: 16px;
}

.dg-framework small {
    color: var(--dg-muted);
}

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

.dg-content-grid b {
    display: inline-flex;
    margin-bottom: 17px;
    color: var(--dg-orange);
    font-size: 13px;
}

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

.dg-bonus-grid article {
    border-top: 4px solid var(--dg-orange);
}

.dg-bonus-number {
    margin-bottom: 16px;
    color: var(--dg-orange);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.dg-audience {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 65px;
}

.dg-audience__list {
    display: grid;
    gap: 13px;
}

.dg-audience__list div {
    padding: 15px 18px;
    border-radius: 11px;
    background: var(--dg-white);
    color: var(--dg-navy);
    font-weight: 700;
}

.dg-offer {
    background: var(--dg-navy-dark);
}

.dg-offer-box {
    display: grid;
    grid-template-columns: 1fr 420px;
    overflow: hidden;
    border-radius: 24px;
    background: var(--dg-white);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.25);
}

.dg-offer-copy {
    padding: 55px;
}

.dg-offer-price {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 45px;
    background: var(--dg-cream);
    text-align: center;
}

.dg-offer-price > span,
.dg-offer-price > small {
    color: var(--dg-muted);
}

.dg-offer-price del {
    margin-bottom: 17px;
    color: #77838e;
    font-size: 20px;
}

.dg-offer-price > strong {
    margin: 3px 0 22px;
    color: var(--dg-navy-dark);
    font-size: 48px;
    line-height: 1;
}

.dg-offer-price p {
    margin: 13px 0 0;
    color: var(--dg-muted);
    font-size: 13px;
}

.dg-faq {
    max-width: 850px;
}

.dg-faq-item {
    border-bottom: 1px solid var(--dg-border);
}

.dg-faq-question {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 22px 0;
    border: 0;
    background: transparent;
    color: var(--dg-navy-dark);
    font: inherit;
    font-size: 17px;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.dg-faq-question b {
    color: var(--dg-orange);
    font-size: 25px;
}

.dg-faq-answer {
    padding: 0 45px 20px 0;
    color: var(--dg-muted);
}

.dg-faq-answer p {
    margin: 0;
}

.dg-final-cta {
    padding: 85px 0;
    background:
        linear-gradient(
            135deg,
            var(--dg-navy),
            var(--dg-navy-dark)
        );
    color: var(--dg-white);
    text-align: center;
}

.dg-final-cta h2 {
    max-width: 820px;
    margin: 0 auto 16px;
    font-size: clamp(34px, 5vw, 53px);
    line-height: 1.12;
}

.dg-final-cta p {
    max-width: 690px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
}

.dg-footer {
    padding: 38px 0 100px;
    background: #142535;
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
}

.dg-footer strong {
    color: var(--dg-white);
    font-size: 20px;
}

.dg-footer p {
    margin: 5px 0 12px;
}

.dg-mobile-cta {
    display: none;
}

@media (max-width: 980px) {
    .dg-hero__grid,
    .dg-split,
    .dg-audience {
        grid-template-columns: 1fr;
    }

    .dg-hero__grid {
        gap: 30px;
    }

    .dg-hero__visual {
        min-height: 470px;
    }

    .dg-problem-grid,
    .dg-content-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dg-offer-box {
        grid-template-columns: 1fr;
    }

    .dg-offer-price {
        padding: 42px;
    }
}

@media (max-width: 700px) {
    .dg-container {
        width: min(100% - 28px, 1160px);
    }

    .dg-topbar__cta {
        display: none;
    }

    .dg-hero {
        padding: 50px 0 35px;
    }

    .dg-hero h1 {
        font-size: 42px;
    }

    .dg-hero__lead {
        font-size: 17px;
    }

    .dg-button {
        width: 100%;
    }

    .dg-hero__visual {
        min-height: 390px;
    }

    .dg-product-card {
        width: min(340px, 88%);
    }

    .dg-floating-badge--one {
        top: 35px;
        right: 0;
    }

    .dg-floating-badge--two {
        bottom: 25px;
        left: 0;
    }

    .dg-trust__grid,
    .dg-problem-grid,
    .dg-content-grid,
    .dg-bonus-grid {
        grid-template-columns: 1fr;
    }

    .dg-trust__grid > div {
        min-height: 82px;
        padding: 16px 10px;
        border-right: 0;
        border-bottom: 1px solid var(--dg-border);
        text-align: center;
    }

    .dg-section {
        padding: 65px 0;
    }

    .dg-card,
    .dg-content-grid article,
    .dg-bonus-grid article {
        padding: 23px;
    }

    .dg-offer-copy,
    .dg-offer-price {
        padding: 30px 23px;
    }

    .dg-offer-price > strong {
        font-size: 40px;
    }

    .dg-mobile-cta {
        position: fixed;
        z-index: 100;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        padding:
            11px
            max(14px, env(safe-area-inset-right))
            calc(11px + env(safe-area-inset-bottom))
            max(14px, env(safe-area-inset-left));
        border-top: 1px solid var(--dg-border);
        background: rgba(255, 255, 255, 0.96);
        box-shadow:
            0 -10px 30px rgba(45, 74, 102, 0.14);
        backdrop-filter: blur(12px);
    }

    .dg-mobile-cta div {
        display: flex;
        flex-direction: column;
    }

    .dg-mobile-cta small {
        color: var(--dg-muted);
        font-size: 11px;
    }

    .dg-mobile-cta strong {
        color: var(--dg-navy);
        font-size: 18px;
    }

    .dg-mobile-cta a {
        padding: 12px 18px;
        border-radius: 9px;
        background: var(--dg-green);
        color: var(--dg-white);
        font-size: 14px;
        font-weight: 900;
        text-decoration: none;
    }
}

/* ===== HERO REFINEMENT V0.1.1 ===== */

@media (min-width: 981px) {
    .dg-hero {
        padding-top: 52px;
        padding-bottom: 48px;
    }

    .dg-hero__grid {
        grid-template-columns:
            minmax(0, 1.05fr)
            minmax(360px, 0.95fr);
        gap: 52px;
    }

    .dg-hero h1 {
        max-width: 680px;
        margin-bottom: 16px;
        font-size: clamp(44px, 4.1vw, 60px);
        line-height: 1.03;
    }

    .dg-hero__lead {
        max-width: 650px;
        margin-bottom: 18px;
        font-size: 17px;
        line-height: 1.6;
    }

    .dg-check-list {
        gap: 7px;
        margin-bottom: 18px;
    }

    .dg-hero__price {
        margin-bottom: 14px;
    }

    .dg-price-current {
        font-size: 31px;
    }

    .dg-button {
        min-height: 53px;
    }

    .dg-microcopy {
        margin-top: 9px;
    }

    .dg-hero__visual {
        min-height: 455px;
    }

    .dg-product-card {
        width: min(375px, 88%);
        padding: 14px;
    }

    .dg-product-glow {
        width: 370px;
        height: 370px;
    }

    .dg-floating-badge--one {
        top: 52px;
        right: 5px;
    }

    .dg-floating-badge--two {
        bottom: 48px;
        left: 0;
    }
}

/* Sedikit lebih nyaman pada laptop pendek */
@media (min-width: 981px) and (max-height: 800px) {
    .dg-hero {
        padding-top: 38px;
        padding-bottom: 38px;
    }

    .dg-hero h1 {
        font-size: 51px;
    }

    .dg-hero__lead {
        font-size: 16px;
    }

    .dg-hero__visual {
        min-height: 410px;
    }

    .dg-product-card {
        width: 345px;
    }

    .dg-floating-badge--one {
        top: 34px;
    }

    .dg-floating-badge--two {
        bottom: 32px;
    }
}

/* ===== HERO REFINEMENT V0.1.2 ===== */

@media (min-width: 981px) {
    .dg-topbar__inner {
        min-height: 62px;
    }

    .dg-brand__mark {
        width: 34px;
        height: 34px;
    }

    .dg-hero {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .dg-hero__grid {
        grid-template-columns:
            minmax(0, 1.08fr)
            minmax(340px, 0.92fr);
        gap: 42px;
    }

    .dg-eyebrow {
        margin-bottom: 13px;
        padding: 6px 12px;
        font-size: 12px;
    }

    .dg-hero h1 {
        max-width: 660px;
        margin-bottom: 13px;
        font-size: clamp(43px, 3.65vw, 55px);
        line-height: 1.02;
    }

    .dg-hero__lead {
        max-width: 650px;
        margin-bottom: 13px;
        font-size: 15.5px;
        line-height: 1.55;
    }

    .dg-check-list {
        gap: 4px;
        margin-bottom: 12px;
    }

    .dg-check-list li {
        font-size: 15px;
        line-height: 1.45;
    }

    .dg-hero__price {
        gap: 10px;
        margin-bottom: 11px;
    }

    .dg-price-old {
        font-size: 15px;
    }

    .dg-price-current {
        font-size: 29px;
    }

    .dg-button {
        min-height: 49px;
        padding: 12px 24px;
        font-size: 15px;
    }

    .dg-microcopy {
        margin-top: 7px;
        font-size: 11.5px;
    }

    .dg-hero__visual {
        min-height: 390px;
    }

    .dg-product-card {
        width: 330px;
        padding: 12px;
    }

    .dg-product-glow {
        width: 325px;
        height: 325px;
    }

    .dg-floating-badge {
        padding: 8px 12px;
        font-size: 11px;
    }

    .dg-floating-badge--one {
        top: 32px;
        right: 0;
    }

    .dg-floating-badge--two {
        bottom: 28px;
        left: 0;
    }
}

@media (min-width: 981px) and (max-height: 760px) {
    .dg-hero {
        padding-top: 22px;
        padding-bottom: 24px;
    }

    .dg-hero h1 {
        font-size: 47px;
    }

    .dg-hero__lead {
        font-size: 14.5px;
    }

    .dg-hero__visual {
        min-height: 360px;
    }

    .dg-product-card {
        width: 305px;
    }
}

/* ===== MOBILE HERO POLISH V0.1.3 ===== */

@media (max-width: 700px) {
    /*
     * Sticky CTA sudah selalu terlihat,
     * sehingga tombol duplikat pada hero disembunyikan.
     */
    .dg-hero__copy > .dg-button--primary,
    .dg-hero__copy > .dg-microcopy {
        display: none;
    }

    .dg-hero {
        padding-top: 38px;
        padding-bottom: 20px;
    }

    .dg-hero h1 {
        margin-bottom: 16px;
        font-size: 38px;
        line-height: 1.04;
        letter-spacing: -0.035em;
    }

    .dg-hero__lead {
        margin-bottom: 20px;
        font-size: 15px;
        line-height: 1.58;
    }

    .dg-check-list {
        gap: 9px;
        margin-bottom: 18px;
    }

    .dg-check-list li {
        padding-left: 29px;
        font-size: 14px;
        line-height: 1.45;
    }

    .dg-hero__price {
        margin-bottom: 0;
    }

    .dg-price-current {
        font-size: 29px;
    }

    .dg-hero__visual {
        min-height: 390px;
        margin-top: 8px;
    }

    .dg-floating-badge {
        max-width: 145px;
        font-size: 10px;
        text-align: center;
    }
}

/* Ruang aman untuk sticky CTA mobile */
@media (max-width: 700px) {
    .dg-sales-page {
        padding-bottom: 82px;
    }
}

/* DIGIONDEL V2 FOOTER AND MOBILE BUY */
.dg-v2-footer {
    background: #172f46;
    color: #ffffff;
    padding: 32px 0;
}

.dg-v2-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.dg-v2-footer__brand {
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    text-decoration: none;
}

.dg-v2-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
}

.dg-v2-mobile-buy {
    display: none;
}

@media (max-width: 767px) {
    body.digiondel-sales-template {
        padding-bottom: 86px;
    }

    .dg-v2-footer {
        padding: 28px 0;
    }

    .dg-v2-footer__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .dg-v2-mobile-buy {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 99999;

        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;

        padding: 10px 14px;
        background: #ffffff;
        border-top: 1px solid #dbe3ea;
        box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.12);
    }

    .dg-v2-mobile-buy__price {
        display: flex;
        flex-direction: column;
        min-width: 92px;
    }

    .dg-v2-mobile-buy__price small {
        color: #64748b;
        font-size: 11px;
        line-height: 1.2;
    }

    .dg-v2-mobile-buy__price strong {
        color: #172f46;
        font-size: 17px;
        line-height: 1.25;
    }

    .dg-v2-mobile-buy__button {
        flex: 1;
        max-width: 260px;
        padding: 14px 12px;

        border-radius: 8px;
        background: #168a43;
        color: #ffffff;

        font-size: 14px;
        font-weight: 800;
        line-height: 1.2;
        text-align: center;
        text-decoration: none;
    }
}


/* DIGIONDEL V2 MOBILE FOOTER FIX */
@media (max-width: 767px) {
    .dg-footer {
        padding-bottom: 96px;
    }

    body.digiondel-sales-template {
        padding-bottom: 0;
    }
}
