:root {
    --ts-red: #cb1219;
    --ts-red-dark: #a90f15;
    --ts-red-soft: #fff3f3;
    --ts-dark: #202020;
    --ts-text: #3a3a3a;
    --ts-muted: #6f757b;
    --ts-border: #e6e6e6;
    --ts-bg: #f3f3f3;
    --ts-white: #ffffff;
    --ts-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ts-text);
    background: var(--ts-bg);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

.discount-page {
    padding: 42px 0 64px;
}

.discount-page .container {
    max-width: 1180px;
}

/* HERO */

.discount-hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
    padding: 36px 40px;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        #1d1d1d 0%,
        #2f2f2f 72%,
        #3b1517 100%
    );
    border-radius: 8px;
    box-shadow: var(--ts-shadow);
}

.discount-hero::after {
    content: "";
    position: absolute;
    top: -70px;
    right: -45px;
    width: 220px;
    height: 220px;
    border: 28px solid rgba(203, 18, 25, 0.28);
    border-radius: 50%;
}

.discount-hero > * {
    position: relative;
    z-index: 1;
}

.discount-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 12px;
    color: var(--ts-red);
    background: #ffffff;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.discount-hero h2 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.25;
}

.discount-hero p {
    max-width: 930px;
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
}

.discount-hero strong {
    color: #ffffff;
}

/* CARDS */

.discount-card {
    margin-bottom: 24px;
    padding: 28px;
    background: var(--ts-white);
    border: 1px solid var(--ts-border);
    border-radius: 8px;
    box-shadow: var(--ts-shadow);
}

.discount-card h2 {
    margin: 0 0 18px;
    padding-bottom: 12px;
    color: var(--ts-dark);
    border-bottom: 1px solid var(--ts-border);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.35;
}

.discount-card h2::after {
    content: "";
    display: block;
    width: 54px;
    height: 3px;
    margin-top: 11px;
    background: var(--ts-red);
    border-radius: 999px;
}

/* STEPS */

.discount-steps {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: discount-step;
}

.discount-steps li {
    position: relative;
    counter-increment: discount-step;
    margin-bottom: 12px;
    padding: 15px 18px 15px 58px;
    background: #fafafa;
    border: 1px solid var(--ts-border);
    border-radius: 8px;
}

.discount-steps li:last-child {
    margin-bottom: 0;
}

.discount-steps li::before {
    content: counter(discount-step);
    position: absolute;
    top: 13px;
    left: 15px;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    color: #ffffff;
    background: var(--ts-red);
    border-radius: 7px;
    font-size: 13px;
    font-weight: 800;
}

.discount-steps p {
    margin: 0;
}

/* BUTTONS */

.discount-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 26px;
}

.responsive-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    padding: 12px 26px;
    color: #ffffff;
    background-color: var(--ts-red);
    border: 2px solid var(--ts-red);
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.responsive-button:hover,
.responsive-button:focus {
    color: #ffffff;
    background-color: var(--ts-red-dark);
    border-color: var(--ts-red-dark);
    text-decoration: none;
    transform: translateY(-1px);
}

.responsive-button-secondary {
    color: var(--ts-red);
    background-color: #ffffff;
    border-color: var(--ts-red);
}

.responsive-button-secondary:hover,
.responsive-button-secondary:focus {
    color: #ffffff;
    background-color: var(--ts-red);
    border-color: var(--ts-red);
}

/* HIGHLIGHT */

.discount-highlight {
    display: flex;
    align-items: center;
    gap: 22px;
    background: var(--ts-red-soft);
    border-color: #f0c7c9;
    border-left: 5px solid var(--ts-red);
}

.discount-badge {
    display: grid;
    flex: 0 0 82px;
    place-items: center;
    width: 82px;
    height: 82px;
    color: #ffffff;
    background: var(--ts-red);
    border-radius: 50%;
    font-size: 27px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(203, 18, 25, 0.20);
}

.discount-highlight__content {
    min-width: 0;
}

.discount-highlight h2 {
    margin-bottom: 10px;
    padding-bottom: 0;
    border-bottom: 0;
}

.discount-highlight h2::after {
    display: none;
}

.discount-highlight p {
    margin: 0;
}

/* FINAL */

.discount-final {
    text-align: center;
}

.discount-final p {
    margin: 0;
    font-size: 18px;
}

/* TABLET / MOBILE */

@media (max-width: 767.98px) {

    body {
        font-size: 15px;
    }

    .discount-page {
        padding: 22px 0 40px;
    }

    .discount-hero {
        padding: 28px 22px;
    }

    .discount-hero h2 {
        font-size: 25px;
    }

    .discount-hero p {
        font-size: 15px;
    }

    .discount-card {
        padding: 20px 18px;
    }

    .discount-card h2 {
        font-size: 21px;
    }

    .discount-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        margin-top: 22px;
    }

    .responsive-button {
        width: 100%;
        padding: 11px 18px;
        font-size: 0.95rem;
    }

    .discount-highlight {
        align-items: flex-start;
    }

    .discount-badge {
        flex-basis: 64px;
        width: 64px;
        height: 64px;
        font-size: 22px;
    }
}

@media (max-width: 575.98px) {

    .discount-highlight {
        display: block;
    }

    .discount-badge {
        margin-bottom: 16px;
    }
}

/* PRINT */

@media print {

    body {
        color: #000000;
        background: #ffffff;
    }

    .discount-page {
        padding: 0;
    }

    .discount-hero,
    .discount-card {
        break-inside: avoid;
        box-shadow: none;
    }

    .discount-hero {
        color: #000000;
        background: #ffffff;
        border: 1px solid #cccccc;
    }

    .discount-hero h2,
    .discount-hero p,
    .discount-hero strong {
        color: #000000;
    }

    .discount-hero::after,
    .discount-eyebrow,
    .discount-buttons {
        display: none;
    }
}

/* ======================================================================================
стара версия на CSS за страница с отстъпка 5% за стрийминг на тонер касети без бутони
====================================================================================== */

/* :root {
    --ts-red: #cb1219;
    --ts-red-dark: #a90f15;
    --ts-red-soft: #fff3f3;
    --ts-dark: #202020;
    --ts-text: #3a3a3a;
    --ts-muted: #6f757b;
    --ts-border: #e6e6e6;
    --ts-bg: #f3f3f3;
    --ts-white: #ffffff;
    --ts-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ts-text);
    background: var(--ts-bg);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

.discount-page {
    padding: 42px 0 64px;
}

.discount-page .container {
    max-width: 1180px;
}

.discount-hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
    padding: 36px 40px;
    color: #ffffff;
    background: linear-gradient(135deg, #1d1d1d 0%, #2f2f2f 72%, #3b1517 100%);
    border-radius: 8px;
    box-shadow: var(--ts-shadow);
}

.discount-hero::after {
    content: "";
    position: absolute;
    top: -70px;
    right: -45px;
    width: 220px;
    height: 220px;
    border: 28px solid rgba(203, 18, 25, 0.28);
    border-radius: 50%;
}

.discount-hero > * {
    position: relative;
    z-index: 1;
}

.discount-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 12px;
    color: var(--ts-red);
    background: #ffffff;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.discount-hero h2 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.25;
}

.discount-hero p {
    max-width: 930px;
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
}

.discount-hero strong {
    color: #ffffff;
}

.discount-card {
    margin-bottom: 24px;
    padding: 28px;
    background: var(--ts-white);
    border: 1px solid var(--ts-border);
    border-radius: 8px;
    box-shadow: var(--ts-shadow);
}

.discount-card h2 {
    margin: 0 0 18px;
    padding-bottom: 12px;
    color: var(--ts-dark);
    border-bottom: 1px solid var(--ts-border);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.35;
}

.discount-card h2::after {
    content: "";
    display: block;
    width: 54px;
    height: 3px;
    margin-top: 11px;
    background: var(--ts-red);
    border-radius: 999px;
}

.discount-steps {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: discount-step;
}

.discount-steps li {
    position: relative;
    counter-increment: discount-step;
    margin-bottom: 12px;
    padding: 15px 18px 15px 58px;
    background: #fafafa;
    border: 1px solid var(--ts-border);
    border-radius: 8px;
}

.discount-steps li:last-child {
    margin-bottom: 0;
}

.discount-steps li::before {
    content: counter(discount-step);
    position: absolute;
    top: 13px;
    left: 15px;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    color: #ffffff;
    background: var(--ts-red);
    border-radius: 7px;
    font-size: 13px;
    font-weight: 800;
}

.discount-steps p {
    margin: 0;
}

.discount-highlight {
    display: flex;
    align-items: center;
    gap: 22px;
    background: var(--ts-red-soft);
    border-color: #f0c7c9;
    border-left: 5px solid var(--ts-red);
}

.discount-badge {
    display: grid;
    flex: 0 0 82px;
    place-items: center;
    width: 82px;
    height: 82px;
    color: #ffffff;
    background: var(--ts-red);
    border-radius: 50%;
    font-size: 27px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(203, 18, 25, 0.20);
}

.discount-highlight__content {
    min-width: 0;
}

.discount-highlight h2 {
    margin-bottom: 10px;
    padding-bottom: 0;
    border-bottom: 0;
}

.discount-highlight h2::after {
    display: none;
}

.discount-highlight p {
    margin: 0;
}

.discount-final {
    text-align: center;
}

.discount-final p {
    margin: 0;
    font-size: 18px;
}

@media (max-width: 767.98px) {
    body {
        font-size: 15px;
    }

    .discount-page {
        padding: 22px 0 40px;
    }

    .discount-hero {
        padding: 28px 22px;
    }

    .discount-hero h2 {
        font-size: 25px;
    }

    .discount-hero p {
        font-size: 15px;
    }

    .discount-card {
        padding: 20px 18px;
    }

    .discount-card h2 {
        font-size: 21px;
    }

    .discount-highlight {
        align-items: flex-start;
    }

    .discount-badge {
        flex-basis: 64px;
        width: 64px;
        height: 64px;
        font-size: 22px;
    }
}

@media (max-width: 575.98px) {
    .discount-highlight {
        display: block;
    }

    .discount-badge {
        margin-bottom: 16px;
    }
}

@media print {
    body {
        color: #000000;
        background: #ffffff;
    }

    .discount-page {
        padding: 0;
    }

    .discount-hero,
    .discount-card {
        break-inside: avoid;
        box-shadow: none;
    }

    .discount-hero {
        color: #000000;
        background: #ffffff;
        border: 1px solid #cccccc;
    }

    .discount-hero h2,
    .discount-hero p,
    .discount-hero strong {
        color: #000000;
    }

    .discount-hero::after,
    .discount-eyebrow {
        display: none;
    }
} */
